使用 Trebuchet 字体

使用 Trebuchet 字体

我该如何MS Trebuchet在 中使用字体LaTeX,或者在这种情况下tikzposter?我尝试了如何使用 MS Trebuchet 字体?使用以下代码:

\usepackage[T1]{fontenc} % https://tex.stackexchange.com/questions/33739/how-to-use-the-ms-trebuchet-font
\pdfmapfile{+winfonts.map}
\renewcommand\rmdefault{trebuchet}

但我收到这样的警告:

LaTeX Font Warning: Font shape `T1/trebuchet/m/n' undefined

格式不再适用于粗体或斜体文本。

答案1

注意投石机 MS不是投石机.然后,使用 lualatex:

\documentclass{article}

\usepackage{fontspec}

\setmainfont{Trebuchet MS}

\begin{document}

One two \textbf{three} \textit{four}.

\end{document}

在此处输入图片描述

相关内容