我想要添加到章节中的目录是我论文的目录。我正在撰写的文档是论文的提案。因此,我想将目录添加到文档的某个章节中,该章节与文档本身完全独立。这可能吗?
答案1
从评论中的讨论来看,听起来你想做一个大纲带有章节编号。使用该enumitem
包,您可以定义自定义枚举样式。在下面的示例中,\arabic*.
定义了一个阿拉伯数字后跟句点的标签类型,并且“label*=”中的星号表示每个标签都应附加到上一级的标签。这将创建 1.、1.1、1.2、1.2.1 等编号格式,就像您在目录中看到的那样。
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{enumitem}
\begin{document}
\newlist{outline}{enumerate}{6}
\setlist[outline]{label*=\arabic*.}
\begin{outline}
\item Introduction chapter
\begin{outline}
\item The first section
\item The second section
\end{outline}
\item The second chapter
\end{outline}
\end{document}
(本周早些时候,我在自己的论文提案中这样做了!)
答案2
@mayhplumb 这几乎和我做的一样。在我的解决方案中,我试图让它看起来更像目录。唯一的问题是粗体章节的数字不够粗体。也许有人知道这个问题的解决方案。
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}[label={\arabic*}]
\item \textbf{Intro}
\begin{enumerate}[label*=.{\arabic*}]
\item First
\item Second
\end{enumerate}
\item \textbf{Main}
\begin{enumerate}[label*=.{\arabic*}]
\item Third
\item Fourth
\item Fifth
\end{enumerate}
\end{enumerate}
\end{document}