logo

LaTeX에서 긴 수식을 투칼럼에 걸쳐 쓸 수 있게 확장하는 법 📂논문작성

LaTeX에서 긴 수식을 투칼럼에 걸쳐 쓸 수 있게 확장하는 법

코드

$\TeX$ 문서에서 cuted 패키지는 그 이름 그대로 긴 수식을 잘라서(two cut) 양쪽 칼럼에 걸쳐 쓸 수 있게 해준다.

\begin{strip}, \end{strip}

\documentclass[twocolumn]{article}
\usepackage{amsmath}
\usepackage{lipsum}
\usepackage{cuted}

\begin{document}

\title{Two-column Document with Wide Equation}
\author{Daesick Ryu}
\maketitle

\section{Introduction}
\lipsum[1]

\section{Main Content}
\lipsum[2]

\begin{strip}
\begin{equation}
E = mc^2 + \frac{1}{2}mv^2 + \int_{0}^{\infty} \frac{\sin(x)}{x} \, dx + \sum_{n=1}^{\infty} \frac{1}{n^2} + u_{xx} + u u_{y} + x^{6} y + \tanh{xy} + \sum_{n \in \mathbf{Z}} \gamma(n)
\end{equation}
\end{strip}

\lipsum[3-4]

\end{document}

alt text

여기서 무의미한 문자열은 립숨 패키지를 사용했다.