Skip to content

Instantly share code, notes, and snippets.

@gidden
Created March 8, 2015 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gidden/46651818155f4267a016 to your computer and use it in GitHub Desktop.
Save gidden/46651818155f4267a016 to your computer and use it in GitHub Desktop.
Org-mode Beamer Hello World

A Presentation

File Edit Options Buffers Tools Org Tbl Help

1 Introduction

1.1 Overview

This presentation provides an illustration of some of the capabilities of the Beamer export in org mode:

  1. simple slides (this one),
  2. slides with special blocks,
  3. multi-column slides and
  4. the use of Babel for literate programming.

This file should be exported using M-x org-export-dispatch specifying l for \LaTeX{} and then P, for instance, to generate the PDF.

1.2 Another slide

Just a test

% Created 2015-03-07 Sat 19:41
\documentclass[presentation,smaller]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fixltx2e}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{textcomp}
\usepackage{marvosym}
\usepackage{wasysym}
\usepackage{amssymb}
\usepackage{hyperref}
\tolerance=1000
\author{Matthew J. Gidden}
\date{2015-03-26}
\title{A Presentation}
\hypersetup{
pdfkeywords={},
pdfsubject={},
pdfcreator={Emacs 23.4.1 (Org mode 8.2.10)}}
\begin{document}
\maketitle
\tableofcontents
\section{Introduction}
\label{sec-1}
\subsection{Overview}
\label{sec-1-1}
This presentation provides an illustration of some of the capabilities of the \textbf{Beamer} export in \texttt{org} mode:
\begin{enumerate}
\item simple slides (this one),
\item slides with special blocks,
\item multi-column slides and
\item the use of \textbf{Babel} for literate programming.
\end{enumerate}
This file should be exported using \texttt{M-x org-export-dispatch} specifying \texttt{l} for \LaTeX{} and then \texttt{P}, for instance, to generate the PDF.
\subsection{Another slide}
\label{sec-1-2}
Just a test
% Emacs 23.4.1 (Org mode 8.2.10)
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment