如何在R Markdown上指定字体类型,即Tahoma
。我使用以下内容来定义我的文档
---
bibliography: bibliography.bib
csl: nature.csl
documentclass: article
fontsize: 12pt
linkcolor: blue
mainfont: Arial
output:
pdf_document:
fig_caption: Yes
---
如何指定图标的字体大小 - 如下图所示
![Figure 2: The impact of malaria disease the factors within the bednet that in turn affect infections and other health issues](climate_change.png)
答案 0 :(得分:4)
这是一个使用LaTeX代码的例子。您需要在R markdown文件的同一文件夹中有一个单独的样式文件,您可以在其中定义font-family。
在样式文件(mystyle.sty)中,您可以定义LaTeX Font Catalogue中的任何字体,例如Palatino Sans Serif:
\usepackage{palatino}
\renewcommand{\familydefault}{\sfdefault} % sans serif
\fontfamily{ppl}\selectfont
有关通过LaTeX使用Tahoma的方法,请查看here或here。
R markdown文件如下所示,您还可以使用LaTeX fontsize命令更改标题的大小:
---
output:
pdf_document:
includes:
in_header: mystyle.sty
---
\begin{huge}
![Figure 2: the caption of the picture](picture.png)
\end{huge}