감동, 마음이 움직이는 것
[LaTex] 여러수식을 하나의 숫자로 나타내기 + 숫자라벨 위치 조정하기 본문
[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}
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[Mathematica] Export text file without {} (0) | 2017.06.19 |
---|---|
[Color palette] (0) | 2017.06.15 |
[linux] du -h --max-depth=1 (0) | 2017.05.26 |
[C++] gaussian sampling (4) | 2017.05.18 |
[git] 커밋 취소하기 git reset HEAD~# (0) | 2017.04.02 |