All Projects → xiehao → cuzbeamer

xiehao / cuzbeamer

Licence: other
A LaTeX beamer template to facilitate making slides for CUZ courses.

Programming Languages

TeX
3793 projects

Projects that are alternatives of or similar to cuzbeamer

latex templates
No description or website provided.
Stars: ✭ 13 (-50%)
Mutual labels:  latex-template, beamer-template
stanford-beamer-presentation
This is an unofficial LaTeX Beamer presentation template for Stanford University.
Stars: ✭ 47 (+80.77%)
Mutual labels:  latex-template, beamer-template
latex-beamer-teamplates
My LaTeX Beamer Templates for Daily Presentation and Documentation.
Stars: ✭ 14 (-46.15%)
Mutual labels:  latex-template, beamer-template
uni-stuttgart-beamer-template
Unofficial LaTeX template for Beamer presentations at the University of Stuttgart, Germany
Stars: ✭ 16 (-38.46%)
Mutual labels:  latex-template, beamer-template
dithesis
Thesis class for undergraduate theses at the University of Athens
Stars: ✭ 31 (+19.23%)
Mutual labels:  latex-template
langscibook
LaTeX class and additions for typesetting books
Stars: ✭ 31 (+19.23%)
Mutual labels:  latex-template
xdupgtp
西安电子科技大学研究生学位论文开题报告表XeLaTeX模板
Stars: ✭ 22 (-15.38%)
Mutual labels:  latex-template
NKThesis
南开大学硕士毕业论文/博士论文模板 (Latex Template for Nankai University)
Stars: ✭ 74 (+184.62%)
Mutual labels:  latex-template
TJUThesisLatexTemplate
LaTeX templates for TJU graduate thesis. Originally forked from code.google.com/p/tjuthesis
Stars: ✭ 77 (+196.15%)
Mutual labels:  latex-template
thesis template
A comprehensive LaTeX template with examples for theses, books and more, employing the 'latest and greatest' (UTF8, glossaries, fonts, ...). The PDF artifact is built using CI/CD.
Stars: ✭ 121 (+365.38%)
Mutual labels:  latex-template
elteikthesis
ELTE IK szakdolgozat és diplomamunka sablon.
Stars: ✭ 32 (+23.08%)
Mutual labels:  latex-template
publicacoes
Minhas publicações no LaTex
Stars: ✭ 50 (+92.31%)
Mutual labels:  latex-template
HNUThesisTemplate
湖南大学本科生毕业论文LaTeX模板
Stars: ✭ 31 (+19.23%)
Mutual labels:  latex-template
HKUST PhD MPhil thesis Latex
The Hong Kong University of Science and Technology PhD/MPhil thesis latex template based on the latest official sample (http://pg.ust.hk/guides_n_forms/students/thesis_sample_page_phd.pdf)
Stars: ✭ 28 (+7.69%)
Mutual labels:  latex-template
praca inzynierska latex
Szablon pracy inżynierskiej / magisterskiej na wydziale Informatyki i Telekomunikacji Politechniki Wrocławskiej
Stars: ✭ 19 (-26.92%)
Mutual labels:  latex-template
Introduction-to-LaTeX
Introductory notes and templates for LaTeX
Stars: ✭ 23 (-11.54%)
Mutual labels:  latex-template
latex-thesis-template
A LaTeX template for humans.
Stars: ✭ 77 (+196.15%)
Mutual labels:  latex-template
beamerthemeuconn
LaTeX Beamer themes for the University of Connecticut
Stars: ✭ 20 (-23.08%)
Mutual labels:  latex-template
SPhdThesis
A Latex template for writing PhD Thesis
Stars: ✭ 22 (-15.38%)
Mutual labels:  latex-template
homework-template
Typeset assignments and problem sets using LaTeX; typographically optimized for online submission
Stars: ✭ 24 (-7.69%)
Mutual labels:  latex-template

cuzbeamer

This is a LaTeX template based on the metropolis beamer theme, and customized for the convenience of making slides for Communication University of Zhejiang (CUZ).

Related Repo

  • cuzthesis: a LaTeX thesis template for CUZ students.

Project Structure

The structure of this project is shown and explained below:

CUZbeamer
├── cuzbeamer
│   ├── cuzbeamer.cls
│   ├── images
│   │   ├── cuzlogo-brown.pdf
│   │   ├── cuzlogo-dark.pdf
│   │   ├── cuzlogo-light.pdf
│   │   └── cuzlogo.pdf
│   └── tikz-uml.sty
├── demo.pdf
├── demo.tex
├── initialization.tex
├── README.md
└── references.bib
  • cuzbeamer/: a folder containing the class file cuzbeamer.cls and the package tikz-uml.sty (written by Nicolas Kielbasiewicz), also with the images/ folder (with school logos in it), this folder should be copied/moved to a default path storing custom tex templates, before using this template (see the Installation part);
  • initialization.tex: common info imported by a series of .tex files, the content includes: author's name and e-mail, title, subtitle and date, users should assign these variables beforehand;
  • demo.tex: the demo source file, showing how to use this cuzbeamer class to make a proper set of slides;
  • references.bib (optional): the bib file used for bibtex to import references.

Users are supposed to add new .tex files at the same level of demo.tex, and specify their own common info in initialization.tex and necessary reference items in references.bib file if needed; while the file structure is not suggested to be modified, unless you know exactly what you are doing.

Prerequests

To use this class:

  • A LaTeX environment is required (TeX Live is highly recommended);

  • The Ubuntu font is required to show beautiful non-CJK characters;

  • [Optional] If codes are to be shown, the minted package is used (the minted option should be switched on, see below), which then requires a Python 3 environment, with the pygments installed:

    > pip install pygments

Installation

Users are supposed to copy/move the cuzbeamer/ folder to the path where the custom latex templates located, which could be obtained by:

> kpsewhich --var-value=TEXMFHOME

eg (the tex/latex folders should be created manually if they do not exist):

  • For Manjaro Linux: ~/texmf/tex/latex
  • For macOS: ~/Library/texmf/tex/latex

Usage

Compilation

Due to some reasons of metropolis beamer theme, the pdflatex engine is not supported, thus the xelatex or lualatex is recommended. Besides, if minted option is on, the -shell-escape option is required when compiling, e.g.:

> xelatex -shell-escape -synctex=1 -interaction=nonstopmode -file-line-error demo.tex

Options

When importing this cuzbeamer class in the main .tex files, several options are allowed to be set:

  • [colortheme=light/dark]: a string option, set the background color of metropolis, dark by default, or light if desired;
  • [pagestyle=normal/wide/wider]: a string option, set the aspectratio of slide pages, normal for 5:4, wide for 16:10 (the default), or wider for 16:9;
  • [titlealignment=left/center/right]: a string option, set the alignment of elements (e.g. title, subtitle, author, date, etc.) in the title page, left (the default), center or right;
  • [minted=true/false]: a boolean option, set for whether to include codes in the slides, true by default;
  • [algorithm=true/false]: a boolean option, set for whether to use algorithm environments, false by default;
  • [pgfplots=true/false]: a boolean option, set for whether to use pgfplots package to plot figures, false by default.

License

This class is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. This means that if you change the theme and re-distribute it, you must retain the copyright notice header and license it under the same CC-BY-SA license. This does not affect the presentation that you create with the class.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].