如何减小章节编号的大小?

如何减小章节编号的大小?

我想稍微减小章节编号的大小classic thesis。我该怎么做?

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

\usepackage[parts,pdfspacing,dottedtoc]{classicthesis}
\begin{document}

\chapter{A title}
\end{document}

答案1

这是一个避免延续错误使用 的好\newfont时机classicthesis

\documentclass[
  12pt,
  a4paper,
  openany,
  twoside=semi,
  footinclude=true,
  headinclude=true
]{scrbook}
\usepackage[
  %eulerchapternumbers,
  parts,
  pdfspacing,
  dottedtoc
]{classicthesis}

\makeatletter
\if@eulerchapternumbers
  \DeclareFixedFont{\chapterNumber}{U}{eur}{b}{n}{60}
\else
  \DeclareFixedFont{\chapterNumber}{T1}{pplj}{m}{n}{60}
\fi
\makeatother


\begin{document}
\chapter{A title}
\end{document}

设置您喜欢的大小,在此示例中为 60pt,而不是默认的 70pt。

答案2

将字体命令重新定义\chapterNumber为您喜欢的字体(和缩放因子)。

\documentclass[12pt,a4paper,openany,twoside=semi,footinclude=true,headinclude=true]{scrbook}
\usepackage[parts,pdfspacing,dottedtoc]{classic thesis}
\font\chapterNumber=pplr9d scaled 6000\relax % Original value: 7000
\begin{document}
\chapter{A title}
\end{document}

原始缩放因子7000:

在此处输入图片描述

修改后的比例因子6000:

在此处输入图片描述

请注意,此重新定义将使包选项eulerchapternumbers无效。相反,如果您想使用重新缩放的欧拉字体作为章节编号,请将命令更改为

\font\chapterNumber=eurb10 scaled 6000\relax

相关内容