ElegantBook
ElegantBook copied to clipboard
请问如何将标题字体由黑体改为宋体
你明白什么是「宋体」、什么是「黑体」吗?
你看过 texdoc ctex
讲系统字体的部分吗?
既然你没有任何要求,那就随便挑一款吧
\documentclass[cn,fontset=fandol]{elegantbook}
\begin{document}
\chapter{测试}
\end{document}
\documentclass[cn]{elegantbook}
\setCJKmainfont{SimSun}[ BoldFont = SimSun , ItalicFont = KaiTi ]
\begin{document}
\chapter{测试}
\end{document}
\documentclass[cn]{elegantbook}
\titleformat{\chapter}[\style]{\mdseries}
{\filcenter\LARGE\enspace\mdseries{\color{structurecolor}\IfAppendix{\appendixname}{\chaptername}\enspace}}{1pt}{\mdseries\color{structurecolor}\LARGE\filcenter}[]
\titleformat{\section}[hang]{\mdseries}{
\Large\mdseries{\color{structurecolor}\thesection}\enspace}{1pt}{%
\color{structurecolor}\Large\mdseries\filright}
\titleformat{\subsection}[hang]{\mdseries}{
\large\mdseries\color{structurecolor}\thesubsection\enspace}{1pt}{%
\color{structurecolor}\large\mdseries\filright}
\titleformat{\subsubsection}[hang]{\mdseries}{
\large\mdseries\color{structurecolor}\thesubsubsection\enspace}{1pt}{%
\color{structurecolor}\large\mdseries\filright}
\begin{document}
\chapter{测试}
\end{document}