Files
dungeon-sheets/dungeonsheets/forms/infusions_template.tex
T
Robert Kubosz 8b56d5c651 artificer is now fully usable
Now user can pick Artificer and it works as it should.
This commit adds spell slot calculations for multiclassing with
Artificer.
2020-05-12 14:51:33 +02:00

42 lines
729 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 ]]
[% endfor %]
\end{document}