\section
내 문서의 모든 제목( , \subsection
, \subsubsection
, ...) 의 색상(글꼴 크기 등 제외)만 변경하고 싶습니다 . 다른 모든 설정을 고정된 상태로 유지하고 싶습니다.
이를 수행할 수 있는 방법이 있습니까?
답변1
sectsty
섹션별로 제목 글꼴을 수정하거나 한 번에 모두 수정할 수 있습니다. 예를 들어 글꼴만 수정하려면 \subsection
다음을 사용합니다 \subsectionfont{<font defs>}
.
\documentclass{article}
\usepackage{sectsty}% http://ctan.org/pkg/sectsty
\usepackage{xcolor}% http://ctan.org/pkg/xcolor
\sectionfont{\color{red}}
\subsectionfont{\color{green!80!black}}
\subsubsectionfont{\color{blue!50!white}}
\begin{document}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\end{document}
모든 섹션에 대해 다음을 사용하십시오 \allsectionsfont{<font defs>}
.
\documentclass{article}
\usepackage{sectsty}% http://ctan.org/pkg/sectsty
\usepackage{xcolor}% http://ctan.org/pkg/xcolor
\allsectionsfont{\color{black!30!green!50!cyan}}
\begin{document}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\end{document}
답변2
당신이 사용하는 경우KOMA 스크립트클래스에서는 (물론 color 패키지 외에) 추가 패키지가 필요하지 않지만 \addtokomafont
. Werner의 예를 적용하면 다음과 같습니다.
\documentclass{scrartcl}
\usepackage{xcolor}
\addtokomafont{section}{\color{red}}
\addtokomafont{subsection}{\color{green!80!black}}
\addtokomafont{subsubsection}{\color{blue!50!white}}
\begin{document}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\end{document}
또는 동일한 색상의 모든 섹션:
\documentclass{scrartcl}
\usepackage{xcolor}
\addtokomafont{sectioning}{\color{black!30!green!50!cyan}}
\begin{document}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\end{document}