我只是想将字体切换为 Helvetica,但不起作用。我正在使用
\usepackage{helvet}
\renewcommand\familydefault{\sfdefault}
如果相关的话,我正在 Mac 上使用 pdflatex 和 RStudio。如果这是一个显而易见的修复或已经得到解答的问题,我很抱歉,但我似乎无法在网上找到其他任何东西。
固定的: 问题是 Sweave 加载时不知怎么弄乱了字体。我通过以下方式解决了这个问题:
\documentclass{article}
\AtBeginDocument{\usepackage{helvet}\renewcommand\familydefault{\sfdefault}} % Fixes main body text
\begin{document}
\SweaveOpts{concordance=TRUE}
\fontfamily{phv}\selectfont % Fixes text in tables
aGR --- By all accounts, this should and does work.
\end{document}
感谢 Mico 的帮助和示例。