R Pagedown resume/cv 标题小写字母
R Pagedown resume/cv lowercase letters for title
我正在使用 Pagedown 在 R 中创建简历。当前,默认设置是在第一页顶部以所有大写字母显示您的姓名(例如 JANE DOE)。但是,这看起来不太适合我的名字,我想知道是否有办法只编辑标题行以混合大小写 (Jane Doe)。谢谢!
可以像这样用 CSS 删除大写文本转换:
---
title: "Lijia Yu's resume"
author: Lijia Yu
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
# set it to true for a self-contained HTML page but it'll take longer to render
self_contained: false
# uncomment this line to produce HTML and PDF in RStudio:
#knit: pagedown::chrome_print
---
```{css, echo=FALSE}
#title h1 {
text-transform: unset;
}
```
Aside
================================================================================
...
我正在使用 Pagedown 在 R 中创建简历。当前,默认设置是在第一页顶部以所有大写字母显示您的姓名(例如 JANE DOE)。但是,这看起来不太适合我的名字,我想知道是否有办法只编辑标题行以混合大小写 (Jane Doe)。谢谢!
可以像这样用 CSS 删除大写文本转换:
---
title: "Lijia Yu's resume"
author: Lijia Yu
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
# set it to true for a self-contained HTML page but it'll take longer to render
self_contained: false
# uncomment this line to produce HTML and PDF in RStudio:
#knit: pagedown::chrome_print
---
```{css, echo=FALSE}
#title h1 {
text-transform: unset;
}
```
Aside
================================================================================
...