> 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/overleaf-learn-latex-pt/perguntas-e-respostas/78-my-submission-was-rejected-by-the-journal-because-font-xyz-is-not-embedded-.-what-can-i-do.md).

# A minha submissão foi rejeitada pela revista porque "A fonte XYZ não está incorporada". O que posso fazer?

Isto é mais provavelmente causado pelo temido problema "font-not-embedded" com alguns gráficos PDF/EPS no seu projeto, porque a aplicação que os criou não incorporou as fontes nas fontes: Veja [este link para alguns detalhes de contexto (especialmente o item n.º 2)](http://tex.stackexchange.com/a/255097/226).

> No que diz respeito às fontes: aqui, o culpado é muito provavelmente os gráficos, seja em formato eps ou pdf. Se tiver um gráfico com texto que também não contenha a fonte, a fonte também ficará em falta no documento. Basicamente, tem duas opções aqui: a) Em qualquer ferramenta que esteja a usar para criar os gráficos, procure uma opção para incorporar explicitamente as fontes nos gráficos exportados. b) Exporte o texto não como texto, mas como curvas. Se não houver texto, não pode faltar nenhuma fonte (solução feia).

Mais informações:

* <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>

A melhor solução é garantir que as suas imagens PDF foram exportadas das aplicações originais com a [opção de incorporar todas as fontes](http://www.latex-community.org/forum/viewtopic.php?p=43537\&sid=bb0b021e3acac54742fecbcb91713fed#p43537). Por exemplo, se estiver a gerar imagens com R, pode usar a [`embedFonts` método](https://stat.ethz.ch/R-manual/R-devel/library/grDevices/html/embedFonts.html) (também [aqui](http://zevross.com/blog/2014/07/30/tired-of-using-helvetica-in-your-r-graphics-heres-how-to-use-the-fonts-you-like-2/) e [aqui](http://r.789695.n4.nabble.com/Automatic-way-to-embed-fonts-into-all-pdf-output-td4666773.html)).

Em alternativa, pode pedir ao Overleaf para pós-processar o PDF por si, embora isso possa fazer com que o seu projeto demore mais tempo a compilar. Primeiro, adicione um ficheiro chamado `latexmkrc` (sem extensões) ao seu projeto e, em seguida, cole a seguinte linha nesse ficheiro:

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

Pode ter de fazer algum pequeno ajuste no seu `.tex` ficheiro para desencadear uma recompilação e para que o pós-processamento aconteça.


---

# 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/overleaf-learn-latex-pt/perguntas-e-respostas/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.
