Files
dungeon-sheets/dungeonsheets/forms/features_template.tex
T
2021-07-01 22:29:42 -05:00

26 lines
709 B
TeX

\pdfbookmark[0]{Features}{Features}
\section*{Features}
[% if use_dnd_decorations %]
[% for feat in character.features %]
\pdfbookmark[1]{[[ feat.name ]]}{Features - [[ feat.name ]]}
\DndFeatHeader{[[ feat.name ]]}[Source: [[ feat.source ]]]
[[ feat.__doc__|rst_to_latex ]]
[% endfor %]
[% else %]
[% for feat in character.features %]
\pdfbookmark[1]{[[ feat.name ]]}{Features - [[ feat.name ]]}
\subsection*{[[ feat.name ]]}
\noindent
\textbf{Source:} [[ feat.source ]] \\
[% if feat.needs_implementation %] %
\textbf{**Not included in stats on Character Sheet} %
[% endif %] %
[[ feat.__doc__|rst_to_latex ]]
[% endfor %]
[% endif %]