web-dev-qa-db-ja.com

rmarkdownプレゼンテーションのために左側に画像を、右側にテキストを含める方法

これはMarkdownでどのように行うことができますか?

Rmarkdownでビーマープレゼンテーションを使用していますが、スライドの左側に画像を、スライドの右側にテキストを表示したいと考えています。

基本的に、これは何をしますか: https://tex.stackexchange.com/questions/165475/figure-next-to-text-in-beamer

しかし、Markdownの場合はラテックスではありません。

6
wolfsatthedoor

multicolパッケージを使用します。

---
title: "Untitled"
author: "Martin"
date: "7/9/2017"
output: 
  beamer_presentation: 
    keep_tex: yes
header-includes:
  - \usepackage{multicol}
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```

## R Markdow

\begin{multicols}{2}

  \null \vfill
  \includegraphics[width=.3\textwidth]{unnamed.png}
  \vfill \null

\columnbreak

  \null \vfill
  \begin{itemize}
    \item Item 1
    \item Item 2
  \end{itemize}
  \vfill \null
\end{multicols}

enter image description here

6

multicolパッケージをbeamerと一緒に使用することはありません。beamerには、列に対して独自のメカニズムがあります。

---
output: 
  beamer_presentation:
    theme: "CambridgeUS"
    keep_tex: true

---

# test

\begin{columns}[onlytextwidth,T]
  \begin{column}{.45\linewidth}
    \includegraphics[width=\linewidth]{example-image-duck}
  \end{column}
  \begin{column}{.45\linewidth}
    test
  \end{column}
\end{columns}

enter image description here