TexMaker 中的这个错误是什么意思?

TexMaker 中的这个错误是什么意思?

我是 Texmaker 的新手,之前只用 overleaf 打字。在我尝试快速构建的项目中,Tex maker 显示此错误-

{! TeX capacity exceeded, sorry [parameter stack size=10000].\@fileswithoptions #1->\@ifnextchar [{\@fileswith@ptions #1}{\@fileswith@pti... \usepackage{}

虽然我的文件主体就像

\documentclass[article, 12 pt]
\usepackage{epsfig,epic,eepic,units}
\usepackage{url}
\usepackage{longtable}
\usepackage{mathrsfs}
\usepackage{multirow}
\usepackage{bigstrut}
\usepackage{amssymb}
\usepackage{centernot}
\usepackage{graphicx}
\usepackage{floatrow}
\usepackage{braket}
\begin{document}

\section{Prelimanries}
We define a Group ring, RG, where \(R\) be any ring and \(G\) be any group, to be the set of all formal linear combinations of the form
\[\alpha= \sum_{g\in G} a_gg\]
where \(a_g\in R\) and \(a_g=0\) almost everywhere.\\
\((RG,+,.) \) is a ring under + and . defined as follows-
\[\alpha+\beta = \sum_{g \in G} a_gg +\sum_{g\in G} b_gg = \sum_{g in G} (a_g + b_g)g\]



---- More text

\end{document}

问题是什么?

答案1

指定文档类的正确语法是

\documentclass[<options>]{<name of class>}

这也是\documentclass[article,12 pt]错误的。正确的语法是

\documentclass[12pt]{article}

如果你尝试编译如下文档

\documentclass[article, 12 pt]
\usepackage{graphicx}
\begin{document}
Hello world.
\end{document}

在 Overleaf 上你会看到这样的消息:

在此处输入图片描述

使用\chapter

正如任何基本的 LaTeX 介绍都会(或至少应该)告诉你的那样,该类article不定义\chapter分段级别,因为它适用于较短的文档,其中章节“太多”。如果你想使用\chapter,请更改为reportbook类似的类。这包括例如标准类reportbook、KOMA 类scrreprtscrbook,以及memoir。因此,你需要类似

\documentclass[12pt]{report}

相关内容