我想将图像添加为页眉和页脚(与我的组织视觉识别一致)到PDF报告。我已经设法在Sweave中做到了,但我也希望能够使用Markdown来做到这一点。我可以使用![footer](H:/R/Footer.pdf)
插入图像但是当我尝试使用壁纸包时(就像我在Sweave中一样)我收到错误。
---
title: "2014 Report"
author: "My Name"
date: "Monday, October 06, 2014"
output:
pdf_document:
number_sections: yes
toc: yes
fontsize: 10pt
header-includes:
- \usepackage{wallpaper}
abstract: This is my abstract
---
\LRCornerWallPaper{0.99}{![footer](H:/R/Footer.pdf)}
Markdown有没有办法,还是我需要坚持Sweave?
答案 0 :(得分:4)
在这种情况下,wallpaper
包的正确用法只是
\LRCornerWallPaper{0.99}{path/to/pic}
答案 1 :(得分:-3)
---
header-includes:
- \usepackage{fancyhdr}
- \pagestyle{fancy}
- \setlength\headheight{45pt}
- \fancyhead{\includegraphics{header.jpg}}
- \setlength\footskip{5pt}
- \fancyfoot{\includegraphics{footer.jpg}}
output:
pdf_document:
fig_caption: false
---