lemma.tex
766 Bytes
{% load tex_tags %}
{\sf
\setcounter{section}{ {{loop_counter}} }
\section{\textsf{ {{lemma.entry}} }}
\vspace{20pt}
{% for frame in frames %}
{% frame_tex frame lemma forloop.counter %}
{% endfor %}
{% if lemma_examples %}
\textbf{ Przykłady niedowiązane: }
\begin{enumerate}[1.]
{% for example in lemma_examples %}
\item {{ example.sentence }}
\begin{flushright}
\textit{ {{ example.source.source }} }
\end{flushright}
{% if forloop.last %}
{% else %}
\vspace{5pt}
{% endif %}
{% if example.comment %}
\begin{flushleft} \begin{sloppypar} {{example.comment}} \end{sloppypar} \end{flushleft}
{% endif %}
{% endfor %}
\end{enumerate}
{% endif %}
\pagebreak
}