mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-18 20:23:27 +02:00
42 lines
752 B
TeX
42 lines
752 B
TeX
\documentclass[10pt,twocolumn,lettersize]{article}
|
|
|
|
\newlength{\zerosep}
|
|
[% if use_dnd_decorations %]
|
|
\usepackage[layout=true]{dnd}
|
|
\setlength{\zerosep}{0em}
|
|
[% else %]
|
|
\usepackage[margin=1.5cm]{geometry}
|
|
\setlength{\zerosep}{-1em}
|
|
[% endif %]
|
|
|
|
\title{Infusion Descriptions}
|
|
\author{[[ character.name ]] (Artificer [[ character.Artificer.level ]] level)}
|
|
\date{}
|
|
|
|
\begin{document}
|
|
|
|
\maketitle
|
|
|
|
[% for inf in character.infusions %]
|
|
|
|
\section*{[[ inf.name ]]}
|
|
|
|
[% if inf.prerequisite %]%
|
|
|
|
\noindent
|
|
\textit{Prerequisite: [[ inf.prerequisite ]]}%
|
|
|
|
[% endif %]%
|
|
[% if inf.item %]%
|
|
|
|
\noindent
|
|
\textit{Item: [[ inf.item ]]}%
|
|
|
|
[% endif %]%
|
|
|
|
[[ inf.__doc__ | rst_to_latex(top_heading_level=2) ]]
|
|
|
|
[% endfor %]
|
|
|
|
\end{document}
|