
生成されたPDFファイルはSpringer LNCS テンプレートPDF アウトラインがありません。アウトラインを生成するにはどうすればいいですか?
最小限の例:
\documentclass{llncs}
\begin{document}
\section{A}
\section{B}
\end{document}
答え1
クラスはカウンターをllncs
明示的tocdepth
に に設定するため0
(つまり chapter
、 ToC とブックマークに表示される)、このカウンター値では下位レベルのエントリpart
を表示できません。bookmark
chapter
値を または に増やすtocdepth
と、2
が3
機能し、パッケージを追加すると、またはbookmark
までのブックマークが提供されます。subsection
subsubsection
\documentclass{llncs}
\usepackage{bookmark}
\setcounter{tocdepth}{3}
\begin{document}
%\tableofcontents
\section{A}
\clearpage
\section{B}
\end{document}