经典论文中的图片标题字体

经典论文中的图片标题字体

我正在尝试更改使用 ClassicThesis 和 Ars Classica 包编写的论文标题的字体。

目前,粗体“图 x:”采用 Iwona 字体,其余部分采用与文本相同的字体。我想将其也改为 Iwona。

我尝试使用 caption 包或 \setkomafont{caption} 命令,但目前没有找到针对此特定字体的命令。

答案1

这就像添加一样简单\captionsetup{font=sf}

\documentclass[
  10pt,
  a4paper,
  twoside,
  openright,
  titlepage,
  fleqn,
  headinclude,
  footinclude,
  BCOR5mm,
  numbers=noenddot,
  cleardoublepage=empty,
  tablecaptionabove
]{scrreprt}
\usepackage[pdfspacing]{classicthesis}
\usepackage{arsclassica}

\captionsetup{font=sf}

\begin{document}
\chapter{Title}

Some text

\begin{figure}[htp]
\centering
\fbox{\rule{0pt}{1cm}\rule{1cm}{0pt}}
\caption{The caption to the table}
\end{figure}

\begin{table}[htp]
\centering
\caption{The caption to the table}
\begin{tabular}{ll}
\hline
a & a\\
\hline
\end{tabular}
\end{table}

\end{document}

在此处输入图片描述

相关内容