감동, 마음이 움직이는 것

[LaTex] 여러수식을 하나의 숫자로 나타내기 + 숫자라벨 위치 조정하기 본문

Tips (Utility, Computer Language, and etc.)

[LaTex] 여러수식을 하나의 숫자로 나타내기 + 숫자라벨 위치 조정하기

Struggler J. 2017. 5. 30. 23:23


 각각 번호를 붙일때는 align모드를 사용하고 모든 수식에 하나의 번호만 쓰고 싶을 때는 aligned를 equation mode안에서 사용한다.

split \end{split}\raisetag{7\baselineskip} 과같이 쓰면 숫자 라벨의 위치를 조정할 수 있다.

아래는 latex file이다.


\documentclass[preprint, showpacs,showkeys]{revtex4-1}

\usepackage{amsmath}


\begin{document}

Align (shouldn't use the equation mode):

\begin{align}

\dot{x}=& x-x^2,  \\

\dot{y}=& y-y^2, \\

\dot{p_x}=& p_x - p_y, \\

\dot{p_y}=& p_y- p_x.

\end{align}


$\newline$

Aligned (use equation mode):

\begin{equation}

\begin{aligned}

\dot{x}=& x-x^2,  \\

\dot{y}=& y-y^2, \\

\dot{p_x}=& p_x - p_y, \\

\dot{p_y}=& p_y- p_x.

\end{aligned}

\end{equation}


$\newline$

Split with \emph{raisetag} option to adjust the position of numbering:

\begin{equation}

\begin{split}

\dot{x}=& x-x^2,  \\

\dot{y}=& y-y^2, \\

\dot{p_x}=& p_x - p_y, \\

\dot{p_y}=& p_y- p_x.

\end{split}\raisetag{7\baselineskip}

\end{equation}

\end{document}