注释块后的文本意外居中对齐

注释块后的文本意外居中对齐

我正在模板中起草ieeetran。文本中有一些定义和注释,它们被嵌入了,这是理所当然的。但奇怪的是,当我试图在最后一个注释之后继续其余文本时,文本居中对齐,即使没有\centering\center{}块!...

以下是该评论之后的具有挑战性的片段:

\documentclass[journal]{IEEEtran}

\usepackage{graphicx}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{float}
\usepackage{multicol}

\theoremstyle{plain}
\newtheorem{thm}{Theorem}[section]
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheorem*{cor}{Corollary}

\theoremstyle{definition}
\newtheorem{defn}{Definition}[section]
\newtheorem{conj}{Conjecture}[section]
\newtheorem{exmp}{Example}[section]

\theoremstyle{remark}
\newtheorem*{rem}{Remark}
\newtheorem*{note}{Note}

\begin{document}
\subsection{Background}
%%%%%%%%%%%%% Some text...

\bigskip

\begin{rem}
\centering
My remark body...
\end{rem}

\bigskip

The aforementioned definitions... %It has been aligned Centered!!!

\end{document}

您能否指点我将上述居中对齐重置为 Latex 文档的常见形式?!...

编辑:我完成了脚本......

提前致谢。

答案1

我自己也发现了这个案例...

\centering之后的命令的效果remark仍然应该被考虑在内。

将其替换为 后\begin{center}something\end{center},问题就消失了……

相关内容