我需要对选定的单词使用粗体 Arial,如下段所示。
我在 Overleaf 中使用pdfLaTeX
。
我发现已回答的问题给出了使用 Arial 处理整个文档的解决方案(如何将整个文档的字体设置为 Arial?) 或者如何更改 LaTeX 文档中选定单词的字体,我不太明白。
答案1
如果您只需要粗体无衬线文本:
\documentclass{article}
\begin{document}
text \textbf{\sffamily text} text
\end{document}
如果你确实需要真正的 Arial,我建议切换到 lualatex 或 xelatex(你可以在 overleaf 项目的侧边栏中更改引擎):
% !TeX TS-program = lualatex
\documentclass{article}
\usepackage{fontspec}
\newfontfamily{\boldarial}{Arial Bold}
\begin{document}
text {\boldarial text} text
\end{document}
答案2
你pdflatex
可以使用uarial
(但这需要运行getnonfreefonts
)
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[scaled=0.85]{uarial}
\DeclareTextFontCommand{\ba}{\bfseries\sffamily}
\begin{document}
Some words in the default font and \ba{arial} for emphasis.
\ba{abcdefghijklmnopqrstuvwxyz}
\ba{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
\end{document}
如果您使用 Helvetica 而不是 Arial,那么很可能没人会注意到。这不需要安装任何东西。
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[scaled=0.85]{helvet}
\DeclareTextFontCommand{\ba}{\bfseries\sffamily}
\begin{document}
Some words in the default font and \ba{arial} for emphasis.
\ba{abcdefghijklmnopqrstuvwxyz}
\ba{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
\end{document}