LoginSignup
1
0

More than 5 years have passed since last update.

Inserting images of a given text width in Pandoc Markdown to Beamer

Posted at

I want to include images in my beamer slides via Pandoc's conversion from Markdown sometimes without using the regular ![]() image inclusions (which introduces Figures).

This is accomplished by using a LaTeX region with \includegraphics, with the width attribute set to some multiplier applied to \textwidth, like so:

## Some title

Some text

\begin{center}
    \includegraphics[width=0.3\textwidth]{./test.jpeg}
\end{center}

Example output:

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0