> 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/ja/to-2/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 グラフィックで悪名高い「フォント未埋め込み」問題が原因です。というのも、それらを作成したアプリケーションがフォントを埋め込まなかったためです: 参照 [このリンクで背景情報をいくつか参照してください（特に項目 2）](http://tex.stackexchange.com/a/255097/226).

> フォントについて：ここでの犯人は、おそらく EPS 形式または PDF 形式のグラフィックです。テキストを含むグラフィックに、そのフォントも含まれていない場合、文書内でもそのフォントは欠落します。ここでは基本的に 2 つの選択肢があります。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/ja/to-2/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.
