如何使用 revtex4-1 将节标题左对齐

如何使用 revtex4-1 将节标题左对齐

我正在使用revtex4-1,并且章节标题居中对齐。我该如何修改它?

答案1

使用rmp选项 ( \documentclass[rmp]{revtex4-1}) 调整 Rev. Mod. Phys. 的格式,其标题为左对齐。

这也适用于较旧的 REVTeX4。

这是一个例子。

\documentclass[rmp]{revtex4-1}
\usepackage{lipsum}

\begin{document}
\section{Section}
\subsection{Subsection}
\lipsum[1-3]
\section{Section}
\subsection{Subsection}
\lipsum[4-6]
\end{document}

在此处输入图片描述

答案2

您可以使用 titlesec 包来修改 revtex 样式中标题的显示方式(阅读 pack man),或者尝试以下方法之一

\begin{flushright}\section{Right align section}\end{flushright}  

\begin{flushleft}\section{Left align section}\end{flushleft} 

相关内容