KTUG 한국 텍 사용자 그룹

Menu

KTUG :: Q&A 마당

oblivoir 클래스에서 씁니다

아래의 예시는 잘 작동되는데

\documentclass[10pt, a4paper]{oblivoir}
\usepackage{amsmath, amsthm}

\newtheorem{thm}{Theorem}[section]
\newtheorem{lem}[thm]{Lemma}

\theoremstyle{definition}
\newtheorem{dfn}{Definition}[section]
\begin{document}
    
\section{blah}
\begin{thm}
blah
\end{thm}
\begin{lem}
blah
\end{lem}
\begin{dfn}
blah
\end{dfn}
\end{document}

저기서 dfn을 정의하는 부분을 \newtheorem{dfn}[thm]{Definition}로 바꿀 경우

Missing \begin{document}. \newtheorem{dfn}[thm]{Definition}[

라는 에러가 떠요

memoir에서도 같은 에러가 뜨네요 memoir랑 amsthm이 충돌하나봐요

KTUG 한국 텍 사용자 그룹