12345678910111213141516 |
- {%- 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 'ReasonForImplementation' in item and item.ReasonForImplementation != '' %}
- \paragraph{Reason for the implementation}\mbox{}\\
- {{ item.ReasonForImplementation }}
- {%- endif %}
- {%- if 'Fitcriterion' in item and item.Fitcriterion != '' %}
- \paragraph{Fitcriterion}\mbox{}\\
- {{ item.Fitcriterion }}
- {%- endif %}
|