mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-21 21:33:28 +02:00
40 lines
737 B
TeX
40 lines
737 B
TeX
\documentclass[twocolumn,lettersize]{article}
|
|
|
|
%% \usepackage{fullpage}
|
|
\usepackage[margin=1.5cm]{geometry}
|
|
\usepackage[dvipsnames]{color}
|
|
\definecolor{mygrey}{gray}{0.7}
|
|
|
|
\title{Features and Subclass}
|
|
\author{[[ character.name ]]}
|
|
\date{}
|
|
|
|
\begin{document}
|
|
|
|
\maketitle
|
|
|
|
[% for sc in character.subclasses if sc not in ['', None, 'None', 'none']%]
|
|
|
|
\section*{[[ sc.name ]]}
|
|
|
|
[[ sc.__doc__|rst_to_latex ]]
|
|
|
|
[% endfor %]
|
|
|
|
[% for feat in character.features %]
|
|
|
|
\section*{[[ 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 %]
|
|
|
|
\end{document}
|