乳胶章节未包含在目录中

乳胶章节未包含在目录中

我已经创建了章节

\chapter{"one"}

我希望这在我的目录中可见,但当我这样做时\tableofcontents。我看不到它们。有人能告诉我如何在目录中包含章节吗?我在 ubuntu 12.04 中使用 latex。例如,如果\chapter{"one"}在第 20 页并且是第三章。那么在目录中我应该看到3. One 20类似这样的内容。

编辑版本

这是一个小示例 latex 脚本。我曾使用过acm模板

\documentclass[prodmode,acmtap]{acmlarge}

\acmArticle{n}

\usepackage[ruled]{algorithm2e}
\SetAlFnt{\algofont}
\SetAlCapFnt{\algofont}
\SetAlCapNameFnt{\algofont}
\SetAlCapHSkip{0pt}
\IncMargin{-\parindent}
\renewcommand{\algorithmcfname}{ALGORITHM}

% Title portion
\title{Sample text}
\author{Sadiksha}

\begin{document}

\maketitle
\pagebreak

\tableofcontents
\pagebreak

\chapter{ABC}
this is a content

\end{document}

我可以看到标题页,ABC里面没有任何内容的目录,只有Contents

模板的链接是:http://www.acm.org/publications/latex_style/acm-large-v1-3.zip

答案1

支持的最大部门单位acmlarge 文档类\section。由于某种原因,\chapter被定义为\relax,因此使用它不会导致错误,但它也不会创建章节。

相关内容