如果您在文章中使用如下默认部分:
\section{something}
Lorem ipsum dolor sit amet
您会在目录中看到“1 项内容”。您的页面如下所示:
1 something
Lorem ipsum dolor sit amet
我只想有目录条目,而不是章节上方的标题。因为我只需要章节的引用。(它由几个表格组成,这些表格是自解释的,不需要标题/标题。)我尝试了 titlesec,但没有成功。
提前致谢,TJ
编辑: 我希望目录中有一个指向某个页面/部分的超链接,但该部分没有标题。答案:
\phantomsection
\addcontentsline{toc}{section}{<title>}
答案1
如果我明白你在问什么,你可以做类似的事情
\addcontentsline{toc}{section}{<title>}
或者
\addcontentsline{toc}{subsection}{<title>}
如果你想要一个超链接,请写下这行
\phantomsection
\addcontentsline{toc}{section}{<title>}
为此您需要使用该包hyperref
。
答案2
谢谢!
\phantomsection 成功了!
我已经找到了 \addcontentsline。但这并没有修复超链接。与 phantom 一起使用它可以工作。
<另外 7 个字符>