내 논문 템플릿에서 헌신과 감사의 글은 장*{}이고 다른 장은 장{}입니다. 문제는 hyperref-bookmarks를 사용하여 발생합니다. 목차는 승인 섹션에 중첩되어 표시됩니다. 목차에는 그림 목록이, 그림 목록에는 표 목록이 중첩됩니다.
답변1
아마도 가장 우아한 솔루션은 아닐 수도 있습니다 ...
\documentclass{book}
\usepackage{lipsum}
\usepackage{hyperref}
\usepackage{bookmark}
\begin{document}
\bookmarksetup{depth=-1}
\cleardoublepage
\pdfbookmark[0]{Preface}{preface}
\chapter*{Preface}
\lipsum
\cleardoublepage
\pdfbookmark[0]{Acknowledgments}{acknowledgements}
\chapter*{Acknowledgements}
Thanks to everybody.
\cleardoublepage
\pdfbookmark[0]{Contents}{toc}
\tableofcontents
\bookmarksetup{depth=0} %or a number >0
\chapter{First chapter}
\lipsum
\end{document}
답변2
나는 당신의 문제
\addcontentsline{file}{sec_unit}{entry}
가 \chapter*{entry}
.
- 파일: 줄을 추가하려는 파일을 참조합니다. 귀하의 경우,
toc
,tableofcontents
- 초_단위: 단면 유형. 귀하의 경우에는 장입니다.
- 기입: 추가하려는 라인입니다. 장의 이름을 말해보세요.
예를 들어 그 사용법을 설명하겠습니다. 당신의 쳐다보는 챕터가 다음과 같이 불린다고 상상해보세요.소개. 따라서 이라는 chapter
줄을 에 추가한 다음 코드에서 다음을 사용하세요.tableofcontents
toc
\documentclass{report}
\begin{document}
\tableofcontents
\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction}
\chapter{First chapter}
\end{document}
도움이 되길 바랍니다!
건배