Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/siegfriedchao/latextutorialcssacambridge
This repo hosts the project files for a LaTeX Workshop presented by Daoming Dong and Youchao Wang for CSSA Cambridge
https://github.com/siegfriedchao/latextutorialcssacambridge
cssa-cambridge latex latex-beamer latex-examples latex-template tutorial
Last synced: 3 months ago
JSON representation
This repo hosts the project files for a LaTeX Workshop presented by Daoming Dong and Youchao Wang for CSSA Cambridge
- Host: GitHub
- URL: https://github.com/siegfriedchao/latextutorialcssacambridge
- Owner: Siegfriedchao
- License: other
- Created: 2019-04-12T19:37:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-10-04T15:39:55.000Z (about 2 years ago)
- Last Synced: 2024-10-11T22:01:14.227Z (3 months ago)
- Topics: cssa-cambridge, latex, latex-beamer, latex-examples, latex-template, tutorial
- Language: PostScript
- Homepage:
- Size: 6.36 MB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# LaTeX Tutorial CSSA Cambridge
![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)
This repo hosts the project files for a Latex Workshop presented by Daoming Dong (dd511, Darwin College) and Youchao Wang (yw479, Clare Hall) for CSSA Cambridge, UK, April 20th, 2019. In 2022, hosted solely by Youchao Wang.
## A very important note
A special thanks to Dr Rich Wareham (github: rjw57) who responded to our "add a license request" in no time.
## Repository layout
`LaTeXTutorial.pdf`: The beamer slides used for the tutorial.
You may find all the source codes for the LaTeX presentation slides in the `BeamerSlides` folder. The main `.tex` file is `LaTeXTutorial.tex`. The easiest way to build the project is to use the following code (in your `bash`/`powershell` environment).
```
pdflatex LaTeXTutorial.tex
```![Demo](BeamerSlides/Figures/Demo.gif)
## Useful references
Here is a [University of Cambridge style beamer template](https://github.com/rjw57/cambridge-beamer). The beamer presentation for this tutorial made use of this template.
Here is a [CUED (Engineering Department) PhD thesis template](https://github.com/kks32/phd-thesis-template). A modified thesis template is available in the submodule.
Here is a [one-hour LaTeX YouTube video](https://www.youtube.com/watch?v=VhmkLrOjLsw).
Here are the [Cambridge Computer Lab LaTeX tutorial slides by Dr Markus Kuhn](https://www.cl.cam.ac.uk/teaching/2122/TeX+MATLAB/latex-slides.pdf). Some of the contents in the presentation were referenced from this source.
## Cloning the repository
Since this repo contains `phd-thesis-template` as a submodule, the ideal way of cloning this repository is:
```
git clone --recursive https://github.com/Siegfriedchao/LatexTutorialCSSACambridge.git
```To update recursively, i.e. to pull the updates from the submodules
```
git pull --recurse-submodules
git submodule update --remote --recursive
```Whenever you find yourself pulling an empty submodle folder, do not panic, all you need to do is:
```
git submodule update --init
```## Contributing
Contributions are welcome. Simply create a PR should anything need to be updated or improved.