3

rpres(不是remarkdown,例如ioslides_presentation)在两列布局中有很大的优势:***。该功能在 Firefox 和 Chrome 中运行良好。例如,下面的代码

First Slide
========================================================
For more details on authoring R presentations please visit 
<https://support.rstudio.com/hc/en-us/articles/200486468>.

- Bullet 1
- Bullet 2
- Bullet 3

***

```{r, fig.height=5}
plot(cars)
```

将创建一个 html 文件。在 Chrome中的 Chrome54 中看起来很棒 ;但在 IE11 中,布局看起来很奇怪。在 IE 中

我的平台是Win10。

> sessionInfo()

R version 3.3.2 (2016-10-31)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)

locale:
[1] LC_COLLATE=Chinese (Simplified)_China.936  LC_CTYPE=Chinese (Simplified)_China.936   
[3] LC_MONETARY=Chinese (Simplified)_China.936 LC_NUMERIC=C                              
[5] LC_TIME=Chinese (Simplified)_China.936    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
[1] R6_2.2.0     pbdZMQ_0.2-4 tools_3.3.2  knitr_1.15  

有人可以建议如何改进它(修改css左右)?谢谢!</p>

4

1 回答 1

2

好吧,我想我找到了解决方法。使用以下代码创建一个 .css 文件:

.reveal .slides section .column { 
  position: absolute; 
  width: 48%; 
  top: 2.5em; 
  bottom: 0; 
  margin: auto; 
 } 

并将其包含在头部 YAML 中。代码来自默认的 css。我将“位置”从“固定”更改为“绝对”。

于 2016-11-16T01:34:20.640 回答