-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6edbd87
Showing
7 changed files
with
574 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2021 Ricardo Barros Lourenco. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
\documentclass[12pt]{beamer} | ||
|
||
% Specify theme | ||
\usetheme{McMasterU} | ||
|
||
% Start Changes by Ricardo | ||
\setbeamercolor{section in head/foot}{fg=white,bg=black} | ||
|
||
\makeatletter | ||
\setbeamertemplate{headline}{% | ||
\begin{beamercolorbox}[ht=2.25ex,dp=3.75ex]{section in head/foot} | ||
\insertnavigation{\paperwidth} | ||
\end{beamercolorbox}% | ||
}% | ||
\makeatother | ||
% End Changes by Ricardo | ||
|
||
%\setbeamertemplate{footline}[frame number]{} % Uncomment this line if you want to remove the footer from each slide (and replace it with just the slide number (X/Y) in the bottom right of each slide. | ||
|
||
%===============================================================% | ||
% BEGIN YOUR PRESENTATION HERE % | ||
%===============================================================% | ||
|
||
% Title and author information | ||
\title[Short title]{Your Presentation Title} | ||
\author{Your Name} | ||
\institute[]{McMaster University} | ||
\date{\today} | ||
|
||
|
||
% \usepackage[sfmath]{kpfonts} | ||
% \renewcommand*\familydefault{\sfdefault} | ||
|
||
%\setbeamerfont{frametitle}{shape=\scshape} | ||
|
||
%===============================================================% | ||
\begin{document} | ||
%===============================================================% | ||
|
||
\maketitle | ||
|
||
|
||
|
||
%===============================================================% | ||
\section{Lists} | ||
%===============================================================% | ||
\subsection{} | ||
\begin{frame}{Itemized List} | ||
|
||
Itemized lists are punctuated by little shields | ||
|
||
\begin{itemize} | ||
\item Item | ||
\item Item | ||
\begin{itemize} | ||
\item Sub-item | ||
\item Sub-item | ||
\end{itemize} | ||
\item Item | ||
\end{itemize} | ||
|
||
\end{frame} | ||
|
||
|
||
|
||
\begin{frame}{Enumerate} | ||
|
||
\begin{enumerate} | ||
\item Item | ||
\item Item | ||
\begin{enumerate} | ||
\item Sub-item | ||
\end{enumerate} | ||
\end{enumerate} | ||
|
||
\end{frame} | ||
|
||
|
||
|
||
%===============================================================% | ||
\section{Animations} | ||
%===============================================================% | ||
\subsection{} | ||
\begin{frame}{Slide animation} | ||
|
||
Sometimes you want to hide later text/elements of a particular slide to keep the focus on the early part of the slide. | ||
|
||
\bigskip | ||
|
||
\onslide<2>{By having the text shaded out (and not completely missing), your audience can see that you do have some more information that will come shortly.} | ||
|
||
\end{frame} | ||
|
||
|
||
|
||
%===============================================================% | ||
\section{Blocks} | ||
%===============================================================% | ||
\subsection{} | ||
\begin{frame}{Blocks} | ||
|
||
\begin{block}{Regular Block} | ||
Text goes here | ||
\end{block} | ||
|
||
\begin{alertblock}{Alert Block} | ||
Stands out a bit more | ||
\end{alertblock} | ||
|
||
\begin{exampleblock}{Example Block} | ||
Also stands out $y=\beta x+ \varepsilon$ | ||
\end{exampleblock} | ||
|
||
\end{frame} | ||
|
||
|
||
|
||
%===============================================================% | ||
\appendix | ||
%===============================================================% | ||
|
||
{\BackgroundShaded | ||
\begin{frame} | ||
% BLANK FRAME AT THE END | ||
\end{frame} | ||
} | ||
|
||
|
||
|
||
%===============================================================% | ||
\section{First appendix section} | ||
%===============================================================% | ||
|
||
\begin{frame}{Appendix sample} | ||
|
||
Note that this slide doesnt count towards the total slides shown in the regular presentation | ||
|
||
\end{frame} | ||
|
||
|
||
|
||
%===============================================================% | ||
\end{document} | ||
%===============================================================% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Unofficial-McMasterU-Beamer-Theme | ||
Files to theme your LaTeX Beamer presentation to match the McMaster University brand guidelines. | ||
|
||
*Attention*: This theme is unofficial. It is in no way endorsed by McMaster University. | ||
|
||
## Contact details ## | ||
|
||
Created by Ricardo B Lourenco (2021), based on previous work by @michaelkirker . Email: <[email protected]> | ||
|
||
## Repository structure ## | ||
|
||
* /graphics/ | ||
* Folder containing the graphical images used in the slides. | ||
* beamerthemeMcMasterU.sty | ||
* Beamer theme style file. | ||
* McMasterU.tex | ||
* Template, with some possible usages of this Beamer-derived template. | ||
* Example.pdf | ||
* Rendered McMasterU.tex example. | ||
|
||
## Usage ## | ||
When using [Overleaf](https://www.overleaf.com), you may fork this project on github, load it to your overleaf account, and start editing the McMasterU.tex file right out of the bat. | ||
|
||
More experienced users should refer to [BEAMER project](https://github.com/josephwright/beamer), for more detailed usage. This project is set for pdflatex rendering. | ||
|
||
## License | ||
|
||
Note that this theme is under a MIT license, is unofficial and not endorsed by McMaster University. I won't be providing support, but feel free to open issues if you feel needing to. | ||
|
||
## Acknowledgements | ||
This is an open source derived work, and the author acknowledges the contribution of work done by @josephwright and the [BEAMER developers](https://github.com/josephwright/beamer), as well as @michaelkirker . Thank you :) |
Oops, something went wrong.