标题和文本字体没有变化

标题和文本字体没有变化

我使用 clean thesis,当我更改语言时,所有字体都从 helvetica 变为默认的 Latex 字体。现在我更改了一些代码,几乎所有字体都发生了变化,除了标题、标题和简单的文档文本。简单文本很奇怪,因为表格中的文本也发生了变化,粗体文本也根据需要更改为 helvetica。也许你能帮助我?

    \documentclass[%
        paper=A4,                   % paper size --> A4 is default in Germany
        twoside=true,               % onesite or twoside printing
        openright,                  % doublepage cleaning ends up right side
        parskip=full,               % spacing value / method for paragraphs
        chapterprefix=true,         % prefix for chapter marks
        12pt,                       % font size
        headings=normal,            % size of headings
        bibliography=totoc,         % include bib in toc
        listof=totoc,               % include listof entries in toc
        titlepage=on,               % own page for each title page
        captions=tableabove,        % display table captions above the float env
        draft=false,                % value for draft version
    ]{scrreprt}%

    %\listfiles

    \usepackage{polyglossia} % babel-lithuaninan is not adapted to xelatex
    \setdefaultlanguage{lithuanian}
    \usepackage{tabularx}
    \usepackage{colortbl}
    \usepackage{listings}
    \usepackage{tcolorbox}
    \usepackage[                    % clean thesis style
        figuresep=colon,%
        sansserif=false,%
        hangfigurecaption=false,%
        hangsection=true,%
        hangsubsection=true,%
        colorize=full,%
        colortheme=bluemagenta,%
        bibsys=biber,%
        bibfile=bib-refs,%
        bibstyle=alphabetic,%
    ]{cleanthesis}

    %
    %reset font encoding after cleanthesis:}
    \usepackage[EU1]{fontenc}
    \renewcommand{\familydefault}{\sfdefault}
    %
    %redefined
    \renewcommand{\helv}{\sffamily\fontsize{9}{11}\selectfont}
    \renewcommand{\book}{\rmfamily\fontseries{m}\fontsize{11}{13}\selectfont}
    \renewcommand{\tgherosfont}{\sffamily\selectfont}


    \begin{document}

    \renewcaptionname{lithuanian}{\figurename}{Pav.}
    \renewcaptionname{lithuanian}{\tablename}{Lent.}

    \chapter{hello}

    \section{ą,ę,ė,įš,šį}

    ą,ę,ė,į,č,š,ų,ū.

\end{document}

提前致谢。

答案1

我喜欢模板,我并不讨厌它们。我真的讨厌。模板是世界上最好的东西。总是让人生气和开心的理由。

\documentclass{scrreprt}%
\usepackage{cleanthesis}
\usepackage{fontspec}
\setmainfont{TeX Gyre Heros}
%\addtokomafont{chapter}{\fontspec{TeX Gyre Heros}}
\renewcommand{\helv}{\fontspec{TeX Gyre Heros}\fontsize{9}{11}\selectfont}
\renewcommand{\book}{\fontspec{bookman}\fontsize{11}{13}\selectfont}
\renewcommand{\tgherosfont}{\fontspec{TeX Gyre Heros}}
\renewcommand{\thesischapterfont}{\color{ctcolorblack}\huge\fontspec{TeX Gyre Heros}}
\usepackage{blindtext}
\begin{document}
\chapter{Walzing Wombat}
\blindtext
\end{document}

report您必须欣赏语义的清晰分离。这很棒。如果想获得特别的体验,请尝试使用KOMA 类而不是 KOMA 类的示例。

提供模板对初学者来说不算什么。你可以快速获得相当庞大的用户群,他们会发现错误。所以给所有想要写一个好的模板: 不。

相关内容