logo

LaTeX에서 begin...end 구문을 하나의 함수처럼 사용하는 새 커맨드 만드는 방법 📂논문작성

LaTeX에서 begin...end 구문을 하나의 함수처럼 사용하는 새 커맨드 만드는 방법

코드

텍 코드를 작성할 때 \begin{}...\end{} 구문을 열고 닫는 것은 여간 귀찮은 일이 아니다.

\documentclass{article}

\usepackage{amsthm}

\newtheorem*{theorem*}{Theorem}

\begin{document}

\begin{theorem*}
    Let $f$ and $g$ be continuous functions on a metric space $X$. Then $f + g$, $fg$, and $f/g$ are continuous on $X$. 
\end{theorem*}

\end{document}

이때 새로운 커맨드로 \newcommand{\thm}[1]{\begin{theorem*}#1\end{theorem*}}를 추가하면 편리하게 사용할 수 있다.

\documentclass{article}

\usepackage{amsthm}

\newtheorem*{theorem*}{Theorem}
\newcommand{\thm}[1]{\begin{theorem*}#1\end{theorem*}}

\begin{document}

\thm{
    Let $f$ and $g$ be continuous functions on a metric space $X$. Then $f + g$, $fg$, and $f/g$ are continuous on $X$. 
}

\end{document}