17 lines
544 B
TeX
17 lines
544 B
TeX
{%- import 'macros.tex' as macros %}
|
|
{{ '\\%s{%s}' % (sectype, macros.latex_filter(item.heading))}}
|
|
{{ '\\label{%s%s}' % (labeltype, item.system_uid)}}
|
|
{%- if 'description' in item and item.description != '' %}
|
|
\paragraph{Description}\mbox{}\\
|
|
{{ item.description }}
|
|
{%- endif %}
|
|
{%- if 'reason' in item and item.reason != '' %}
|
|
\paragraph{Reason for the implementation}\mbox{}\\
|
|
{{ item.reason }}
|
|
{%- endif %}
|
|
{%- if 'fitcriterion' in item and item.fitcriterion != '' %}
|
|
\paragraph{Fitcriterion}\mbox{}\\
|
|
{{ item.fitcriterion }}
|
|
{%- endif %}
|
|
|