在 \documentclass[11pt,twoside,fleqn]{book} 中居中对齐方程

在 \documentclass[11pt,twoside,fleqn]{book} 中居中对齐方程

我使用\documentclass[11pt,twoside,fleqn]{book}‎‎ 将公式设置为左侧,但在某些情况下,我想将公式置于中心位置,例如原始类型不带[fleqn]。我该使用什么命令?%%%%%%%%%%%%%%%

\documentclass[11pt,twoside,fleqn]{book}‎‎
‎‎\usepackage{amsmath,amsfonts,amssymb,amsthm}‎
\begin{document}
‎\begin{align*}‎‎%This is in left 
‎y=f(x)
‎\end{align*}‎‎
\begin{align*}‎‎%This should be at the center
\centering
‎y=g(x)
‎\end{align*}‎
\end{document}

答案1

您可以使用包 nccmath 和环境 ceqn 来获取中心方程。

\begin{ceqn}\begin{align*} ‎y=g(x) ‎\end{align*}‎\end{ceqn}

相关内容