Skip to content

Commit 3d2d968

Browse files
muttenerdavidcarlisle
authored andcommitted
translate
1 parent 758950e commit 3d2d968

1 file changed

Lines changed: 35 additions & 58 deletions

File tree

nl/help.md

Lines changed: 35 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -128,98 +128,75 @@ Als er geen engine wordt gespecificeerd via `% !TeX`, dan wordt `pdflatex` gebru
128128

129129
---
130130

131-
## TODO Choosing how to display the output
131+
## Weergave van de uitvoer kiezen
132132

133-
If you use the TeXLive.net system, then the PDF
134-
output from running an example is shown using
135-
[PDF.js](https://mozilla.github.io/pdf.js/) by default. This provides
136-
consistent behavior over the widest range of browsers.
133+
Als je het TeXLive.net-systeem gebruikt, dan wordt de PDF-uitvoer van een voorbeeld standaard weergegeven met [PDF.js](https://mozilla.github.io/pdf.js/).
134+
Dit zorgt voor consistent gedrag in de meeste browsers.
137135

138-
If you would prefer to use your browser's default PDF reader (either
139-
its built in one, or an external application that you have configured)
140-
then add a comment of the form:
136+
Als je liever de standaard PDF-lezer van je browser gebruikt (bijvoorbeeld de ingebouwde lezer of een extern programma dat je hebt ingesteld), voeg dan een opmerking toe van de vorm:
141137

142-
`% !TEX ` _any text_ `pdf`
138+
`% !TEX ` _willekeurige tekst_ `pdf`
143139

144-
The default behavior can be explicitly specified by using `pdfjs` as
145-
the final token. For debugging you may sometimes want the log file
146-
returned, even if the document produces a PDF with
147-
no errors. This can be specified by using `log` as the final token in
148-
the comment.
149-
150-
As an alternative to using a `% !TeX` comment, you may specify the
151-
site default return parameter on the [Site Settings](settings)
152-
page. The Settings are specific to each browser, so for example you
153-
may choose to use the default `pdfjs` setting on your mobile device,
154-
but use `pdf` on your desktop browser to use its default PDF rendering.
140+
Het standaardgedrag kan ook expliciet worden aangegeven door `pdfjs` als laatste woord te gebruiken.
141+
Voor foutopsporing wil je soms het logbestand terugkrijgen, zelfs als het document zonder fouten een PDF produceert.
142+
Dat kan je doen door `log` als laatste woord in het commentaar te gebruiken.
155143

144+
In plaats van een `% !TeX`-commentaar te gebruiken, kan je ook de standaard uitvoeroptie instellen op de pagina [Site-instellingen](settings).
145+
De instellingen zijn browserspecifiek, dus je kan bijvoorbeeld de standaardinstelling `pdfjs` gebruiken op je mobiel apparaat, en `pdf` op je desktopbrowser om gebruik te maken van de ingebouwde PDF-weergave van de browser.
156146

157147
---
158148

159-
## HTML output (make4ht, LaTeXML, lwarp)
160-
161-
If using the TeXLive.net system, then additional return options,
162-
`make4ht`, `LaTeXML` or `lwarp` may be specified. These return one or more HTML pages
163-
in the frame within the page. It may be specified at the same time
164-
as `xelatex` or `lualatex` as well as the default `pdflatex` processing.
149+
## HTML-uitvoer (make4ht, LaTeXML, lwarp)
165150

166-
To enable this output, add a comment of the form:
151+
Als je het TeXLive.net-systeem gebruikt, dan zijn er extra uitvoeropties beschikbaar: `make4ht`, `LaTeXML` of `lwarp`.
152+
Deze leveren één of meer HTML-pagina's in het kader binnen de webpagina.
153+
Je kan deze opties combineren met `xelatex` of `lualatex`, naast de standaard `pdflatex`-verwerking.
167154

155+
Om deze uitvoer in te schakelen, voeg je een commentaarregel toe van de vorm:
168156

169157
```
170158
% !TeX make4ht
171159
```
172160
{: .noedit :}
173161

162+
Vervang `make4ht` door `LaTeXML` of `lwarp` om die systemen te gebruiken.
174163

175-
Replacing `make4ht` by `LaTeXML` or `lwarp` to specify those systems.
176-
177-
178-
179-
Alternatively you may specify `make4ht`, `LaTeXML` or `lwarp` as the default return option
180-
on the [Site Settings](settings) page.
181-
164+
Je kan `make4ht`, `LaTeXML` of `lwarp` ook instellen als standaard uitvoeroptie op de pagina [Site-instellingen](settings).
182165

183-
If using a locally installed TeX system, the same output as the `make4ht` option may be obtained
184-
by executing
166+
Als je een lokaal geïnstalleerd TeX-systeem gebruikt, kan je dezelfde uitvoer als met `make4ht` verkrijgen
167+
door het volgende commando uit te voeren:
185168

186169
```
187-
make4ht document.tex "learnlatex4ht,2,mathml,mathjax,svg"
170+
make4ht document.tex "learnlatex4ht,2,mathml,mathjax,svg"
188171
```
189172
{: .noedit :}
190173

191-
with the addional option `-x` or `-l` if XeLaTeX or LuaLaTeX are specified.
174+
Voeg de extra optie `-x` of `-l` toe als je respectievelijk XeLaTeX of LuaLaTeX gebruikt.
192175

193-
When running locally, other configurations would be possible. See the [make4ht
194-
manual](https://texdoc.org/pkg/make4ht).
176+
Bij lokaal gebruik zijn ook andere configuraties mogelijk.
177+
Zie de [handleiding van make4ht](https://texdoc.org/pkg/make4ht).
195178

196-
197-
For `LaTeXML` to run locally, you would need to install LaTeXML (it is not part of TeX Live or MiKTeX)
198-
and use
179+
Om `LaTeXML` lokaal uit te voeren, moet je LaTeXML installeren (het maakt geen deel uit van TeX Live of MiKTeX)
180+
en gebruik je de volgende commando's:
199181

200182
```
201183
latexml document.tex > document.xml
202184
latexmlpost --format=html5 \
203185
--javascript='https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js' \
204-
--destination=document.html" document.tex
186+
--destination=document.html document.tex
205187
```
206188
{: .noedit :}
207189

208-
Many other LaTeXML configurations are possible,
209-
[as described in the manual](https://dlmf.nist.gov/LaTeXML/manual/).
210-
211-
212-
The `lwarp` configuration is not documented here, it is somewhat experimental and subject to change.
213-
The current version can be seen at the
214-
[source repository](https://github.com/davidcarlisle/latexcgi/blob/main/lwarp/latexcgilwarp).
190+
Veel andere LaTeXML-configuraties zijn mogelijk, [zoals beschreven in de handleiding](https://dlmf.nist.gov/LaTeXML/manual/).
215191

192+
De configuratie voor `lwarp` wordt hier niet gedocumenteerd.
193+
Deze is enigszins experimenteel en kan veranderen.
194+
De huidige versie is te vinden bij de [online broncode](https://github.com/davidcarlisle/latexcgi/blob/main/lwarp/latexcgilwarp).
216195

217196
---
218197

219-
[^1]: Note that during development of the site we have also used
220-
[LaTeX.Online](https://latexonline.cc/) and
221-
[LaTeX-on-HTTP](https://github.com/YtoTech/latex-on-http)
222-
and we thank the developers of those services for making updates to enable
223-
the examples on this site to be available at an early stage.
224-
225-
198+
[^1]: Tijdens de ontwikkeling van de site hebben we ook gebruikgemaakt van
199+
[LaTeX.Online](https://latexonline.cc/) en
200+
[LaTeX-on-HTTP](https://github.com/YtoTech/latex-on-http),
201+
en we danken de ontwikkelaars van deze diensten voor het mogelijk maken
202+
van voorbeeldondersteuning in een vroeg stadium.

0 commit comments

Comments
 (0)