问题
如果我有一个包含多个目录的文档,我可以限制添加目录部分的范围并重置目录吗?
情况
我有一份由 10 种语言组成的文档。(使用\input{en}, \input{de}, \input{da}
等)有 11 个目录:
- 语言目录(由每个组成
\input
(可能只需要一个包含每个钩子的自定义表\input
。我不知道我将如何实现这一点。 - 每种特定语言的本地目录(10 种语言)
示例代码
主 .tex 示例
\documentclass{article}
\usepackage{fontspec}
\begin{document}
\maketableofcontents % language directory (list of inputs with language names)
\input{en}
\input{de}
\input{da}
\end{document}
en.tex 的示例
\maketableofcontents % local toc
\section{apple}
%\somecommand % TOC scope limit
de.tex 的示例
\maketableofcontents % local toc
\section{apfel}
%\somecommand % TOC scope limit
da.tex 的示例
\maketableofcontents % local toc
\section{æble}
%\somecommand % TOC scope limit
答案1
这是一个使用 的解决方案etoc
。注意默认文件内容环境的限制
\begin{filecontents}{en.tex}
\localtableofcontents
\section{apple}
\end{filecontents}
\documentclass{article}
\usepackage{bookmark}
\usepackage{etoc}
% Use this version \newlang{<name>}{<file>}
% to use external files
\newcommand\newlangfile[2]{%
\newlang{#1}%
\input{#2}%
}
\newcommand\newlang[1]{%
\newpage\pdfbookmark{#1}{bkm#1}%
\renewcommand\contentsname{#1 Contents}%
\etoctoccontentsline{part}{#1}%
}
\begin{document}
\setcounter{tocdepth}{0}
\renewcommand\contentsname{Language directory}
\tableofcontents
\setcounter{tocdepth}{3}
%\newlang{english}
%\localtableofcontents
%\section{Apple}
% Or use
\newlangfile{english}{en.tex}
% if you prefer the second macro
\newlang{german}
\localtableofcontents
\section{Apfel}
\newlang{danish}
\localtableofcontents
\section{able}
\end{document}