我一直在努力基本学术期刊文章模板由 Overleaf 推荐。
尽管$$ a + b = c$$
是中心化的,但是下列方程不是中心化的:
\[ a + b = c \]
\begin{equation*}
a + b = c
\end{equation*}
\begin{equation}
a + b = c
\end{equation}
我如何修改模板以使所有这些方程式默认居中?
这是我的项目,任何有链接的人都可以编辑。项目链接中的原始代码如下。
\documentclass[fleqn,10pt,lineno]{olplainarticle}
\title{Example Article Title}
\author[1]{First Author}
\affil[1]{Address of first author}
\keywords{Keyword1, Keyword2, Keyword3}
\begin{abstract}
abstract
\end{abstract}
\begin{document}
\flushbottom
\maketitle
\thispagestyle{empty}
\section*{Mathematics}
$$ a + b = c $$
\[ a + b = c \]
\begin{equation*}
a + b = c
\end{equation*}
\begin{equation}
a + b = c
\end{equation}
\end{document}
答案1
您的完整文档以以下行开始:
\documentclass[fleqn,10pt,lineno]{olplainarticle}
罪魁祸首是文档类选项fleqn
——“左对齐方程式”的缩写。如果您希望方程式居中而不是排版为左对齐,请删除此选项。