当我在工作中运行以下ioslides_presentation w/ runtime: shiny
时(Windows 7企业版)
---
title: "Untitled"
author: "Me"
date: "Thursday, February 05, 2015"
output:
ioslides_presentation:
logo: images/rstudio-ball.png
runtime: shiny
---
## Slide with Plot
```{r, echo=FALSE}
plot(cars)
```
我得到一个"无效的反向引用"尝试在演示文稿中包含徽标或绘图时出错。但是,如果我删除runtime: shiny
,则演示文稿会按预期编译,同时包含徽标和图表。 (有关错误的更多详细信息,请参阅this question。)
比较RStudio提供的编译指令列表我认为错误是由我的雇主的IT限制引起的。具体来说,我注意到删除runtime: shiny
时,徽标会从
- 变量" logo = images \ rstudio-ball.png"
但是当使用runtime: shiny
时,徽标会从
- 变量 "标志= C:\用户\杰森\应用程序数据\本地\ TEMP \ RtmpKa4VJH \ file385c176c9bb_files / logo.png
如果我转到文件夹C:\Users\Jason\AppData\Local\Temp\RtmpKa4VJH\file385c176c9bb_files
,徽标和演示文稿中创建的任何图表确实存在,但无法从此文件夹中检索并包含在演示文稿中。
问题:如何在编辑完成的闪亮演示文稿之前更改RStudio用于保存图像的默认文件夹?
感谢您的帮助。