Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deepmancer/latex-presentation-template
Effortlessly create professional presentation slides with Beamer and LaTeX.
https://github.com/deepmancer/latex-presentation-template
academic-presentation academic-project beamer beamer-template latex latex-beamer latex-template presentation-slides slides template template-project
Last synced: 10 days ago
JSON representation
Effortlessly create professional presentation slides with Beamer and LaTeX.
- Host: GitHub
- URL: https://github.com/deepmancer/latex-presentation-template
- Owner: deepmancer
- License: mit
- Created: 2024-12-09T11:40:43.000Z (13 days ago)
- Default Branch: main
- Last Pushed: 2024-12-10T17:40:22.000Z (12 days ago)
- Last Synced: 2024-12-10T18:44:56.282Z (12 days ago)
- Topics: academic-presentation, academic-project, beamer, beamer-template, latex, latex-beamer, latex-template, presentation-slides, slides, template, template-project
- Language: TeX
- Homepage: https://deepmancer.github.io/latex-presentation-template/
- Size: 2.37 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# π LaTeX Presentation Template
Create beautiful, mathematically-rich presentations with ease using LaTeX!
Welcome to the **LaTeX Presentation Template**! π This repository provides a professional, user-friendly template for creating stunning presentations with LaTeX and Beamer. Whether you're an academic, researcher, or professional, this template is tailored to help you create visually appealing and technically rich presentations effortlessly.
---
## π Quick Links
| [Source Code](https://github.com/deepmancer/latex-presentation-template) | [Live Preview](https://deepmancer.github.io/latex-presentation-template/) |
---
## πΌοΈ Snapshots
Preview some slides created with this template:
| **Slide Section** | **Preview** |
|---------------------|--------------------------------------------------------------------------|
| **Title Page** | ![Title Page](https://raw.githubusercontent.com/deepmancer/latex-presentation-template/main/assets/samples/titlepage.png) |
| **Content Slide** | ![Content Slide](https://raw.githubusercontent.com/deepmancer/latex-presentation-template/main/assets/samples/content.png) |
| **References Slide**| ![References Slide](https://raw.githubusercontent.com/deepmancer/latex-presentation-template/main/assets/samples/references.png) |---
## β¨ Why Choose This Template?
- **π¨ Sleek and Modern Design**: Impress your audience with clean, professional visuals.
- **β‘ Time-Saving Setup**: Pre-configured settings and ready-to-use slides.
- **π’ Math-Ready**: Seamless support for equations, symbols, and scientific notations.
- **π Integrated Bibliography**: Easily manage references with BibTeX.
- **π οΈ Fully Customizable**: Tailor colors, fonts, layouts, and more to match your style.---
## π Key Features
| **Feature** | **Description** |
|--------------------------|-----------------------------------------------------------------------------|
| *Modern Design* | Sleek, minimalist visuals for professional presentations. |
| *Easy Customization* | Modify themes, layouts, and metadata effortlessly. |
| *Pre-Built Makefile* | Simplifies compiling, cleaning, and file management. |
| *Math Support* | Embed equations and symbols with LaTeX's powerful math tools. |
| *Bibliography Integration* | Manage references with BibTeX for a polished, academic presentation. |---
## π Getting Started
### β Prerequisites
Ensure you have the following installed on your system:
- A [LaTeX distribution](https://www.latex-project.org/get/) (e.g., TeX Live, MiKTeX, MacTeX)
- [BibTeX](http://www.bibtex.org/)
- A text editor or IDE (e.g., [Visual Studio Code](https://code.visualstudio.com/))### π₯ Installation
Clone the repository and navigate to the project directory:
```bash
# Clone the repository
git clone https://github.com/deepmancer/latex-presentation-template.git# Navigate to the directory
cd latex-presentation-template
```---
## π Usage
### π¨οΈ Compiling Your Presentation
Use the included [`Makefile`](Makefile) for compiling your presentation:
```bash
# Compile the presentation
make
```The compiled PDF will be saved as `main.pdf`.
### π§Ή Cleanup
Clean up auxiliary files:
```bash
make clean
```Remove all generated files, including the PDF:
```bash
make cleanall
```---
## π¨ Customization
### π Update Metadata
Edit [`main.tex`](main.tex) to update the presentationβs metadata:
```latex
\title[Short Title]{Full Presentation Title}
\author{Your Name}
\institute{Your Institution}
\date[Month Year]{Event or Conference, Month Year}
```### π¨ Modify Theme Settings
Adjust colors, fonts, and layouts in the configuration files:
- [`config/preamble.tex`](./config/preamble.tex)
- [`config/frame-settings.tex`](./config/frame-settings.tex)### π Add Slides
To add new slides, edit the `Main Content` section of [`main.tex`](./main.tex):
```latex
\begin{frame}{Slide Title}
% Your slide content here
\end{frame}
```Alternatively, create new slides in the `slides/` directory and include them in `main.tex`:
```latex
\input{slides/your-slide.tex}
```### πΌοΈ Add Figures
Place your images in the [`assets/figures`](./assets/figures) directory and reference them in your slides:
```latex
\begin{figure}
\includegraphics[width=\linewidth]{assets/figures/your-image.png}
\caption{Your image caption}
\end{figure}
```### π Manage References
Add references to [`references.bib`](references.bib) and cite them in your slides using:
```latex
\cite{your-reference}
```---
## π Project Structure
| **File/Directory** | **Purpose** |
|----------------------------|--------------------------------------------------------------------|
| `main.tex` | Main LaTeX file for the presentation. |
| `Makefile` | Automates build and cleanup tasks. |
| `config/` | Configuration files for themes and settings. |
| `assets/` | Directory for figures and other assets. |
| `slides/` | Additional slides or sections. |
| `references.bib` | Bibliography entries. |
| `titlepage.tex` | Custom title page layout. |
| `LICENSE` | Project license information. |---
## π License
This project is licensed under the [MIT License](LICENSE). Youβre free to use, modify, and distribute the template as per the license terms.
---
## β Support the Project
If you find this template useful, consider:
- Starring this repository on GitHub β
- Forking the project to make your own version π΄
- Sharing it with your peers and colleagues π’---
Happy TeXing! π