간단한 기사를 고려해보세요:
\documentclass{article}
\begin{document}
some text
\begin{appendix}
some text
\end{appendix}
\end{document}
마치 섹션 이 없는 것처럼 Latex에게 파일을 컴파일하도록 지시하는 방법이 있습니까 appendix
? 주석 처리는 포함되지 않습니다. 나는 매우 큰 부록을 가지고 있고 그것을 계속해서 주석 처리하는 것은 매우 성가신 일입니다.
답변1
Phelype Oleinik이 제안한 대로 comment
패키지를 사용할 수 있습니다. 이 패키지를 사용하면 새로운 주석 환경을 추가할 수 있으므로 다음을 appendix
추가하여 환경을 주석으로 만들 수 있습니다.
\excludecomment{appendix}
서문에.
\documentclass{article}
\usepackage{comment}
\excludecomment{appendix}
\begin{document}
some text
\begin{appendix}
some text
\end{appendix}
\end{document}
부록 환경을 사용하는 경우 이는 좋은 솔루션이지만 대부분의 경우 \appendix
환경이 아닌 명령입니다. 따라서 \appendix
대신 사용하면 \begin{appendix}
가 필요하지 않습니다 \end{appendix}
.
\appendix
그런 다음 다음 과 같이 정의하여 유사한 효과를 보관할 수 있습니다 \end{document}
. LaTeX는 를 만나면 중지되고 \appendix
모든 추가 내용은 무시됩니다.
\documentclass{article}
\renewcommand\appendix{\end{document}}
\begin{document}
some text
\appendix
some text
\end{document}
답변2
그냥 넣어
\end{document}
부록 전.