mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-08 06:35:52 +02:00
tex, latex, pdftex, pdflatex: add Dutch translation (#16730)
This commit is contained in:
parent
a63ae699cd
commit
006861bc2d
4 changed files with 64 additions and 0 deletions
16
pages.nl/common/latex.md
Normal file
16
pages.nl/common/latex.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# latex
|
||||||
|
|
||||||
|
> Compileer een DVI-document van LaTeX bronbestanden.
|
||||||
|
> Meer informatie: <https://www.latex-project.org>.
|
||||||
|
|
||||||
|
- Compileer een DVI-document:
|
||||||
|
|
||||||
|
`latex {{bron.tex}}`
|
||||||
|
|
||||||
|
- Compileer een DVI-document naar een specifieke output map:
|
||||||
|
|
||||||
|
`latex -output-directory={{pad/naar/map}} {{bron.tex}}`
|
||||||
|
|
||||||
|
- Compileer een DVI-document en sluit af als er een fout optreedt:
|
||||||
|
|
||||||
|
`latex -halt-on-error {{bron.tex}}`
|
16
pages.nl/common/pdflatex.md
Normal file
16
pages.nl/common/pdflatex.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# pdflatex
|
||||||
|
|
||||||
|
> Compileer een PDF-document van LaTeX bronbestanden.
|
||||||
|
> Meer informatie: <https://manned.org/pdflatex>.
|
||||||
|
|
||||||
|
- Compileer een PDF-document:
|
||||||
|
|
||||||
|
`pdflatex {{bron.tex}}`
|
||||||
|
|
||||||
|
- Compileer een PDF-document naar een specifieke output map:
|
||||||
|
|
||||||
|
`pdflatex -output-directory={{pad/naar/map}} {{bron.tex}}`
|
||||||
|
|
||||||
|
- Compileer een PDF-document en sluit af als er een fout optreedt:
|
||||||
|
|
||||||
|
`pdflatex -halt-on-error {{bron.tex}}`
|
16
pages.nl/common/pdftex.md
Normal file
16
pages.nl/common/pdftex.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# pdftex
|
||||||
|
|
||||||
|
> Compileer een PDF-document van TeX bronbestanden.
|
||||||
|
> Meer informatie: <https://www.tug.org/applications/pdftex/>.
|
||||||
|
|
||||||
|
- Compileer een PDF-document:
|
||||||
|
|
||||||
|
`pdftex {{bron.tex}}`
|
||||||
|
|
||||||
|
- Compileer een PDF-document naar een specifieke output map:
|
||||||
|
|
||||||
|
`pdftex -output-directory={{pad/naar/map}} {{bron.tex}}`
|
||||||
|
|
||||||
|
- Compileer een PDF-document en sluit af als er een fout optreedt:
|
||||||
|
|
||||||
|
`pdftex -halt-on-error {{bron.tex}}`
|
16
pages.nl/common/tex.md
Normal file
16
pages.nl/common/tex.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# tex
|
||||||
|
|
||||||
|
> Compileer een DVI-document van TeX bronbestanden.
|
||||||
|
> Meer informatie: <https://www.tug.org/begin.html>.
|
||||||
|
|
||||||
|
- Compileer een DVI-document:
|
||||||
|
|
||||||
|
`tex {{bron.tex}}`
|
||||||
|
|
||||||
|
- Compileer een DVI-document naar een specifieke output map:
|
||||||
|
|
||||||
|
`tex -output-directory={{pad/naar/map}} {{bron.tex}}`
|
||||||
|
|
||||||
|
- Compileer een DVI-document en sluit af als er een fout optreedt:
|
||||||
|
|
||||||
|
`tex -halt-on-error {{bron.tex}}`
|
Loading…
Add table
Reference in a new issue