> 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/id/pertanyaan-and-jawaban/78-my-submission-was-rejected-by-the-journal-because-font-xyz-is-not-embedded-.-what-can-i-do.md).

# Pengiriman saya ditolak oleh jurnal karena "Font XYZ tidak disematkan". Apa yang bisa saya lakukan?

Ini kemungkinan besar disebabkan oleh masalah "font-not-embedded" yang sangat ditakuti pada beberapa grafik PDF/EPS di proyek Anda, karena aplikasi yang membuatnya tidak menyematkan font ke dalam font: Lihat [tautan ini untuk beberapa detail latar belakang (terutama poin no. 2)](http://tex.stackexchange.com/a/255097/226).

> Mengenai font: Di sini penyebabnya kemungkinan besar adalah grafik, baik dalam format eps maupun pdf. Jika Anda memiliki grafik dengan teks yang juga tidak menyertakan font tersebut, font itu juga akan hilang dalam dokumen. Pada dasarnya Anda punya dua pilihan di sini: a) Di alat apa pun yang Anda gunakan untuk membuat grafik, cari opsi untuk secara eksplisit menyertakan font ke dalam grafik yang diekspor. b) Ekspor teks bukan sebagai teks, melainkan sebagai kurva. Jika tidak ada teks, tidak ada font yang bisa hilang (solusi yang buruk).

Informasi lebih lanjut:

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

Solusi terbaik adalah memastikan bahwa gambar PDF Anda diekspor dari aplikasi aslinya dengan [opsi sematkan semua font](http://www.latex-community.org/forum/viewtopic.php?p=43537\&sid=bb0b021e3acac54742fecbcb91713fed#p43537). Misalnya, jika Anda membuat gambar dengan R, Anda dapat menggunakan [`embedFonts` metode](https://stat.ethz.ch/R-manual/R-devel/library/grDevices/html/embedFonts.html) (juga [di sini](http://zevross.com/blog/2014/07/30/tired-of-using-helvetica-in-your-r-graphics-heres-how-to-use-the-fonts-you-like-2/) dan [di sini](http://r.789695.n4.nabble.com/Automatic-way-to-embed-fonts-into-all-pdf-output-td4666773.html)).

Sebagai alternatif, Anda dapat meminta Overleaf untuk melakukan pasca-pemrosesan PDF untuk Anda, meskipun ini dapat menyebabkan proyek Anda memerlukan waktu lebih lama untuk dikompilasi. Pertama, tambahkan file bernama `latexmkrc` (tanpa ekstensi) ke proyek Anda, lalu tempelkan baris berikut di file tersebut:

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

Anda mungkin perlu melakukan semacam perubahan kecil pada `.tex` file Anda untuk memicu kompilasi ulang dan agar pasca-pemrosesan terjadi.


---

# 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/id/pertanyaan-and-jawaban/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.
