diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rwxr-xr-x[-rw-r--r--] | compile.sh | 2 | ||||
| -rw-r--r-- | presentation.html | 73 | ||||
| -rw-r--r-- | presentation.pdf | bin | 0 -> 12369 bytes | |||
| -rw-r--r-- | presentation.pptx | bin | 0 -> 27137 bytes | |||
| -rw-r--r-- | presentation.tex | 81 |
6 files changed, 156 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c671d85 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/latex.out diff --git a/compile.sh b/compile.sh index b1e4199..9eda7ab 100644..100755 --- a/compile.sh +++ b/compile.sh @@ -1 +1 @@ -echo "hello world" +latexrun --latex-cmd xelatex presentation.tex& diff --git a/presentation.html b/presentation.html new file mode 100644 index 0000000..572d321 --- /dev/null +++ b/presentation.html @@ -0,0 +1,73 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <meta name="generator" content="pandoc"> + <meta name="author" content="Mohit Agarwal"> + <title>Paper Planes</title> + <meta name="apple-mobile-web-app-capable" content="yes"> + <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui"> + <link rel="stylesheet" href="https://unpkg.com/reveal.js@^4//dist/reset.css"> + <link rel="stylesheet" href="https://unpkg.com/reveal.js@^4//dist/reveal.css"> + <style> + code{white-space: pre-wrap;} + span.smallcaps{font-variant: small-caps;} + span.underline{text-decoration: underline;} + div.column{display: inline-block; vertical-align: top; width: 50%;} + div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;} + ul.task-list{list-style: none;} + .display.math{display: block; text-align: center; margin: 0.5rem auto;} + </style> + <link rel="stylesheet" href="https://unpkg.com/reveal.js@^4//dist/theme/black.css" id="theme"> +</head> +<body> + <div class="reveal"> + <div class="slides"> + +<section id="title-slide"> + <h1 class="title">Paper Planes</h1> + <p class="author">Mohit Agarwal</p> + <p class="date">Last modified July 2021</p> +</section> + +<section id="why-does-a-plane-fly" class="slide level3 frame"> +<h3>Why does a plane fly?</h3> +<p>Discuss</p> +<ul> +<li><p>Why does a plane fly?</p></li> +<li><p>Why does a paper plane fly?</p></li> +<li><p>What makes a good plane?</p></li> +<li><p>What makes a good paper plane?</p></li> +</ul> +</section> + </div> + </div> + + <script src="https://unpkg.com/reveal.js@^4//dist/reveal.js"></script> + + <!-- reveal.js plugins --> + <script src="https://unpkg.com/reveal.js@^4//plugin/notes/notes.js"></script> + <script src="https://unpkg.com/reveal.js@^4//plugin/search/search.js"></script> + <script src="https://unpkg.com/reveal.js@^4//plugin/zoom/zoom.js"></script> + + <script> + + // Full list of configuration options available at: + // https://revealjs.com/config/ + Reveal.initialize({ + + // Add the current slide number to the URL hash so that reloading the + // page/copying the URL will return you to the same slide + hash: true, + + // reveal.js plugins + plugins: [ + RevealNotes, + RevealSearch, + RevealZoom + ] + }); + </script> + </body> +</html> diff --git a/presentation.pdf b/presentation.pdf Binary files differnew file mode 100644 index 0000000..ac79651 --- /dev/null +++ b/presentation.pdf diff --git a/presentation.pptx b/presentation.pptx Binary files differnew file mode 100644 index 0000000..bc93b21 --- /dev/null +++ b/presentation.pptx diff --git a/presentation.tex b/presentation.tex new file mode 100644 index 0000000..5f557b2 --- /dev/null +++ b/presentation.tex @@ -0,0 +1,81 @@ +%% If you have any problems using this template, please contact the author: %% +%% timhosgood@gmail.com %% + +%% Modified by Mohit Agarwal <mohit.agarwal@sky.com><mohit.uk>[2021] + +\documentclass[aspectratio=169]{beamer} +%\usepackage{charter} +\usepackage{tikz} +\usepackage{graphicx} +\usepackage{amsmath} +\usepackage{amssymb} + +\beamertemplatenavigationsymbolsempty % remove navigation bar + +\setbeamertemplate{headline} + +%% Title slide formatting %% + +\setbeamerfont{subtitle}{size=\tiny} +\setbeamertemplate{title page}{ + \begin{center} + \textit{\Large\inserttitle} + + \vspace{20pt} + \insertauthor + + \vspace{20pt} + \textbf{\small\insertinstitute} + + \small\insertdate + \end{center} +} + + + +%% General slide formatting %% + +\definecolor{oxfordblue}{RGB}{4,30,66} + +\setbeamertemplate{frametitle}{ + \begin{flushleft} + \textit{\textbf{\large\color{oxfordblue}\insertframetitle}} + + \normalsize\color{oxfordblue}\insertframesubtitle + \end{flushleft} +} + + +%% Information (author, title, etc.) %% + +\title[Paper planes]{Paper Planes} % short title, long title +\author{ + Mohit Agarwal +} +\institute{ +} +\date[]{Last modified July 2021} % short date for footer + + +\usefonttheme{serif} + +%% Content of slides %% + +\begin{document} + +\maketitle + +\begin{frame} + \frametitle{Why does a plane fly?} + + Discuss + + \begin{itemize} + \item Why does a plane fly? + \item Why does a paper plane fly? + \item What makes a good plane? + \item What makes a good paper plane? + \end{itemize} + +\end{frame} +\end{document} |
