我正在尝试将水印图像添加到我的目录页面的背景中。我尝试了以下问题的组合:
How to Obtain A Watermark Image
Add an Image In The Title Page
以下是我的example.Rmd文件的内容。我使用RStudio中的Knit按钮将其转换为.pdf。
---
title: <center> <h1>Example Report</h1> </center>
header-includes:
- \usepackage{booktabs}
- \usepackage{sectsty} \sectionfont{\centering}
- \renewcommand{\contentsname}{}\vspace{-2cm}
mainfont: Arial
output:
pdf_document:
latex_engine: xelatex
sansfont: Arial
fig_crop: false
toc: true
classoption: landscape
fontsize: {10}
geometry: margin=0.20in
---
我尝试过使用下面的代码将图片添加为帖子标题,但是在标题之后和TOC之前还有很大的空间:
---
title: <center> <h1>Example Report</h1> </center>
header-includes:
- \usepackage{titling}
- \pretitle{\begin{center}}
- \posttitle{\end{center}\LARGE\includegraphics[width=12cm]{my_graphic.png}\\[\bigskipamount]}
- \usepackage{booktabs}
- \usepackage{sectsty} \sectionfont{\centering}
- \renewcommand{\contentsname}{}\vspace{-2cm}
mainfont: Arial
output:
pdf_document:
latex_engine: xelatex
sansfont: Arial
fig_crop: false
toc: true
classoption: landscape
fontsize: {10}
geometry: margin=0.20in
---
我如何请居中,创建水印并将图像放在TOC后面而不是在前面?
非常感谢任何帮助。