> For the complete documentation index, see [llms.txt](https://overleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://overleaf-pro.ayaka.space/latex/nl/vragen-en-antwoorden/78-my-submission-was-rejected-by-the-journal-because-font-xyz-is-not-embedded-.-what-can-i-do.md).

# Mijn inzending is afgewezen door het tijdschrift omdat "Font XYZ is not embedded". Wat kan ik doen?

Dit wordt hoogstwaarschijnlijk veroorzaakt door het beruchte "font-not-embedded"-probleem met sommige PDF/EPS-afbeeldingen in je project, omdat de toepassing die ze heeft gemaakt de lettertypen niet heeft ingesloten in de lettertypen: Zie [deze link voor wat achtergrondinformatie (vooral item nr. 2)](http://tex.stackexchange.com/a/255097/226).

> Wat de lettertypen betreft: hier zijn de boosdoeners waarschijnlijk afbeeldingen, in eps- of pdf-formaat. Als je een afbeelding met tekst hebt die het lettertype niet ook bevat, zal het lettertype ook ontbreken in het document. Je hebt hier in principe twee keuzes: a) Zoek in welk gereedschap je ook gebruikt om de afbeeldingen te maken naar een optie om de lettertypen expliciet op te nemen in de geëxporteerde afbeeldingen. b) Exporteer de tekst niet als tekst maar als curven. Als er geen tekst is, kunnen er geen lettertypen ontbreken (lelijke oplossing).

Meer informatie:

* <https://machinelearning1.wordpress.com/2013/03/22/create-eps-file-from-matlab-figures-with-embedded-fonts/>
* <https://sites.google.com/site/xyzliwen/resource/embed_font_ieee_pdf_explore>

De beste oplossing is ervoor te zorgen dat je PDF-afbeeldingen vanuit hun oorspronkelijke toepassingen zijn geëxporteerd met de [optie 'alle lettertypen insluiten'](http://www.latex-community.org/forum/viewtopic.php?p=43537\&sid=bb0b021e3acac54742fecbcb91713fed#p43537). Bijvoorbeeld, als je afbeeldingen genereert met R, kun je de [`embedFonts` methode](https://stat.ethz.ch/R-manual/R-devel/library/grDevices/html/embedFonts.html) (ook [hier](http://zevross.com/blog/2014/07/30/tired-of-using-helvetica-in-your-r-graphics-heres-how-to-use-the-fonts-you-like-2/) en [hier](http://r.789695.n4.nabble.com/Automatic-way-to-embed-fonts-into-all-pdf-output-td4666773.html)).

Als alternatief kun je Overleaf de PDF voor je laten naverwerken, al kan dit ervoor zorgen dat je project wat langer nodig heeft om te compileren. Voeg eerst een bestand toe met de naam `latexmkrc` (zonder extensies) aan je project toe, en plak vervolgens de volgende regel in dat bestand:

```
$pdflatex = 'pdflatex %O %S; ps2pdf14 -dPDFSETTINGS=/prepress %B.pdf %B-embed.pdf; mv %B-embed.pdf %B.pdf';
```

Mogelijk moet je een kleine wijziging aanbrengen in je `.tex` bestand om een hercompilatie en de naverwerking te laten plaatsvinden.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://overleaf-pro.ayaka.space/latex/nl/vragen-en-antwoorden/78-my-submission-was-rejected-by-the-journal-because-font-xyz-is-not-embedded-.-what-can-i-do.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
