我有一章包含章节和图表,但现在我需要将同一章翻译成西班牙语。我在同一个 .tex 中所做的是复制内容并粘贴,即
\chapter{Conclusions}
...
\section{...}
...
\begin{figure}
\centering
\includegraphics{...}
\caption{...}
\end{figure}
...
\addtocounter{chapter}{-1}
\chapter{Conclusiones}
...
\section{...}
...
\begin{figure}
\centering
\includegraphics{...}
\addtocounter{figure}{-1}
\caption{...}
\end{figure}
...
我设置\addtocounter{}{}
了相同的编号。但是,翻译的第二部分显示在目录 (ToC) 中。我想将其从目录中删除而不使用,例如,\chapter*{}
或者\caption*{}
因为我需要显示与以前相同的编号。有什么想法吗?
提前致谢。
答案1
命令
\addtocontents{toc}{\protect\setcounter{tocdepth}{-1}}
在文档的适当位置处,将停止在目录中列出章节。同样,对于图形{lof}
,而不是{toc}
和表格,{lot}
而不是{toc}
。