summaryrefslogtreecommitdiff
path: root/example.tex
blob: 50c366ce93951ddd9755213a554988727f34ba68 (plain)
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
89
90
91
92
93
94
95
96
97
% Creating a simple Title Page in Beamer
\documentclass[aspectratio=169]{beamer}
% Bibliography and graphics support
\usepackage{hyperref}
\usepackage{fontawesome5}
\usepackage{graphicx}
\usepackage{url}
\usepackage[
backend=biber,
style=alphabetic,
sorting=ynt
]{biblatex}
\addbibresource{references.bib}
% Testing the custom theme
\usetheme{Optics}
% Title page details:
\title{Example Presentation for Checking the Template}
\author{Admin}
\date{\today}
\location{Online, Optics-Design.com} % Set presentation location
\email{admin@optics-design.com} % Replace with your actual email

\begin{document}

% Title page frame
\begin{frame}
    \titlepage
\end{frame}

\begin{frame}{Contents}
    \tableofcontents
\end{frame}

% Presentation structure
\section{Basic Information}
\subsection{Motivation}
\begin{frame}{\insertsubsectionhead}
    \begin{itemize}
        \item I needed a way to make presentations without Microsoft PowerPoint.
        \item The most robust alternative I found for myself is the \LaTeX~beamer.
        \item For me the \LaTeX~beamer:
            \begin{itemize}
                \item Provides a simple way to have consistent style across all my slides \& presentations
                \item Allows me to have some convenient features like hyperlinks and references automatically
                \item Makes me independent of the commercial software
            \end{itemize}
    \end{itemize}
\end{frame}

\subsection{Structure}
\begin{frame}{\insertsubsectionhead}
    \begin{itemize}
        \item The template is fully contained in beamerthemeOptics.sty
        \item There are comments, so I hope it is self-explanatory.\par
            \descr{The template also contains some custom commands and \textcolor{accent}{different} \textcolor{primary}{colors}, which I use}
    \end{itemize}
\end{frame}


\section{Examples}
\subsection{An Image \& a Reference}
\begin{frame}{\insertsubsectionhead}
            \begin{figure}
                \centering
                \includegraphics[width=0.4\textwidth]{files/redsquare.png}
                \caption{A red square.~\cite{exampleref1}}
            \end{figure}
\end{frame}
\subsection{A Slide with Text \& Images}
\begin{frame}{\insertsubsectionhead}
    \begin{columns}[T]
        \begin{column}{0.5\textwidth}
            \begin{itemize}
                \item Just a simple demonstration of how to have text \& images on the same slide.
                \item I just use columns
                \item Obviously you have more freedom in something like PowerPoint, but I don't feel like I lose something by making my slides this way
            \end{itemize}
        \end{column}
        \begin{column}{0.5\textwidth}
            \begin{figure}
                \centering
                \includegraphics[width=0.3\textwidth]{files/greentriangle.png}
                \caption{A green triangle.~\cite{exampleref2}}
                \centering
                \includegraphics[width=0.3\textwidth]{files/blueellipse.png}
                \caption{A blue ellipse~\cite{exampleref3}}
            \end{figure}
        \end{column}
    \end{columns}
\end{frame}


\section*{Support Material}
\begin{frame}[allowframebreaks]{References}
\printbibliography
\end{frame}
\end{document}
Back to https://optics-design.com