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

# "Font XYZ is not embedded"라는 이유로 저널에서 제출이 거절되었습니다. 무엇을 할 수 있나요?

이는 아마도 프로젝트의 일부 PDF/EPS 그래픽에서 악명 높은 "font-not-embedded" 문제로 인해 발생한 것일 가능성이 큽니다. 그래픽을 만든 애플리케이션이 글꼴을 글꼴에 포함하지 않았기 때문입니다: 참고 [배경 설명은 이 링크를 참고하세요(특히 2번 항목)](http://tex.stackexchange.com/a/255097/226).

> 글꼴에 관해서: 여기서 범인은 아마도 eps 또는 pdf 형식의 그래픽입니다. 글꼴이 함께 포함되어 있지 않은 텍스트가 들어간 그래픽이 있다면, 해당 글꼴은 문서에서도 빠지게 됩니다. 기본적으로 선택지는 두 가지입니다. a) 그래픽을 만드는 데 사용하는 어떤 도구에서든, 내보낸 그래픽에 글꼴을 명시적으로 포함하는 옵션을 찾아보세요. b) 텍스트를 텍스트로 내보내지 말고 곡선으로 내보내세요. 텍스트가 없으면 누락될 글꼴도 없습니다(보기 흉한 해결책).

추가 정보:

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

가장 좋은 해결책은 PDF 이미지가 원래 응용 프로그램에서 다음과 함께 내보내졌는지 확인하는 것입니다 [모든 글꼴 포함 옵션](http://www.latex-community.org/forum/viewtopic.php?p=43537\&sid=bb0b021e3acac54742fecbcb91713fed#p43537). 예를 들어 R로 이미지를 생성하는 경우 다음을 사용할 수 있습니다 [`embedFonts` 메서드](https://stat.ethz.ch/R-manual/R-devel/library/grDevices/html/embedFonts.html) (또한 [여기](http://zevross.com/blog/2014/07/30/tired-of-using-helvetica-in-your-r-graphics-heres-how-to-use-the-fonts-you-like-2/) 및 [여기](http://r.789695.n4.nabble.com/Automatic-way-to-embed-fonts-into-all-pdf-output-td4666773.html)).

대안으로, Overleaf가 PDF를 대신 후처리하도록 할 수도 있지만, 이로 인해 프로젝트 컴파일 시간이 다소 더 오래 걸릴 수 있습니다. 먼저, 다음이라는 이름의 파일을 추가하세요 `latexmkrc` (확장자 없이)를 프로젝트에 추가한 다음, 그 파일에 다음 줄을 붙여넣으세요:

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

당신의 파일에 약간의 작은 변경을 해야 할 수도 있습니다 `.tex` 재컴파일이 일어나고 후처리가 수행되도록


---

# 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/ko/questions-and-answers/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.
