仅使章节标题使用 Times;其余部分保留常规字体

仅使章节标题使用 Times;其余部分保留常规字体

我怎样才能使所有的\chapter\mychapter\section\subsection标题使用 Times 字体,但其余文本保留 LaTeX 字体?

答案1

在此代码中,您将 Times New Roman ( \fontfamily{ptm}) 用于 的名称\chapter\section并将\subsection其余文本使用 Computer modern (CM)。如果有一天,您想更改章节、节和小节的字体系列,您可以选择您喜欢的字体代码并将其放入\fontfamily{...}. 括号中,其中的一个字体代码如下(链接):

例如,如果你喜欢乌托邦/傅立叶然后你将输入\fontfamily{put}。这里有一个字体字体的最小表格;其他表格你会发现它在这个地点(例如)。

********************************************************
*Name*             *fontcode*
Adobe Times Roman: ptr
Utopia/Fourier: put
Computer Modern Roman: cmr
Computer Modern Sans: cmss
Computer Modern Bright: cmbr
Computer Modern Typewriter: cmtt
Adobe Palatino: ppl
Bookman: pbk
Adobe New Century Schoolbok: pnc
Bera Serif: fve
URW Classico: uop
Adobe Helvetica: phv
ITC Avant Garde Gothic: pag
Bera Sans: fvs
Adobe Courier: pcr
Helvetica: phv 

在此处输入图片描述

\documentclass[12pt]{book} 
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\usepackage{amsmath,amssymb}
\usepackage{titlesec}
\titleformat{\chapter}[display]
  {\fontfamily{ptm}\selectfont\bfseries\LARGE}
  {\chaptertitlename\ \thechapter}{20pt}{\Huge}
\titleformat{\section}
  {\fontfamily{ptm}\selectfont\Large\bfseries}
  {\thesection}{1em}{}
\titleformat{\subsection}
  {\fontfamily{ptm}\selectfont\Large\bfseries}
  {\thesubsection}{1em}{}  
\begin{document}
\chapter{First name}
\lipsum[1][2-3] $a^2=b^2+c^2$.
\section{Second name}
Another formula $\Delta p=m\Delta v$.
\subsection{Third name}
Another formula $L=mrv$.

\end{document}

相关内容