在 Rmarkdown YAML 中的日期下方插入徽标

在 Rmarkdown YAML 中的日期下方插入徽标

我正在使用 RMarkdown 中的以下模板创建 PDF。有没有办法让以下徽标位于日期下方而不是标题上方?

---
title: Adding a Logo to LaTeX Title
author: Michael Harper
date: December 7th, 2018
output: pdf_document
header-includes:
  - \usepackage{titling}
  - \pretitle{\begin{center}
    \includegraphics[width=2in,height=2in]{logo.jpg}\LARGE\\}
  - \posttitle{\end{center}}
---

此 YAML 生成一个封面,如下图所示。我希望徽标出现在日期下方

埃

答案1

您可以使用\predate\postdate命令来代替\pretitle\posttitle。有关详细信息,请参阅文档或者查看这个例子:

---
title: Adding a Logo to LaTeX Title
author: Michael Harper
date: December 7th, 2018
output: pdf_document
header-includes:
  - \usepackage{titling}
  - \predate{\begin{center}\large}
  - \postdate{\\
      \includegraphics[width=2in,height=2in]{logo.png}\end{center}}
---

日期下方的徽标

相关内容