diff --git a/pages/common/latex.md b/pages/common/latex.md index b79cffa3f..2dd256f49 100644 --- a/pages/common/latex.md +++ b/pages/common/latex.md @@ -11,6 +11,6 @@ `latex -output-directory={{path/to/directory}} {{source.tex}}` -- Compile a DVI document, halting on each error: +- Compile a DVI document, exiting on each error: `latex -halt-on-error {{source.tex}}` diff --git a/pages/common/pdflatex.md b/pages/common/pdflatex.md index 3ca07cbd6..b2bca8309 100644 --- a/pages/common/pdflatex.md +++ b/pages/common/pdflatex.md @@ -11,6 +11,6 @@ `pdflatex -output-directory={{path/to/directory}} {{source.tex}}` -- Compile a PDF document, halting on each error: +- Compile a PDF document, exiting on each error: `pdflatex -halt-on-error {{source.tex}}` diff --git a/pages/common/pdftex.md b/pages/common/pdftex.md index df5616ebf..4a202557a 100644 --- a/pages/common/pdftex.md +++ b/pages/common/pdftex.md @@ -11,6 +11,6 @@ `pdftex -output-directory={{path/to/directory}} {{source.tex}}` -- Compile a PDF document, halting on each error: +- Compile a PDF document, exiting on each error: `pdftex -halt-on-error {{source.tex}}` diff --git a/pages/common/tex.md b/pages/common/tex.md index 5a315f51f..12d87d03d 100644 --- a/pages/common/tex.md +++ b/pages/common/tex.md @@ -11,6 +11,6 @@ `tex -output-directory={{path/to/directory}} {{source.tex}}` -- Compile a DVI document, halting on each error: +- Compile a DVI document, exiting on each error: `tex -halt-on-error {{source.tex}}`