我希望能够确保在文件(.tex)中看不到整个前导码,从某种意义上说,它存在并且确实有效,但却看不到,这样它就可以保留后者保留的所有代码行。例如:
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{sidenotes}
\usepackage[italian]{babel}
\usepackage{url}
我希望所有这些包都能正常工作,但我只在编译文件中看到:
\hiddenpart{in this there is everything that is hidden there, which must not be seen but obviously}
\begin{document}
\end{document}
答案1
一个选择就是简单地使用允许隐藏文档部分内容的编辑器。
否则,我会简单地将序言外包给一个单独的文档preamble.tex
,然后使用以下命令将其加载到主文档中\input{preamble}
:
\input{preamble}
\begin{document}
...
\end{document}