首页 > 解决方案 > 章、节、小节标题的字体更改

问题描述

所以,我正在努力改变乳胶中标题/部分/小节的字体。

这是我的代码:

% !TEX TS?program = pdflatexmk

\documentclass[fontsize=12pt]{book}

\usepackage[T1]{fontenc}

\usepackage{amsmath}

\usepackage{mathpazo}

%changing font of section/chapter title
\usepackage{fontspec}
\usepackage{titlesec}
\newfontfamily\headingfont{Papyrus}
\titleformat{\chapter}{\LARGE\headingfont}
\titleformat{\section}{\LARGE\headingfont}
\titleformat{\subsection}{\Large\headingfont}
\titleformat{\subsubsection}{\large\headingfont}



\title{my report}
\author{user name}
\date


\linespread{1.5}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\maketitle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\tableofcontents
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{introduction}
text : intro
\section{first section}
text :  section
\subsection{this subsection}
text :section
\subsubsection{this and that subsection}
text :subsub
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}

这是输出: 在此处输入图像描述 字体仅在chapterand中实现subsection。不为他人。而且编号也丢失了。例如,没有titlesecfontspec这就是它的样子。章节和小节编号随之丢失。我找不到错误。(使用 fontspec 也有点烦人,因为它找不到默认的乳胶字体,所以不得不将otf文件复制粘贴到工作目录中)

在此处输入图像描述

标签: xelatex

解决方案


推荐阅读