Beamer 在目录中以星号标记部分格式

Beamer 在目录中以星号标记部分格式

我正在撰写一份beamer演示文稿,我希望其结构(和.toc)如下:

简介
1. 第 1 部分
2. 第 2 部分
3. 第 3 部分
结论

因此,我使用了带星号版本的部分命令(\section*{Intro})并将\addcontentsline{toc}{section}{Intro}其添加到toc

问题是:简介标题和第 1、2... 部分标题的格式.toc不同。

有什么办法可以修复它吗?

以下是 MWE:

\documentclass{beamer}
\usetheme{Copenhagen}

\begin{document}

\begin{frame}
\frametitle{TOC}
\tableofcontents
\end{frame}

\section*{Intro}
\addcontentsline{toc}{section}{Intro}
\begin{frame}
\end{frame}

\section{Section 1}
\begin{frame}
\end{frame}

\section{Section 2}
\begin{frame}
\end{frame}

\section{Section 3}
\begin{frame}
\end{frame}

\section*{Conclusion}
\addcontentsline{toc}{section}{Conclusion}
\begin{frame}
\end{frame}

\end{document}

答案1

肮脏的黑客和人造的目录条目不提供以下部分的链接:

\documentclass{beamer}
\usetheme{Copenhagen}

\begin{document}

\begin{frame}
\frametitle{TOC}
\tableofcontents
\end{frame}

\section*{Intro}
\addcontentsline{toc}{section}{\vskip1.5em\hskip1.2em\protect\usebeamercolor[fg]{structure}Intro}
\begin{frame}
\end{frame}

\section{Section 1}
\begin{frame}
\end{frame}

\section{Section 2}
\begin{frame}
\end{frame}

\section{Section 3}
\begin{frame}
\end{frame}

\section*{Conclusion}
\addcontentsline{toc}{section}{\vskip1.5em\hskip1.2em\protect\usebeamercolor[fg]{structure}Conclusion}
\begin{frame}
\end{frame}

\end{document}

在此处输入图片描述

答案2

我在这篇文章中找到了答案。

Beamer:不要列举目录中的第一部分

仍存在一个问题:使用此解决方案时,“未编号”部分前面仍然有一个空的方块/球(取决于您的选择)。

我不太熟悉答案中公开的代码;有没有办法去除这个方形/球形标记?

相关内容