Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/travitch/uw-beamer-template
This is a LaTeX Beamer template for the University of Wisconsin
https://github.com/travitch/uw-beamer-template
Last synced: 11 days ago
JSON representation
This is a LaTeX Beamer template for the University of Wisconsin
- Host: GitHub
- URL: https://github.com/travitch/uw-beamer-template
- Owner: travitch
- Created: 2011-04-17T16:36:55.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-01-18T23:43:59.000Z (almost 12 years ago)
- Last Synced: 2024-12-09T21:36:23.174Z (27 days ago)
- Homepage:
- Size: 811 KB
- Stars: 13
- Watchers: 3
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- latex-templates - travitch/<br>uw-beamer-template - beamer-template?style=flat-square)<br/>![14](https://img.shields.io/github/forks/travitch/uw-beamer-template?style=flat-square)<br/>![2013-01-18](https://img.shields.io/github/last-commit/travitch/uw-beamer-template?style=flat-square) | This is a LaTeX Beamer template for the University of Wisconsin | (Popular & New LaTeX Templates / Presentation/Slides)
README
This is a Beamer template set up to look pretty decent and have a
University of Wisconsin theme. It is, of course, better than the
existing Powerpoint templates.The easiest way to install this theme is to just dump the *.sty files
into the same directory as your tex source.A minimal Beamer presentation using this template looks something like
the following:\documentclass{beamer}
\usetheme{Wisconsin}
\begin{document}
%% Slides
\end{document}The theme currently has two options:
* nav - This option includes a navigation bar in the
lower-right corner of each slide
* white - This option changes the color scheme to black-on-white
for projectors with poor color balance
* nologo - Suppress the crest in frame titles
* compactlogo - Compact title logo (takes less vertical space)Options are specified as:
\usetheme[white]{Wisconsin}Other suggested packages:
* tikz (pgf, for diagrams)
* listings (for source code listings)
* fontspec (if using xetex)Author: Tristan Ravitch ([email protected])
Initial Release: June 2009
Public DomainExtra
-----Here is a very handy snippet of TeX to stick at
the beginning of your presentation (after \begin{document}):\newcommand*{\alphabet}{ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz}
\newlength{\highlightheight}
\newlength{\highlightdepth}
\newlength{\highlightmargin}
\setlength{\highlightmargin}{2pt}
\settoheight{\highlightheight}{\alphabet}
\settodepth{\highlightdepth}{\alphabet}
\addtolength{\highlightheight}{\highlightmargin}
\addtolength{\highlightdepth}{\highlightmargin}
\addtolength{\highlightheight}{\highlightdepth}
\newcommand*{\Highlight}{\rlap{\textcolor{HighlightBackground}{\rule[-\highlightdepth]{\linewidth}{\highlightheight}}}}HighlightBackground is defined by the Wisconsin theme. This
snippet allows you to include source code listings in the
following way:\lstinputlisting[language=C,moredelim={**[il][\Highlight]{@}}]{file.c}
Note the moredelim option; with this option and the preceeding
declarations, prefixing a line in file.c will highlight the line.