Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/redthing1/redpaper
a containerized environment for authoring documents
https://github.com/redthing1/redpaper
Last synced: 5 days ago
JSON representation
a containerized environment for authoring documents
- Host: GitHub
- URL: https://github.com/redthing1/redpaper
- Owner: redthing1
- Created: 2023-11-06T08:16:01.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-09T11:37:53.000Z (27 days ago)
- Last Synced: 2024-12-09T12:28:35.935Z (27 days ago)
- Language: HTML
- Homepage:
- Size: 7.92 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# redpaper
a containerized environment for authoring documents, including my personal templates.
uses [pandoc](https://pandoc.org/) to convert markup to latex.
# flagship theme (`style2`):
vibes:
+ `classic` (default)
+ `alternate`
+ `forward`
+ `orthographic`
+ `professional`
+ `artistic`
# usage
## redpaper host
build the container image:
```sh
podman build . -f redpaper_host.docker -t redthing1/redpaper_host
```## example usage
within this repository, run a shell with the templates available:
```sh
podman run --rm -it -v $(pwd):/prj -v $(pwd):/data redthing1/redpaper_host
```render some examples (within container shell):
style2, single column (comfortable) layout
```sh
pandoc --dpi=300 --pdf-engine=lualatex --template /data/templates/style2/style2-single.tex -i ./examples/crypto_showcase.md -o ./examples/crypto_showcase_style2.pdf
```style2, double column (paper-like) layout
```sh
pandoc --dpi=300 --pdf-engine=lualatex --template /data/templates/style2/style2-double.tex -i ./examples/crypto_showcase.md -o ./examples/crypto_showcase_style2_dbl.pdf
```