https://github.com/pranabdas/latex
https://github.com/pranabdas/latex
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pranabdas/latex
- Owner: pranabdas
- Created: 2020-12-01T15:38:45.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-07-03T11:01:53.000Z (over 2 years ago)
- Last Synced: 2025-05-07T11:34:20.427Z (8 months ago)
- Language: TeX
- Size: 5.05 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository contains configuration files for LaTeX, templates, sample
documents etc.
You can setup LaTeX on a Docker container, look for the example dockerfile. If
you are on Ubuntu/Debian, there is an installation script:
```console
bash install_latex_in_ubuntu_debian.sh
```
In order to compile LaTeX document:
```console
pdflatex document.tex
```
In some cases (e.g., to use system fonts), we need to run some external
commands:
```console
pdflatex -shell-escape document.tex
```
⚠️ **Warning:** be careful when using `shell-escape` flag, and make sure you can
trust latex source file and you are not running any malicious command.
An alternative to `pdflatex` is `lualatex` with some additional features:
```console
lualatex document.tex
lualatex -shell-escape document.tex
```