如何使Latex中\chapsubhead和\section的字体大小标题相似?

如何使Latex中\chapsubhead和\section的字体大小标题相似?

我在设置 \section 标题和 \chaptersubhead 标题的字体大小时遇到​​问题。我有以下代码:

   \subsubsection{Geometrical Parameters}
        My name is John.

      \newcommand{\chapsubhead}[2]{{\normalsize #1}} 
      \chapsubhead{\flushleft \textbf {1. Time Delay}}
       John is a good boy.

有人能建议我如何在乳胶中使 \section 和 \chapsubhead 标题的字体具有相同的字体样式和字体大小吗?

答案1

由于你说你正在使用 KOMA_Script,你正在寻找的命令是\minisec记录在这里)。

\documentclass[headings=normal]{scrartcl}
\usepackage{fontspec}

\setkomafont{minisec}{\usekomafont{subsubsection}}

\begin{document}
   \subsubsection{Geometrical Parameters}
        My name is John.

   \minisec{1. Time Delay}
       John is a good boy.
\end{document}

minisec 样本

要仅更改尺寸以匹配,您可以

\addtokomafont{minisec}{\usesizeofkomafont{subsubsection}}

fontspec如果您使用命令,您加载的任何字体都应正确缩放到相同的高度

\defaultfontfeatures{ Scale = MatchUppercase }

如果您这样做并更改主字体,请加载它以[Scale=1.0]将所有内容缩放到该字体,而不是未使用的默认值。

相关内容