如何在不改變其他任何內容的情況下更改 ClassicThesis 中的主要字體

如何在不改變其他任何內容的情況下更改 ClassicThesis 中的主要字體

我正在使用 ClassicThesis 加上 Arsclassica 軟體包,我想用標準電腦現代方式更改主要字體,同時,我不想更改標題樣式、目錄樣式或其他任何樣式。我已經透過 ClassicThesis 選項部分實現了這一點:palatino=false,但現在 Toc 字體已在電腦現代中切換,而我想要 Arsclassica 的預設樣式。有什麼建議嗎?

這裡是程式碼:

\documentclass[a4paper,11pt,oneside,openright,titlepage,headinclude,
footinclude,BCOR5mm,numbers=noenddot,cleardoublepage=empty]{scrreprt} 
\usepackage{subfig} 

\usepackage[eulerchapternumbers,beramono,pdfspacing,palatino=false]{classicthesis} 
\usepackage{arsclassica}

\usepackage{lipsum}
\usepackage[english,italian]{babel}
%\usepackage{microtype} 
\usepackage{afterpage}
\usepackage{setspace}
\usepackage[italian]{varioref}
\usepackage{eurosym}
\usepackage{quoting}
\quotingsetup{font=small}
\usepackage{indentfirst}
\usepackage{enumerate}
\usepackage{epigraph}
\usepackage[output-decimal-marker={,}]{siunitx}
\usepackage{booktabs,amsmath,eurosym,mathtools,amssymb,bm}
\usepackage{array}
%\usepackage{booktabs}
\usepackage{graphicx}
\usepackage{acronym}
\usepackage{tabularx}
%\usepackage{caption} 
\captionsetup{tableposition=top,figureposition=bottom,font=small}
%\usepackage{xcolor} 
\usepackage{tikz}
\usepackage{float}
%\usepackage{subcaption}
\usetikzlibrary{calc,matrix,patterns}
\usepackage{pgfplots}
\usepackage[autostyle,italian=guillemets]{csquotes}
\usepackage{url}


\renewbibmacro*{doi+eprint+url}{%
    \printfield{doi}%
    \newunit\newblock%
    \iftoggle{bbx:eprint}{%
        \usebibmacro{eprint}%
    }{}%
    \newunit\newblock%
    \iffieldundef{doi}{%
        \usebibmacro{url+urldate}}%
    {}%
}


\DeclareCiteCommand{\citeyear}
{\usebibmacro{prenote}}
{\bibhyperref{\printfield{year}}\bibhyperref{\printfield{extrayear}}}
{\multicitedelim}
{\usebibmacro{postnote}}

\DeclareCiteCommand{\citeyearpar}[\mkbibparens]
{\usebibmacro{prenote}}
{\bibhyperref{\printfield{year}}\bibhyperref{\printfield{extrayear}}}
{\multicitedelim}
{\usebibmacro{postnote}}


\makeatletter
\AtBeginDocument{%
\renewcommand*{\AC@hyperlink}[2]{%
    \begingroup
    \hypersetup{hidelinks}%
    \hyperlink{#1}{#2}%
    \endgroup
    }%
}
\makeatother

\date{}

\begin{document}

\tableofcontents

\phantomsection
\addcontentsline{toc}{chapter}{Introduction}    
\chapter*{Introduzione}
\lipsum
\chapter{Dummy title 1}
\lipsum
\section{Dummy title 2}
\lipsum
\chapter{Dummy title 3}
\lipsum
\section{Dummy title 4}
\lipsum

\end{document}

這是我獲得的內容(請注意簡介和章節標題採用 cm 字體,而章節我認為是帶有 euler 數字樣式的預設 iwona):

這是我想要的*(我認為章節標題和數字是 palatino 字體,而介紹仍然是 cm 可能是因為 \addcontentsline;我可以用 修復它\section[{\fontfamily{ppl}\selectfont Introduction}]{Introduction}):

在此輸入影像描述

任何幫助將不勝感激。

相關內容