Como exibir um nome de seção curto no índice?
\documentclass{beamer}
\begin{document}
\begin{frame}
\tableofcontents
\end{frame}
\section[short title]{long title}
\frame{}
\end{document}
De acordo comhttps://tex.stackexchange.com/a/200141/36296isso deveria funcionar teoricamente ou estou lendo a resposta errada?
Responder1
Atualmente,beamer
insere as entradas ToC e Navegação para corresponder ao comando de corte obrigatório. Você terá que corrigir cada unidade seccional separadamente para "consertar" isso:
\documentclass{beamer}
\usepackage{etoolbox}
\makeatletter
% Insert [short title] for \section in ToC
\patchcmd{\beamer@section}{{#2}{\the\c@page}}{{#1}{\the\c@page}}{}{}
% Insert [short title] for \section in Navigation
\patchcmd{\beamer@section}{{\the\c@section}{\secname}}{{\the\c@section}{#1}}{}{}
% Insert [short title] for \subsection in ToC
\patchcmd{\beamer@subsection}{{#2}{\the\c@page}}{{#1}{\the\c@page}}{}{}
% Insert [short title] for \subsection in Navigation
\patchcmd{\beamer@subsection}{{\the\c@subsection}{#2}}{{\the\c@subsection}{#1}}{}{}
\makeatother
\begin{document}
\begin{frame}
\tableofcontents
\end{frame}
\section[short section]{long section}
\subsection[short subsection]{long subsection}
\frame{}
\end{document}
\beamer@section[#1]{#2}
e \beamer@subsection[#1]{#2}
agem de forma muito semelhante ao regular \section[#1]{#2}
e \subsection[#1]{#2}
, gravando #2
nos arquivos .toc
e .nav
auxiliares. O acima \patchcmd{<cmd>}{<search>}{<replace>}{<success>}{<failure>}
troca o obrigatório pelo opcional ao escrever nos auxiliares.