我需要使用一种名为 Calibri 的自定义字体来模仿某些单词形式。在该单词形式中,字体大小会反复变化。我知道两种更改字体大小的方法。要么在文档开头。
像这样:
\documentclass[9,5pt]{article}
或者使用命令
\tiny
,\small
,\normalsize
,\large
,\huge
, ETC。
现在,我可以从 word 文档中看到标题的字体大小为 18。我只想在我的 latex 文档中使用数字指定字体大小,因为
\huge
等等与 word 使用的字体大小不完全匹配。章节和小节标题也类似。
答案1
Microsoft Word 点是 TeX 大点,因此您需要 18bp Calibri:
使用 lualatex 或 xelatex :
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Calibri}
\begin{document}
This is 10pt
\fontsize{18bp}{20bp}\selectfont This is 18bp (18 pt in Word/PDF/PostScript/CSS/anything-digital-that-isnt-tex)
\fontsize{3cm}{4cm}\selectfont This is quite large
\end{document}