How to make 'appendix' appear in toc in Latex?

前端 未结 5 1231
别那么骄傲
别那么骄傲 2021-02-07 03:26

How to make word \'appendix\' appear in the table of contents? Right now toc looks like this:

1 ......
2 ......
.
.
A .....

5条回答
  •  鱼传尺愫
    2021-02-07 04:11

    For my thesis, I did the following:

    \appendix
    \addcontentsline{toc}{section}{Appendix~\ref{app:scripts}: Training Scripts}
    \section*{Sample Training Scripts}
    \label{app:scripts}
    Blah blah appendix content blah blah blah.
    

    Explanation: I manually added a line to the TOC so I would have "Appendix X:..." show up in my TOC. Then I excluded the actual section command from the TOC by using an asterisk.

提交回复
热议问题