우리 대학에서는 부록의 수치가 TOC에서 별도로 언급되기를 원합니다. 이와 같이:
부록 표 목록.................................................................. ................................ix
부록 그림 목록.................................................................. .............................x
이 모든 것이 목차에 나와 있습니다. 어떻게 해야 합니까?
부록의 그림과 표 목록을 별도로 인쇄하고 싶습니다.
다음은 다음을 사용한 최소 작업 예입니다.템플릿:
\documentclass[letterpaper,12pt,times,authoryear,print,index,oneside,custombib]{Classes/PhDThesisPSnPDF}
\ifdefineAbstract
\pagestyle{empty}
\includeonly{Declaration/declaration, Abstract/abstract}
\fi
\ifdefineChapter
\includeonly{Chapter3/chapter3}
\fi
\begin{document} \frontmatter
\begin{titlepage} \maketitle \end{titlepage}
\include{Abstract/abstract}
\tableofcontents
\listoffigures
\listoftables
%\printnomenclature
\include{Chapter1/chapter1} \include{Chapter2/chapter2}
\include{Chapter3/chapter3} %\include{Chapter4/chapter6}
%\include{Chapter5/chapter5} %\include{Chapter6/chapter6}
%\include{Chapter7/chapter7}
\begin{appendices} % Using appendices environment for more
functunality
\include{Appendix1/appendix1} \include{Appendix2/appendix2}
\listoffigures
\end{appendices}
% *************************************** Index
******************************** \printthesisindex % If index is present
\end{document}
편집하다
그림 목록을 어떻게 분할할 수 있나요? 부록에 나오는 모든 그림을 별도의 그림 목록에 포함하고 싶습니다.
\documentclass{book}
\usepackage{capt-of}
\begin{document}
\tableofcontents
\listoffigures% List only the entries of the main part
\captionof{figure}{Wombat}
\captionof{figure}{Capybara}
\captionof{figure}{Duck}
\appendix
\listoffigures% List of only the entries of the appendix
\captionof{figure}{Ant}
\captionof{figure}{Biever}
\captionof{figure}{Cockroach}
\end{document}
답변1
이 솔루션은 별도의 \listofappendixfigures
및 \listofappendixtables
명령과 관련 항목을 ToC
.
패치가 필요 \tf@lof
하지 않도록 부록 뒤의 등 파일 핸들을 변경합니다 .\caption
나중에 파일 핸들이 복원되지 않는다는 점에 유의하세요! \caption
또는를 사용하면 \captionof
새 파일 .apt
과 .apf
ToC 파일에 계속 기록됩니다.
나는 MWE
Johannes_B가 추가한 것을 사용했습니다.
코드는 이 질문에 대한 내 답변에서 일부 조정된 행을 사용합니다.별도의 부록 목록 인쇄.
\documentclass{book}
\usepackage{capt-of}
\usepackage{tocloft}
\usepackage{xpatch}
\usepackage{hyperref}
% Just in case we're not using hyperref
\providecommand{\phantomsection}{}
% Generate the separate list of commands for appendix figures and tables
\newcommand{\listofappendixfiguresname}{List of Figures in Appendix}
\newlistof{appendixfigures}{apf}{\listofappendixfiguresname}
\newcommand{\listofappendixtablesname}{List of Tables in Appendix}
\newlistof{appendixtables}{apt}{\listofappendixtablesname}
\renewcommand{\cftafterapftitle}{\phantomsection\addcontentsline{toc}{chapter}{\listofappendixfiguresname}}
\renewcommand{\cftafterapttitle}{\phantomsection\addcontentsline{toc}{chapter}{\listofappendixtablesname}}
\xpretocmd{\listofappendixfigures}{\clearpage}{}{}
\xpretocmd{\listofappendixtables}{\clearpage}{}{}
\makeatletter
\xapptocmd{\appendix}{%
\write\@auxout{%
\string\let\string\latex@tf@lof\string\tf@lof% Store the original `\tf@lof` file handle
\string\let\string\tf@lof\string\tf@apf%
\string\let\string\latex@tf@lof\string\tf@lot% Store the original `\tf@lot` file handle
\string\let\string\tf@lot\string\tf@apt%
}%
}{}{}
\makeatother
\begin{document}
\tableofcontents
\listoffigures% List only the entries of the main part
\captionof{figure}{Wombat}
\captionof{figure}{Capybara}
\captionof{figure}{Duck}
\appendix
\listofappendixfigures% List of only the entries of the appendix
\listofappendixtables% List of only the entries of the appendix
\captionof{figure}{Ant}
\captionof{figure}{Beever}
\captionof{figure}{Cockroach}
\clearpage
\captionof{table}{Methods how to learn \LaTeXe\ and providing a MWE!}
\end{document}