就在几周前,我在创建RMarkdown文件时能够在RStudio中成功执行以下操作。
Rmarkdown文件(顶部YAML部分):
output:
ioslides_presentation:
css: ../css/slide_style.css
logo: ../css/logos/approved.Logos.016.jpg
self_contained: yes
然后,这将获取css文件slide_style.css
,其中包含以下内容:
/* Below is the code to drop in a nice image for the background OUTSIDE of the slides. */
/* line 58, ../scss/default.scss */
/* line 236 of ../theme/../default.css */
body {
background-image: url('../css/backgrounds/outside_slides.png');
}
/* Below is the code to drop in a nice image for the slide backgrounds, or "backdrop". */
/* line 170, ../scss/default.scss */
/* line 320 of ../theme/../default.css */
slides > slide.backdrop {
background-image: url('../css/backgrounds/inside_slide.png');
}
这曾经工作过,inside_slide.png
文件将作为背景图片嵌入(重复)在幻灯片本身中,outside_slides.png
文件将同样嵌入,但围绕外边缘中央幻灯片。
css文件的其余部分工作得很好。我有很好的效果,恕我直言,改变标题所在的位置,允许标题级别,更改表格的外观等等。所有这些仍然正常工作。图像本身没有被嵌入。显而易见,outside_slides.png
和inside_slides.png
图片不再在生成的.html
文件中呈现。
所以,你可能会猜到文件本身就是问题所在。我检查了文件路径,一切都很好。事实上,我故意弄乱它,以确保它会失败。当路径错误时,它失败了。
也许这些文件没有我认为的文件?不,我可以使用预览或其他任何方式检查文件,它们看起来很好。我还指出了其他图像文件,这些文件也不能被视为背景。我尝试使用.png
,.jpg
和.gif
。没有运气。
也许有些东西覆盖了这个身体标签?我试过像background-color: orange;
那样简单的东西,但效果很好。我改变了不透明度,这很有效。我还尝试将!important
添加到css表中。这没有用。 (意思是,它适用于背景色,但不适用于背景图像。)
就好像有些东西被忽略了,background-image
根本不起作用。
我一直在使用RStudio进行大部分测试。 RStudio中生成的演示文稿和通过Web浏览器打开的生成的.html
都不会显示图像。
有没有人知道发生了什么?
这是我的会话信息:
> sessionInfo()
R version 3.1.3 (2015-03-09)
Platform: x86_64-apple-darwin13.4.0 (64-bit)
Running under: OS X 10.10.4 (Yosemite)
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] digest_0.6.8 htmltools_0.2.6 rmarkdown_0.7.3 rsconnect_0.3.79 tools_3.1.3 yaml_2.1.13
答案 0 :(得分:5)
由于你没有提供任何代码,我可以给你一个如何调试它的提示:启动开发人员工具,在大多数浏览器中它将是 F12 。现在
JRDocxExporter export = new JRDocxExporter();
export.setExporterInput(new SimpleExporterInput(jasperPrint));
export.setExporterOutput(new SimpleOutputStreamExporterOutput(new File("test.docx")));
SimpleDocxReportConfiguration config = new SimpleDocxReportConfiguration();
//config.setFlexibleRowHeight(true); //Set desired configuration
export.setConfiguration(config);
export.exportReport();
设置background-image
(将显示为也许你可以通过这种方式证明/反驳你的#34;覆盖" - 假设。
祝你好运!