📜  自定义 pylatex 命令 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:54.372000             🧑  作者: Mango

代码示例1
# You don't necessarily need to use the functions and classes that PyLaTeX provides. 
# You can add any arbitrary text or LaTeX code to your document as strings using the NoEscape wrapper

# Eg
doc.append(NoEscape(r'\begin{tabular}{ll}'))
doc.append(NoEscape(r'\Entry{abc}{123}\\'))
doc.append(NoEscape(r'\end{tabular}'))