如何在 LaTeX 投影机中只对前面的部分进行着色而不对后面的部分进行着色?
就在现在,我有类似的东西
\documentclass{beamer}
\begin{document}
\section{Section1}
\section{Section2}
\tableofcontents[currentsection]
\section{Section3}
\frame{}
\end{document}
这会导致目录突出显示第 2 节,并遮盖其他部分。理想的行为是突出显示第 2 节和第 3 节,并仅遮盖第 1 节
答案1
这个答案给了我线索(感谢@AndrewUzzel)。分成两部分并使用两个目录解决了这个问题,但是需要调整间距。以下是最小示例:
\documentclass{beamer}
\begin{document}
\part{one}
\section{Section1}
\part{two}
\section{Section2}
\frame{
\tableofcontents[part=1,currentsection]\tableofcontents
}
\section{Section3}
\frame{}
\end{document}