아무것도 변경하지 않고 ClassicThesis의 기본 글꼴을 변경하는 방법

아무것도 변경하지 않고 ClassicThesis의 기본 글꼴을 변경하는 방법

나는 ClassicThesis와 Arsclassica 패키지를 사용하고 있으며 현대적인 표준 컴퓨터로 기본 글꼴을 변경하고 동시에 헤더 스타일, Toc 스타일 또는 기타 항목을 변경하고 싶지 않습니다. 나는 ClassicThesis 옵션을 사용하여 이것을 부분적으로 달성했지만 palatino=false이제 Arsclassica의 기본 스타일을 원하는 동안 Toc 글꼴이 Computer Modern으로 전환되었습니다. 어떠한 제안?

코드는 다음과 같습니다.

\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 글꼴로 되어 있지만 제가 생각하는 장은 오일러 숫자 스타일의 기본 iwona입니다).

여기에 내가 원하는 것이 있습니다*(섹션 제목과 번호는 palatino 글꼴로 되어 있는 반면 소개는 여전히 cm로 되어 있는 것 같습니다. 아마도 \addcontentsline 때문일 것입니다. 로 수정할 수 있습니다 \section[{\fontfamily{ppl}\selectfont Introduction}]{Introduction}).

여기에 이미지 설명을 입력하세요

도움을 주시면 감사하겠습니다.

관련 정보