在 django_tex 中编译两次
Compile twice in django_tex
我需要使用 django_tex
编译 .tex
文件两次,以便正确加载 table 内容。有没有办法告诉 django_tex
中的解释器两次 运行 编译器(我使用 pdflatex
)??
代码:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
\tableofcontents
\section{Introduction}
Introduction text.
\section{Second section}
Second section text.
\end{document}
django_tex
似乎支持 latexmk,它将(在许多其他有用的东西中,如 运行 参考书目工具)自动确定所需的 *tex 运行次数。
要使用它,您可以遵循 https://github.com/weinbusch/django-tex/pull/5#issuecomment-447030408 的建议并添加
LATEX_INTERPRETER='latexmk -pdf'
给你的 settings.py
.
我需要使用 django_tex
编译 .tex
文件两次,以便正确加载 table 内容。有没有办法告诉 django_tex
中的解释器两次 运行 编译器(我使用 pdflatex
)??
代码:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
\tableofcontents
\section{Introduction}
Introduction text.
\section{Second section}
Second section text.
\end{document}
django_tex
似乎支持 latexmk,它将(在许多其他有用的东西中,如 运行 参考书目工具)自动确定所需的 *tex 运行次数。
要使用它,您可以遵循 https://github.com/weinbusch/django-tex/pull/5#issuecomment-447030408 的建议并添加
LATEX_INTERPRETER='latexmk -pdf'
给你的 settings.py
.