2016-03-29 10 views
3

ioslidesのマークダウンでフルサイズの光沢のあるアプリを持つ方法を理解しようとしています。私はほとんど何かをしていますが、ちょっとしたアドホックです。 I(私はdivpxを使用して)また、私は、より大きな解像度の画面上でプレゼンテーションを表示したときに、それが再現する自信がないよ?:ioslidesのマークダウンプレゼンテーションスライドにフルサイズの光沢のあるアプリ

--- 
title: "My Title" 
author: "My Name" 
date: "29 March 2016" 
runtime: shiny 
output: 
    ioslides_presentation 
--- 
## 

<div style="margin-left:-50px; margin-top:-50px; width:80%; height:100%"> 
```{r, echo=FALSE, message=FALSE, fig.width=8} 
inputPanel(
    selectInput("n_breaks", label = "Number of bins:", 
       choices = c(10, 20, 35, 50), selected = 20), 

    sliderInput("bw_adjust", label = "Bandwidth adjustment:", 
       min = 0.2, max = 2, value = 1, step = 0.2) 
) 

renderPlot({ 
    hist(faithful$eruptions, probability = TRUE, breaks = as.numeric(input$n_breaks), 
     xlab = "Duration (minutes)", main = "Geyser eruption duration") 

    dens <- density(faithful$eruptions, adjust = input$bw_adjust) 
    lines(dens, col = "blue") 
}) 
``` 
</div> 

寄付:種類の

enter image description here

(必要に応じて)大きなマージンスペースの一部を使い切っても、スライド全体をカバーするわけではありません。

答えて

3

div<>の値で遊んでみてください。 100%以上になり、ピクセル単位でサイズを設定することもできます(例: <div style="margin-left:-120px; margin-top:-50px; width:900px">

関連する問題