我有以下序言:
---
title: "Luke Klein Dissertation MARKDOWN ROUGH DRAFT"
author: "Luke KLEIN"
date: "`r Sys.Date()`"
output:
pdf_document:
toc: true
---
如何让我的标题在封面上居中?
最佳答案
你可能已经完成了你的论文 :-) 但是当我通过谷歌来到这里时,将解决方案留给将来引用。
---
title: |
| \vspace{5cm} \LARGE{Luke Klein Dissertation MARKDOWN ROUGH DRAFT}
author: "Luke KLEIN"
date: "`r Sys.Date()`"
output:
pdf_document:
toc: true
---
使用 vspace 和 hspace 的组合,您可以将标题放在您想要的任何位置。
可以在此处查看其他字体组合(大小和类型):
https://www.sharelatex.com/learn/Font_sizes,_families,_and_styles?nocdn=true
关于r-markdown - 如何垂直居中 rmarkdown pdf 文档的标题?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37310520/