我喜欢以下目录的制作方式:
生成这样的表的方法是什么?
好的,我设法做到了以下几点:
\documentclass[11pt]{article}
\usepackage[left=0.5cm, right=1.1cm, top=0.1cm, bottom=-1cm]{geometry}
\begin{document}
\tableofcontents
\newpage
\begin{center}
\section*{text\\text\\text}
\end{center}
\end{document}
通过放置,\section*{}
我可以随意编辑标题部分,但是它不会显示在内容上方。我如何使用其他名称来显示它?
答案1
这重现了 OP 请求的 ToC,但由于缺乏信息,一些特征只能猜测。
\(sub)section*
正如 OP 所指出的,这不是正确的功能。问题和解决方案应该theorem
像环境一样,提供自己的计数器和生成条目的方式。(在之前的一个同时被删除的问题中,OP“坚持”使用subsection
和删除(小节)数字)- 这解决方案列表在我看来,应该放在单独的页面上,而不仅仅是在目录中。
如果有更多的背景信息,那将是一个更好的解决方案......
\documentclass{article}
\usepackage{tocbibind}
\usepackage{pgffor}
\usepackage{fmtcount}
\usepackage{blindtext}
\usepackage{tocloft}
\newcommand{\listofproblemsname}{List of Problems}
\newlistof[section]{myproblems}{prb}{\listofproblemsname}
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\addcontentsline{toc}{section}{\listofproblemsname}
\listofmyproblems
\section*{My Problems}
\foreach \x in {1,...,25} {%
\clearpage
\addcontentsline{prb}{subsection}{Problem \protect\Numberstringnum{\x}}
\subsection*{Problem \protect\Numberstringnum{\x}} % Subsection with heading but no entry to the ToC
\blindtext[\x]
}
% Now the solutions
\addtocontents{toc}{\protect{\scshape Solutions to the problems in the various competitions}}
\section*{My Solutions}
\foreach \x in {1,...,25} {%
\clearpage
\addcontentsline{toc}{subsection}{\protect\Numberstringnum{\x}}
\subsection*{\protect\Numberstringnum{\x}} % Subsection with heading but no entry to the ToC
\blindtext[\x]
}
\addtocontents{toc}{\protect\clearpage} % Clear the page after the list of solutions
\end{document}