From 48694cec5ea35fb267dc668c3dee1cc0ee8c174e Mon Sep 17 00:00:00 2001 From: Mohit Agarwal Date: Fri, 2 Jul 2021 19:03:53 +0100 Subject: Creation of presentation --- .gitignore | 1 + compile.sh | 2 +- presentation.html | 73 ++++++++++++++++++++++++++++++++++++++++++++++++ presentation.pdf | Bin 0 -> 12369 bytes presentation.pptx | Bin 0 -> 27137 bytes presentation.tex | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 156 insertions(+), 1 deletion(-) create mode 100644 .gitignore mode change 100644 => 100755 compile.sh create mode 100644 presentation.html create mode 100644 presentation.pdf create mode 100644 presentation.pptx create mode 100644 presentation.tex 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 old mode 100644 new mode 100755 index b1e4199..9eda7ab --- 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 @@ + + + + + + + Paper Planes + + + + + + + + + +
+
+ +
+

Paper Planes

+

Mohit Agarwal

+

Last modified July 2021

+
+ +
+

Why does a plane fly?

+

Discuss

+
    +
  • Why does a plane fly?

  • +
  • Why does a paper plane fly?

  • +
  • What makes a good plane?

  • +
  • What makes a good paper plane?

  • +
+
+
+
+ + + + + + + + + + + diff --git a/presentation.pdf b/presentation.pdf new file mode 100644 index 0000000..ac79651 Binary files /dev/null and b/presentation.pdf differ diff --git a/presentation.pptx b/presentation.pptx new file mode 100644 index 0000000..bc93b21 Binary files /dev/null and b/presentation.pptx differ 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 [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} -- cgit v1.2.3