考慮一篇簡單的文章:
\documentclass{article}
\begin{document}
some text
\begin{appendix}
some text
\end{appendix}
\end{document}
有沒有辦法告訴 Latex ro 編譯文件,就好像沒有appendix
部分一樣,這不涉及註解掉它?我有一個非常大的附錄,一次又一次地註解掉它是相當麻煩的。
答案1
正如 Phelype Oleinik 所建議的,您可以使用該comment
軟體包。該包還允許添加新的評論環境,因此您可以appendix
通過添加來使環境成為評論
\excludecomment{appendix}
到序言。
\documentclass{article}
\usepackage{comment}
\excludecomment{appendix}
\begin{document}
some text
\begin{appendix}
some text
\end{appendix}
\end{document}
如果您使用附錄環境,這是一個很好的解決方案,但在大多數情況下\appendix
是命令,沒有環境。所以你會使用\appendix
而不是\begin{appendix}
並且不需要\end{appendix}
。
\appendix
然後,您可以透過定義為來歸檔類似的效果\end{document}
:LaTeX 在遇到 時將停止,\appendix
並且所有進一步的內容都將被忽略:
\documentclass{article}
\renewcommand\appendix{\end{document}}
\begin{document}
some text
\appendix
some text
\end{document}
答案2
就放
\end{document}
附錄之前。