This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.tex
88 lines (75 loc) · 2.39 KB
/
test.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
\documentclass{beamer}
\usepackage{graphicx}
\author{Andrew Johnson}
\date{\today}
\usetheme{Boadilla}
\useinnertheme{rectangles}
\usepackage{hyperref}
\title{This is the title}
\begin{document}
\frame{\titlepage}
\frame{\tableofcontents}
\begin{frame}
\frametitle{This is the frame title}
Frames can consist of plain text, lists (numbered or not), images.
You can have as long of a frame as you want, but no commands
are used to break up long slides.
Math font like $x=y$ is captured natively.
\end{frame}
\begin{frame}
\frametitle{Another frame}
Frames are broken up by empty lines. Contents of a paragraph
can run over multiple lines. If the frame title does not
appear directly above the frame, or at least attached to the block,
the title will not be applied to the desired frame.
Percentages should be escaped like \% both to avoid expansion from the
C-parser and then to avoid creating a comment in TeX.
\end{frame}
\begin{frame}
\frametitle{Empty frame}
\end{frame}
\begin{frame}
This frame has no title.
Sad frame.
\end{frame}
\section{New section}
\frame{\sectionpage}
\begin{frame}
\frametitle{Lists}
\begin{itemize}
\item{Only single level lists are supported for now}
\item{You can mix symbols and they will be treated as the same bulletted list}
\end{itemize}
\begin{enumerate}
\item{Switching to numbers will terminate the list and switch to enumerations}
\item{Just like markdown, number doesn't matter, just that it's a numeric entry followed by a period and a space}
\item{This is really the third item. The next line is an edge case}
\item{a}
\end{enumerate}
\end{frame}
\begin{frame}
\frametitle{Long lines}
\begin{itemize}
\item{The contents of a single line are passed to a list item}
\item{Line continuation is not supported as each line is treated separately from previous and next lines}
\item{This hopefully discourages very long list items}
\end{itemize}
\end{frame}
\subsection{Subsection}
\begin{frame}
\frametitle{Images too!}
\begin{figure}
\includegraphics[width=0.8\textwidth,height=0.6\textheight,keepaspectratio]{assets/is_it_worth_the_time.png}
\caption{XKCD 1205 (CC-BY NC 2.5)}
\label{figure0}
Original link: \url{https://xkcd.com/1205/}.
License: \url{https://creativecommons.org/licenses/by-nc/2.5/}
\end{figure}
\end{frame}
\section{Conclusion}
\begin{frame}
\frametitle{Conclusion}
This is a pretty neat tool (I think so).
It has some limits, and there is more to add.
\end{frame}
\end{document}