내 작은 테스트 예는 다음과 같습니다
\documentclass[12pt]{book}
\usepackage{lipsum}
\usepackage{hyperref}
\hypersetup{
bookmarksnumbered=true,
bookmarksopen=true,
bookmarksdepth=2,
}
\setcounter{secnumdepth}{3} % ch=0,sec=1,subsec=2,subsubsec=3
\setcounter{tocdepth}{2}
\renewcommand{\chaptername}{} %% remove the word \chapter
\usepackage{titlesec}
\titleformat{\chapter}[hang]
{\LARGE\bfseries}{Lec~\arabic{chapter}~~}{0pt}{\LARGE\bfseries}
\titleformat{\section}
{\normalfont\Large\bfseries\filcenter}{\S~\thesection}{1em}{}
\titleformat{\subsection}{\normalfont\large\bfseries}{\Roman{subsection}.}{1em}{}
\titleformat{\subsubsection}[runin]{\normalfont\large\bfseries}
{\arabic{chapter}.\arabic{section}.\arabic{subsubsection}}{1em}{}
\usepackage{fancyhdr}
\pagestyle{fancy}
\begin{document}
\tableofcontents
\chapter{Water}
\lipsum[1]
\section{Ocean}
\subsection{River}
\lipsum[1]
\subsubsection{Pond}
\lipsum[1-3]
\subsubsection{Brook}
\lipsum[1-3]
\chapter{Whale}
\lipsum[1]
\section{Shark}
\subsection{Carp}
\lipsum[1]
\subsubsection{Shrimp}
\lipsum[1-3]
\subsubsection{Crab}
\lipsum[1-3]
\end{document}
보시다시피 Ch, Sec 및 Subsec의 번호를 다음과 같이 지정하고 싶습니다.
Lec 1
SS 1.1
I
II
III
...
SS 1.2
I
II
III
...
...
Lec 2
SS 2.1
I
II
III
...
SS 2.2
I
II
III
...
...
...
그것들은 본문에 정확하게 제시되어 있습니다. 그러나 Bookmark, TOC 및 fancy-Header는 해당 번호를 자동으로 업데이트하지 않으며 단순히 다음과 같은 내용을 표시합니다.
1
1.1
1.1.1
2
2.1
2.1.1
이러한 문제를 어떻게 해결할 수 있습니까?