Python Library Unittest
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

system.tex 325B

123456789101112
  1. {%- import 'macros.tex' as macros %}
  2. \begin{tabu} to \linewidth {lX}
  3. \toprule
  4. {\bf System Information} & \\
  5. \midrule
  6. {%- for key in system_information %}
  7. {%- if key != "Description" %}
  8. {{macros.latex_filter(key)}} & {{macros.latex_filter(data.system_information[key])}} \\
  9. {%- endif %}
  10. {%- endfor %}
  11. \bottomrule
  12. \end{tabu}