KOMA 스크립트에서 섹션 제목에 밑줄을 그었습니다.
MWE는 다음과 같습니다.
\documentclass{scrartcl}
\usepackage{ulem}
\addtokomafont{section}{\uline}
\begin{document}
\renewcommand\raggedsection{\centering}
\section{ABC}
\tableofcontents{}
\end{document}
문제는 ToC 제목에도 밑줄이 그어져 있다는 것입니다.
취소할 수 있는 방법이 있나요?(제목에 대해 묻고 있습니다 - "목차")
즉, 섹션 제목에는 밑줄이 그어지고 ToC(및 이와 유사한 다른 목록)에만 밑줄이 없습니다.
감사합니다!
답변1
사용자 명령을 사용하여 목차 앞(및 목차 뒤)을 다시 정의할 수 있습니다. 이 예는 또한 \uline이 센터링에 영향을 미친다는 것을 보여줍니다.
훨씬 더 좋은 아이디어는 밑줄을 사용하지 않는 것입니다.
\documentclass{scrartcl}
\usepackage{ulem}
\addtokomafont{section}{\myuline}
\newcommand\myuline{\uline}
\renewcommand\raggedsection{\centering}
\begin{document}
\section{ABC}
\let\myuline\relax
\tableofcontents{}
\end{document}