图像从R markdown推出投影机输出的幻灯片

Ale*_*kin 14 r pandoc rstudio knitr r-markdown

我正在使用R markdown v2创建一个投影仪演示文稿.我的大多数幻灯片都包含由ggplot生成的图像,有时在幻灯片上方有解释性文字.我发现我必须单独调整每张幻灯片上每个元素的大小(即图像,文本等),以确保图像不会从幻灯片的末尾被推出.

这最终变得非常耗时,并且有点失败了R降价的既定目的之一:即,是一种快速的方式来吐出可重复的研究.

我想知道是否有任何方法可以智能地自动调整各种元素的大小?即使看起来不太好,至少事情也不会被推到最后?或者如果没有,也许人们会使用其他方法来确保事情恰好适合不花太多时间.

提前感谢您的想法......

Jac*_*sey 11

这是一个棘手的问题,因为排版很棘手.Rmarkdown在隐藏很多棘手的细节方面做得很好,但是如果你想排版,你需要排版.你会看到,在Latex中它甚至很难.有很多移动部件,例如标题和图例,渲染图像然后包含在一个中间.tex文件中,这样pandoc可以使你的.pdf.如果不要求大量输入(这是您首先想要避免的),那么完全可推广的解决方案是不可能的.

我不认为创建Beamer演示文稿本身与可重复的研究不兼容,但可能是合法的输出,可能与其他报告一起.

但是在推出Latex之前,你应该考虑一个非常简单的解决方法,即只在每张幻灯片上放置一个图形而不是文本.这可靠地适合幻灯片上的图像.然后,您可以使用注释ggplot2添加其他文本.这就是我要做的.

以下Rmarkdown使用一些复杂的嵌入式Latex来做你想做的或多或少的事情.它确实将图像限制在屏幕的下半部分(但是如果您了解更多信息tikz,可以更改这一点),但是当上部文本块增加时,会将图像缩放到剩余的页面大小.当然,它也可以扩展你的所有传说,但你可以在ggplot2中调整它们.

---
title: "Some beamer slides with figures"
author: Somebody
date: November 06, 2015
output:
  beamer_presentation:
    keep_tex: yes
header-includes:
- \usepackage{graphicx}
- \usepackage{tikzpagenodes}
- \usetikzlibrary{calc}
- \usepackage{caption}
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, fig.path="figures/beamer-example/")

library(ggplot2)
```

```{r}
mtcars$gear <- factor(mtcars$gear,levels=c(3,4,5),
   labels=c("3gears","4gears","5gears"))
mtcars$am <- factor(mtcars$am,levels=c(0,1),
   labels=c("Automatic","Manual"))
mtcars$cyl <- factor(mtcars$cyl,levels=c(4,6,8),
   labels=c("4cyl","6cyl","8cyl"))
```
## A default plot

```{r mpg-plot}
qplot(mpg, data=mtcars, geom="density", fill=gear, alpha=I(.5),
   main="Distribution of Gas Milage", xlab="Miles Per Gallon",
   ylab="Density")
```

## test

  - some text which
  - fills vertical 
  - space

\begin{tikzpicture}[overlay,remember picture]
    % Caption
    \node [anchor=south west,outer sep=0pt,inner sep=0pt,text width=\textwidth] (caption) at (current page text area.south west) {%
    };
    % Image
    \path let \p0 = (0,0), \p1 = (caption.north) in
        node [inner sep=0pt,outer sep=0pt,anchor=south] at (\x1,\y1) {%
            \pgfmathsetmacro\imgheight{\y0-\y1-\abovecaptionskip}%
            \includegraphics[height=\imgheight pt,width=\textwidth,keepaspectratio]{figures/beamer-example/mpg-plot-1}%
    };
\end{tikzpicture}

## test2

  - some text which
  - fills vertical 
  - space
  - but squashes
  - the image badly

\begin{tikzpicture}[overlay,remember picture]
    % Caption
    \node [anchor=south west,outer sep=0pt,inner sep=0pt,text width=\textwidth] (caption) at (current page text area.south west) {%
    };
    % Image
    \path let \p0 = (0,0), \p1 = (caption.north) in
        node [inner sep=0pt,outer sep=0pt,anchor=south] at (\x1,\y1) {%
            \pgfmathsetmacro\imgheight{\y0-\y1-\abovecaptionskip}%
            \includegraphics[height=\imgheight pt,width=\textwidth,keepaspectratio]{figures/beamer-example/mpg-plot-1}%
    };
\end{tikzpicture}

## test3
\begin{tikzpicture}[overlay,remember picture]
    % Caption
    \node [anchor=south west,outer sep=0pt,inner sep=0pt,text width=\textwidth] (caption) at (current page text area.south west) {%
    };
    % Image
    \path let \p0 = (0,0), \p1 = (caption.north) in
        node [inner sep=0pt,outer sep=0pt,anchor=south] at (\x1,\y1) {%
            \pgfmathsetmacro\imgheight{\y0-\y1-\abovecaptionskip}%
            \includegraphics[height=\imgheight pt,width=\textwidth,keepaspectratio]{figures/beamer-example/mpg-plot-1}%
    };
\end{tikzpicture}
Run Code Online (Sandbox Code Playgroud)

您可以在以下网址阅读一些血腥的详细信息:https: //tex.stackexchange.com/questions/14512/how-to-define-a-figure-size-so-that-it-consumes-the-rest-of-a-页