我已经创建了博士学位的封面图像,其封面尺寸准确(DIN A4)。
我想将RMardown文件编织为PDF后将其添加到创建的PDF的开头。
我碰到了this question,但它在页面内添加了图片,但没有创建带有封面的新页面。
有什么方法可以实现?
这是我的YAML代码:
---
title: My title
y patrón de estrategia de vida
author: "Mario Modesto-Mata"
date: "`r format(Sys.time(), '%d %B, %Y')`"
output:
pdf_document:
highlight: espresso
number_sections: yes
word_document:
toc: yes
toc_depth: '4'
html_document: default
documentclass: article
classoption: a4paper
bibliography: references.bib
csl: ajpa.csl
indent: true
header-includes:
- \usepackage{pdfpages}
- \usepackage{fancyhdr}
- \pagestyle{fancy}
- \fancyfoot[CO,CE]{Mario Modesto Mata. PhD}
- \fancyfoot[LE,RO]{\thepage}
- \renewcommand{\contentsname}{Tabla de contenidos}
- \usepackage{setspace}\onehalfspacing
- \usepackage{float}
- \usepackage{titling}
- \pretitle{\begin{center}\LARGE\includegraphics[width=12cm]{Figuras/Lamina_delgada.png}\\[\bigskipamount]}
- \posttitle{\end{center}}
---
最后三行负责在标题之前添加图像。
- \usepackage{titling}
- \pretitle{\begin{center}\LARGE\includegraphics[width=12cm]{Figuras/Lamina_delgada.png}\\[\bigskipamount]}
- \posttitle{\end{center}}
但是我想添加一张与整页相同大小的图像,而不包含在工作表中。