方程式编号错误

方程式编号错误

有三个问题我想修复,它们可能相互关联,但不知道如何修复(已经尝试了几种方法):

1)强制将公式 3.7 的编号移至下方公式的右侧(上下箭头的下方,使其看起来像公式 3.8 的编号。2)避免压缩下方公式的大小 3)避免使用公式 3.8 的斜体字体

这是我的代码:

\documentclass[12pt,twoside]{book}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{amsmath}
\begin{document}

    \begin{equation}
     \frac{c_r(6\sigma+3)+4\sigma^2(\sigma-2P_c+1)-2P_c+1}{(2\sigma+1)^2} = 0 \\
         \center\Updownarrow \\
     P_c^* = \frac{4\sigma^2+4\sigma+1+4\sigma^3+6c_r\sigma+3c_r}{2(1+4\sigma)}\center
    \label{3.7}
    \end{equation}
    \vspace{-3cm}

 The original paper produces the following result:

    \begin{equation}
     P_c^* = \frac{4\sigma^2+4\sigma+1}{2(1+4\sigma)}
    \label{3.8}
    \end{equation}

\end{document}

在此处输入图片描述

答案1

您不能在 中换行equation。使用 gathered方程式内的环境。标签将被排版之间方程式行,除非您amsmath使用该tbtags选项加载。如果您希望标签出现在最后一行,您可以使用环境gather,并\notag在前两行:

\documentclass{article}
\usepackage{mathtools}
\numberwithin{equation}{section}

\begin{document}
\setcounter{section}{3}
\begin{equation}
  \begin{gathered}
    \frac{c_r(6\sigma+3)+4\sigma²(\sigma-2P_c+1)-2P_c+1}{(2\sigma+1)²} = 0 \\
    \Updownarrow \\
    P_c^* = \frac{4\sigma²+4\sigma+1+4\sigma³+6c_r\sigma+3c_r}{2(1+4σ)}
  \end{gathered}
\end{equation}

\begin{gather}
  \notag \frac{c_r(6\sigma+3)+4\sigma²(\sigma-2P_c+1)-2P_c+1}{(2\sigma+1)²} = 0 \\
  \notag \Updownarrow \\
  P_c^* = \frac{4\sigma²+4\sigma+1+4\sigma³+6c_r\sigma+3c_r}{2(1+4σ)}
  \label{3.7bis}
\end{gather}

\end{document} 

在此处输入图片描述

相关内容