在 latex rmarkdown 中更改段落的字体系列

Changing font family for a paragraph in latex rmarkdown

有谁知道如何在 rmarkdown 文档中间更改字体系列?

我目前正在使用以下代码,但它将给定的文本重置为现代计算机,就像它永远找不到任何其他字体一样。请帮忙

---
title: ''
output:
  pdf_document:
    latex_engine: xelatex
    keep_tex: yes
geometry: left=0.35in,right=0.35in,top=0.3in,bottom=0.3in
header-includes:
- \usepackage{graphicx}
- \usepackage{fancyhdr}
- \usepackage{fontspec}
- \pagestyle{fancy}
- \renewcommand{\headrulewidth}{0.0pt}
fontsize: 9pt
---
\begingroup
\fontfamily{pag}\fontsize{18}{16}\selectfont
\textcolor{black}{tasks}
\endgroup

另外有人知道我可以使用哪些字体吗?我找不到有效的列表。

您使用的是 xelatex,因此您可以使用操作系统上安装的任何字体

---
title: ''
output:
  pdf_document:
    latex_engine: xelatex
    keep_tex: yes
geometry: left=0.35in,right=0.35in,top=0.3in,bottom=0.3in
header-includes:
- \usepackage{graphicx}
- \usepackage{fancyhdr}
- \usepackage{fontspec}
- \pagestyle{fancy}
- \renewcommand{\headrulewidth}{0.0pt}
fontsize: 9pt
---
Global

\begingroup
\setmainfont{Arial}
\fontsize{18}{16}\selectfont
\textcolor{black}{tasks}
\endgroup

Global