最近我已将编码更新为Latex 中的双语词典(链接中发布的最小示例)作为展示使用 TeX 和朋友制作的精美排版通过添加不规则名词、形容词、代词和动词的变格和动词变位表。通过这些代码更改,我丢失了使用 dictstyle 格式化的最后一页的格式,即 fancyhead 和顶部规则以及拆分两列页面的规则。即使文件没有表格,最后一页的格式也会丢失。
答案1
以下是您在“展示”主题中放入的删节版的最后几行:
\begin{document}
\twocolumn
\pagestyle{dictstyle}
% the letters in alphabetical order
\input{letters/dict_letter_a.tex}
\input{letters/dict_letter_aa.tex}
% list of all letters, each letter in separate .tex file, example of letter file, see below.
% print the index of authors of photographs
\thispagestyle{empty}
\printindex
\thispagestyle{empty}
\end{document}
有什么问题?该\thispagestyle
命令适用于当前的页,恰好是字典部分的最后一页。你可能想要
\begin{document}
\twocolumn
\pagestyle{dictstyle}
% the letters in alphabetical order
\input{letters/dict_letter_a.tex}
\input{letters/dict_letter_aa.tex}
% list of all letters, each letter in separate .tex file, example of letter file, see below.
% print the index of authors of photographs
\clearpage % output the last page
\pagestyle{empty} % all pages with style "empty" from now on
\printindex
\end{document}