방정식은 기본적으로 뒷면에 나열된 추천 템플릿의 중앙에 위치하지 않습니다.

방정식은 기본적으로 뒷면에 나열된 추천 템플릿의 중앙에 위치하지 않습니다.

나는 노력해 왔습니다.기초학술지 기사 템플릿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범인은 "flush-left 방정식"의 약자 인 문서 클래스 옵션입니다 . 방정식을 왼쪽 플러시로 조판하는 대신 중앙에 배치하려면 이 옵션을 제거하십시오.

관련 정보