如何正确设置文档的字体

如何正确设置文档的字体

我已经购买并安装了字体系列Frutigerhttps://www.tug.org/fonts/fontinstall.htmlWindows 上的 TexLive。

现在我想将 Frutiger 设置为标题(章节和小节,也可能是小节)的字体,并将 Computer Modern 设置为其他任何内容(文本、标题、目录等)的字体。

我如何在 LaTeX 中执行此操作?我当前的文档如下所示:

\documentclass[a4paper]{scrartcl}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{frutiger}

\begin{document}
\section{Section}
Text \textbf{text}
\subsection{Subsection}
Text
\end{document}

\usepackage{frutiger}使用frutiger.sty如下内容(因为我安装字体的时候没有,所以就在网上找的):

\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{frutiger}
    [2005/08/08 v1.2 Style file for Linotype Frutiger]
\RequirePackage[T1]{fontenc}
\RequirePackage{textcomp}
\DeclareOption{lining}{\renewcommand*{\rmdefault}{lfrx}}
\DeclareOption{oldstyle}{\renewcommand*{\rmdefault}{lfrj}}
\ExecuteOptions{oldstyle}
\ProcessOptions\relax
%%
%% End of file 'frutiger.sty'

如果必须指定,我会使用“Frutiger 57 Condensed”作为标题,可在本文档中找到:http://mirror.jmu.edu/pub/CTAN/fonts/psfonts/wa-schmidt/pfr.txt

如果有一个模板可以设置标题和连续文本,那么我该如何定义我的问题的反面:标题采用 Computer Modern Sans 字体,文本采用 Frutiger 字体加粗,并使用上述网址中的“Frutiger 65 Bold”?

答案1

我找到了您的问题,因为我刚刚也有……同样的问题!

我正在使用 LaTeX 标准海尔维提卡(我猜它不是 100% 等同于原版),因为我没有 Frutiger。但你可以看看FontName.pdfFrutiger 缩写文件(感谢大卫·卡莱尔为这个伟大的文件提供光)。它应该是类似ftr或的东西ftb

要使整个文本保持 Computer Modern,您无需更改任何内容,它已经是默认设置。既然您提到了 sans,那么只需添加:

\renewcommand*{\familydefault}{\sfdefault}

如果您使用 KOMA 脚本,建议使用以下命令:

\newcommand*\sectfont{\fontfamily{phv}\selectfont}

请参阅第 3.2 节KOMA 脚本

您还可以使用titlesec包,如下:

\usepackage{titlesec}
\titleformat{\chapter}
  {\fontfamily{phv}\selectfont\bfseries\LARGE\color{blue}}
  {\thechapter}{20pt}{}
\titleformat{\section}
  {\fontfamily{phv}\selectfont\color{blue}}
  {\thechapter}{10pt}{}

章节和部分采用蓝色 Helvetica 字体,文本采用现代计算机衬线字体

要像我一样自定义它,请参阅第 3 节标题安全。我改编了以下代码:这个答案

如果你放弃 KOMA 脚本,那么可以使用sectsty包裹。

\usepackage{sectsty}
\allsectionsfont{\fontfamily{phv}\selectfont}

章节和部分采用 Helvetica 字体,文本采用计算机现代衬线字体

如果您想要反过来,只需添加:

\renewcommand*\rmdefault{phv}

phvcmss以上任意代码替换。

章节和部分采用 Serif Computer Modern 字体,文本采用 Helvetica 字体

我转发的另一个关于简单乳胶事物的快速参考网站是LaTeX 维基百科

希望这对你有帮助,即使已经过去了 3 个月。

相关内容