我正在 Lyx 中撰写论文,出于某种原因(可能是样式表的原因),我无法打印完整的论文。它给出了奇怪的错误。但是,所有章节都可以轻松转换为 PDF。
是否有一个命令可以只打印几个选定的章节,但不影响引用?然后我可以重新开始页码编号并快速解决问题。
请指教。
答案1
使用\includeonly
\documentclass{book}
%\includeonly{Introduction}% uncomment this line if you want to include chapter "Introduction" only without affecting the referencing.
\begin{document}
\include{Introduction}
\include{Summary}
\end{document}