在Rmarkdown pdf文档&的右上角插入徽标。头

时间:2016-09-21 13:39:39

标签: r image pdf markdown rstudio

我查看了"insert a logo in upper right corner of R markdown pdf document"主题,并设法使用此输入在右上角插入徽标:

  pdf_document:
      keep_tex: true
      includes:
        in_header: header.tex

但是当我另外加入author: title: date:时,徽标就会消失。 我意识到,在一个包含多个页面的文档中,徽标从第二页开始显示,但不在第一页上,我在其中包含标题

我如何将第一页上的徽标作为作者:,titel:等添加到正常信息之外?

1 个答案:

答案 0 :(得分:1)

将以下内容放入'header.tex'

\usepackage{titling}
\pretitle{%
\begin{center}
\LARGE
\hfill \includegraphics[width=4cm,height=6cm]{logo.png}\\[\bigskipamount]
}
\posttitle{\end{center}}