1. 程式人生 > >Latex修改全域性字型

Latex修改全域性字型

如果使用的是XeTeX 或者 LuaTeX編譯器的話,可以直接使用fontspec巨集包。用\setmainfont引入就可以了。

但如果使用的是pdfLatex的話就不適用了,此時修改字型只能針對latex自帶的三個字型族,詳情可以看這裡.

引用原文如下:

These families can generally be grouped into three main categories: serif, sans serif, and monospaced. LaTeX commands generally refer to these with the shorthand rm, sf, and tt respectively.

使用命令

\renewcommand{\familydefault}{<family>}

可以進行字型設定,<family>可以是

  • \rmdefault
  • \sfdefault
  • \ttdefault

裡的其中一個。

對應的效果分別為
這裡寫圖片描述