如何修改经典论文中\paragraph的字体?

如何修改经典论文中\paragraph的字体?

我目前正在用 撰写论文classicthesis,我想修改\paragraph\subparagraph命令的字体,以便让它们与我当前的 Minion pro 字体兼容。我该怎么做?这是我的 MWE:

\documentclass[12pt,a4paper,openany,twoside=semi,footinclude=true,headinclude=true]{scrbook}

\usepackage{fontspec}    
\usepackage[frenchb]{babel}
\setmainfont{Minion Pro}

\begin{document}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\paragraph{A paragraph} Some text.
\subparagraph{A subparagraph}

\end{document}

答案1

classicthesis软件包不支持\subparagraph。如果您真的需要五个切片级别\chapter(我不相信),您可以添加类似的设置\paragraph

\documentclass[
  12pt,
  a4paper,
  openany,
  twoside=semi,
  footinclude=true,
  headinclude=true
]{scrbook}

\usepackage{fontspec}
\usepackage[frenchb]{babel}
\usepackage{classicthesis}

\titleformat{\subparagraph}[runin]
  {\normalfont\normalsize}
  {\thesubparagraph}
  {0pt}
  {\spacedlowsmallcaps}

\setmainfont{Minion Pro}

\begin{document}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\paragraph{A paragraph} Some text.
\subparagraph{A subparagraph} Some text

\end{document}

在此处输入图片描述

相关内容