
문서 작업이 거의 완료되었습니다. 이제 목차에 , acknowledgement` 및 기타 장을 toc
표시할 수 없다는 것을 알았습니다. abstract
내 콘텐츠에는 모든 장이 표시될 수 있습니다.
도움 좀 주세요?
main.tex
\usepackage{hyperref}
\usepackage{natbib}
\usepackage{xpatch}
\usepackage{url}
\usepackage{enumitem}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{caption}
\usepackage{subcaption}
\usepackage[a4paper, width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm]{geometry}
\usepackage{ragged2e}
\makeatletter
\newcommand\NoWarnNat{
\xpatchcmd{\NAT@citexnum}{\PackageWarning}{\let\PackageWarning\@gobbletwo\PackageWarning}{}{}
\xpatchcmd{\NAT@citex}{\PackageWarning}{\let\PackageWarning\@gobbletwo\PackageWarning}{}{}
\xpatchcmd{\nocite}{\PackageWarning}{\let\PackageWarning\@gobbletwo\PackageWarning}{}{}
}
\makeatother
\NoWarnNat
%\author{Python Buddha}
\date{02 March 2020}
\begin{document}
\input{titlepage}
\tableofcontents
\listoffigures
\chapter*{Hingabe}
\chapter*{Erklärung}
Declaration was originally a self-published electronic pamphlet by Michael Hardt and Antonio Negri on the Occupy movement that was released as a "Kindle single" in May 2012. The book explores the new democratic politics of organization, representation, and resistance that have been inaugurated by the movement. It has since been published in paper form by Argo-Navis.
\chapter*{Bestätigung}
n data networking, telecommunications, and computer buses, an acknowledgement is a signal that is passed between communicating processes, computers, or devices to signify acknowledgement, or receipt of message, as part of a communications protocol
\chapter*{Zusammenfassung}
\input{chapters/abstract_v2}
\chapter*{Weisheiten}
\input{chapters/introduction_v2}
\chapter{nehmen}
\input{chapters/chapter1_v1}
\chapter{Suchen}
\input{chapters/chapter2_v1}
\chapter{die Stille}
\input{chapters/chapter3_v1}
\chapter{Einzelstimmen}
\input{chapters/chapter4_v1}
\chapter{Abkündigungen}
\input{chapters/chapter5_v1}
\appendix
\chapter{Appendix Title}
\input{mainchapters/appendix}
\bibliographystyle{apa}
\bibliography{/Users/pythonbuddha/Documents/Thesis/References.bib}
\end{document}
```
답변1
이는 번호가 없는 장, 섹션 등이 목차에 직접 포함되지 않기 때문에 발생합니다. 그러나 명령을 사용하여 수동으로 포함할 수 있습니다 \addcontentsline
. 이 명령은 세 가지 인수를 사용합니다.
- 내용이 포함되어야 하는 테이블입니다.
toc
목차에 사용합니다 . - 콘텐츠 유형 예를 들어
chapter
,section
,subsection
등. - 테이블에 표시되어야 하는 콘텐츠의 이름입니다.
예를 들어,
\documentclass{book}
\begin{document}
\tableofcontents
\chapter{First chapter}
\chapter*{First unnumbered chapter}
\chapter*{Other unnumbered chapter}
\addcontentsline{toc}{chapter}{Other unnumbered chapter}
\chapter{Other chapter}
\end{document}