我试图在“目录”下添加一行,上面写着“章节”,并隐藏与该行相关的页码(另外还有图片列表)。也就是说,页面应该如下所示:
内容
章节
第一章...1
第二章....2
图片列表
数字
图 x....1
图 y....2
我尝试了以下方法。我意识到使用部分格式化将默认提供页码。有没有办法单独关闭它们?或者,有没有办法让目录跨越两行,第一行是目录,第二行是章节?或者有没有办法将内容添加到目录中并指定内联格式?
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\begin{document}
This is a test...
\tableofcontents{}
\addcontentsline{toc}{section}{CHAPTER}
\listoffigures
\addcontentsline{lof}{section}{FIGURE}
and this is after the table of contents
\section{This is a section}
One two three
\section{this is the second section}
\end{document}
答案1
您走在正确的轨道上,需要按照下面提供的方式addcontentsline
进行修改。addtocontents
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\usepackage{lipsum}
\begin{document}
\tableofcontents{}
\addtocontents{toc}{\contentsline{section}{CHAPTER}{}}
\listoffigures
\addtocontents{lof}{\contentsline{section}{FIGURE}{}}
\section{First Section}
\lipsum
\begin{figure}
\caption{First Figure}
\end{figure}
\lipsum
\section{Second Section}
\lipsum
\begin{figure}
\caption{Second Figure}
\end{figure}
\lipsum
\end{document}