https://github.com/estanislaocrivos/latex-project-template
Minimalistic LaTeX project template.
https://github.com/estanislaocrivos/latex-project-template
latex latex-template pdflatex
Last synced: about 2 months ago
JSON representation
Minimalistic LaTeX project template.
- Host: GitHub
- URL: https://github.com/estanislaocrivos/latex-project-template
- Owner: estanislaocrivos
- License: mit
- Created: 2025-08-12T14:27:23.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-08-14T23:19:09.000Z (about 2 months ago)
- Last Synced: 2025-08-15T00:18:34.888Z (about 2 months ago)
- Topics: latex, latex-template, pdflatex
- Language: TeX
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LaTeX Project Template 📖
This is a minimalistic template for getting started with a LaTeX project. It includes a basic structure with sections for the introduction, main content, and conclusion.
## Getting Started
To get started, simply clone this repository and modify the existing files to suit your needs. The main LaTeX file is `main.tex`, and you can add your content in the `sections` directory.
## Prerequisites
- Install `pdfLaTeX` or any other LaTeX engine of your choice. On macOS, you can install [MacTeX](https://www.tug.org/mactex/), while Windows users can opt for [MikTeX](https://miktex.org/).
## Building the document
To build the document, you may run the `build.sh` script on the root directory:
```bash
./build.sh
```This script compiles the LaTeX source files with `pdflatex` and `bibtex` as needed. The output files are located in the `output/` directory. Alternatively, you can manually run the following command:
```bash
pdflatex main.tex
```You may also install the [LaTeX Workshop](https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop) extension for Visual Studio Code. This will provide a rich editing experience, including features like auto-completion, linting, and more. On save, this extension will compile the files with `latexmk` and generate the output files on the `output/` directory.
## Licence
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.