作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近在 R 中安装了“文章”包,以在 RMarkdown 中自动设置期刊文章模板。到目前为止,我对它印象深刻,但我希望能够更改字体。当然,这在某种程度上是可能的,但我一直无法找到任何解释如何做到这一点的在线资源。
我对编织成 PDF 很感兴趣。
这是我的 RMarkdown 脚本顶部的 YAML:
---
title: This title
author:
- name: This author
email: t.author@thisPlace.com
affiliation: This institute
address:
- code: This institute
address: Street, City, State, etc.
abstract: |
This is the abstract.
It consists of two paragraphs.
keywords: "fun, happiness"
journal: "This Elsevier Journal"
date: "`r Sys.Date()`"
output: rticles::elsevier_article
---
我是通过在 R 中运行以下代码行生成的:
rmarkdown::draft("Test.Rmd", template = "elsevier_article", package = "rticles")
那么我可以在哪里控制字体呢?在使用“文章”之前,我曾经通过更改 latex 引擎来更改字体,然后按如下方式指定字体:
---
title: This title
author: "This author"
date: "`r Sys.Date()`"
output:
pdf_document:
toc: yes
toc_depth: 4
fig_caption: TRUE
df_print: kable
latex_engine: xelatex
mainfont: Calibri Light
---
是否可以在“文章”中做类似的事情?
最佳答案
您控制字体的方式与您之前所做的类似:
---
title: This title
author:
- name: This author
email: t.author@thisPlace.com
affiliation: This institute
address:
- code: This institute
address: Street, City, State, etc.
abstract: |
This is the abstract.
It consists of two paragraphs.
keywords: "fun, happiness"
journal: "This Elsevier Journal"
date: "`r Sys.Date()`"
output:
rticles::elsevier_article:
latex_engine: xelatex
mainfont: Calibri Light
---
关于r - 使用 "rticles"包时如何更改 RMarkdown 中的字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58120216/
以下代码在我今年夏天提交一篇文章时运行良好,但在最近更新后不再运行。 (R 版本 4.2.2(2022-10-31,R Studio 2022.12.0 Build 353,文章 0.24)。 ---
我最近在 R 中安装了“文章”包,以在 RMarkdown 中自动设置期刊文章模板。到目前为止,我对它印象深刻,但我希望能够更改字体。当然,这在某种程度上是可能的,但我一直无法找到任何解释如何做到这一
我试图在 pdf 中生成示例 rticles 输出之一,并得到相同的错误 pdflatex not found .这是在 Ubuntu 20.04 焦点窝上。 最佳答案 我先跟着一虎排查site ,但
我是一名优秀的程序员,十分优秀!