Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/csegarragonz/latex-docker
A zero-install LaTeX distribution
https://github.com/csegarragonz/latex-docker
docker latex latexmk
Last synced: about 2 months ago
JSON representation
A zero-install LaTeX distribution
- Host: GitHub
- URL: https://github.com/csegarragonz/latex-docker
- Owner: csegarragonz
- Created: 2022-08-10T09:39:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T17:18:39.000Z (about 1 year ago)
- Last Synced: 2023-12-15T18:29:22.846Z (about 1 year ago)
- Topics: docker, latex, latexmk
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LaTeX in Docker [![Tests](https://github.com/csegarragonz/latex-docker/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/csegarragonz/latex-docker/actions/workflows/tests.yml)
Zero-install LaTeX distribution for Linux.
## Quick Start
Navigate to the repository where the LaTeX source lives and:
```bash
docker run --rm \
-v $(pwd):/workdir \
-u $(id -u):$(id -g) \
csegarragonz/latex-docker:texlive_2024 main.tex
```To make it easier, copy this into your `.zshrc` or `.bashrc`:
```bash
alias latex-docker='docker run --rm -v $(pwd):/workdir -u $(id -u):$(id -g) csegarragonz/latex-docker:texlive_2024'
source ~/.zshrc
source ~/.bashrc
latex-docker main.tex
```## Acknowledgements
This repo is heavily inspired in [arkark/latexmk-docker](https://github.com/arkark/latexmk-docker)'s.
Given that the author had archived the latter, I decided to give it a crack
myself.