我研究並找到了如何在rmarkdown文檔中創建水印。rmarkdown中的水印
它對基本文本非常有用,但是當你有一個劇情重頁時,它會隱藏在劇情背後。
顯然,這使得人們可以很容易地屏蔽數字並在PDF之外使用它們。
下面是一些清楚地表明問題的代碼。
---
title: "Testing Watermark"
author: "John"
date: "September 18, 2015"
header-includes:
- \usepackage{draftwatermark}
output:
pdf_document
---
This is some basic text.
Note the watermark on this page, and the hidden watermark on the next page.
\newpage
\SetWatermarkText{DRAFT}
```{r echo=FALSE, warning=FALSE, message=FALSE, fig.height=7}
library(ggplot2)
ggplot(mtcars) +
geom_point(aes(mtcars$mpg, mtcars$cyl)) +
facet_wrap(~carb, ncol=1) +
theme_bw()
```
如果有人知道此問題的解決方法,我將不勝感激。
要麼使ggplot背景透明(我已經嘗試過),要麼將水印放到前景並使其透明就可以了,就我而言。
查看cowplot包。 – zx8754
如果你需要自己加蓋的東西,你可以添加版權文本給違規的情節本身,這將保護你免受屏幕上限。 –
[cowplot](https://cran.r-project.org/web/packages/cowplot/index.html) –