Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
tectonic Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# tectonic
> A modern, self-contained TeX/LaTeX engine.
> More information: <https://tectonic-typesetting.github.io/book/latest>.
- Compile a standalone TeX/LaTeX file:
`tectonic -X compile {{path/to/file.tex}}`
- Compile a standalone TeX/LaTeX file with synctex data:
`tectonic -X compile --synctex {{path/to/file.tex}}`
- Initialize a tectonic project in the current directory:
`tectonic -X init`
- Initialize a tectonic project in the specified directory:
`tectonic -X new {{project_name}}`
- Build the project in the current directory:
`tectonic -X build`
- Start a watcher to build the project in the current directory on change:
`tectonic -X watch`