提问于:
浏览数:
2585
## 编译环境
操作系统
* [x ] Windows 7/8/10
* [ ] macOS
* [x ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [ x] TexLive `年份`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
如何把索引添加到目录
```latex
\documentclass{article}
\usepackage{makeidx}
\makeindex
\begin{document}
\tableofcontents
\clearpage
\section{one}
text\index{text}
\section{two}
work\index{work}
\printindex
\end{document}
```
1 回答
0
不知道是不是这个意思
```tex
\documentclass{article}
\usepackage{makeidx}
\usepackage{hyperref}
\makeindex
\begin{document}
\tableofcontents
\clearpage
\section{one}
text\index{text}
\section{two}
work\index{work}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Index}
\printindex
\end{document}
```
-
非常感谢! – 199 2020-05-15 13:17 回复
-
谢谢解答,在\phantomsection前加\cleardoublepage问题就解决了。谢谢您。 – zalois 2020-05-15 13:10 回复
-
谢谢你的解答,确实是可以把索引项添加到目录列表中,但是目录列表中索引页码显示多了1。 – 199 2020-05-15 13:01 回复
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。