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}