在R Markdown上指定字体类型
如何指定字体类型,即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)
这里有一个使用LaTeX代码的例子。 您需要在R markdown文件的相同文件夹中有一个单独的样式文件,您可以在其中定义字体系列。
在样式文件(mystyle.sty)中,您可以定义LaTeX字体目录中的任何字体,例如Palatino Sans Serif:
usepackage{palatino}
renewcommand{familydefault}{sfdefault} % sans serif
fontfamily{ppl}selectfont
有关通过LaTeX使用Tahoma的方法,请查看此处或此处。
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}
链接地址: http://www.djcxy.com/p/24969.html