EDAS投稿出现问题

参考:安全验证 - 知乎

使用latex (overleaf) 编译出的pdf上传到EDAS时,报以下错误:

记录一下我的解决方式:

对于 :notembedded: Upload failed: The font Times New Roman is not embedded in the file. (FAQ 109)

网上教程 (https://www.cnblogs.com/happystudyeveryday/p/15357216.html) 用Adobe Acrobat来解决 ,但是没有下载该软件就比较麻烦。

我是用overlead,找到以下教程可以解决:

My submission was rejected by the journal because "Font XYZ is not embedded". What can I do? - Overleaf, Online LaTeX Editor

First, add a file called latexmkrc (without extensions) to your project, and then paste the following line in that file:

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

You may have to make some kind of small change in your .tex file to trigger a re-compilation and the post-processing to happen.

如果您使用的是 matplotlib 生成的图形,并且这些图形是字体类型的来源,则有两个关键设置:pdf.fonttypeps.fonttype。您必须将这些设置从默认值 3 更改为替代值 42。您可以在文件中matplotlibrc使用以下命令执行此操作,您可以使用以下方法在代码中更改这些设置:

import matplotlib
matplotlib.rcParams['pdf.fonttype'] = 42

相关推荐

  1. Redisson出现问题总结

    2024-04-21 11:50:02       55 阅读
  2. 解决2023新版Edge浏览器页面加载不出来问题

    2024-04-21 11:50:02       68 阅读
  3. Edge问题解决教程

    2024-04-21 11:50:02       59 阅读
  4. 使用git出现问题

    2024-04-21 11:50:02       57 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-04-21 11:50:02       98 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-04-21 11:50:02       106 阅读
  3. 在Django里面运行非项目文件

    2024-04-21 11:50:02       87 阅读
  4. Python语言-面向对象

    2024-04-21 11:50:02       96 阅读

热门阅读

  1. 聊聊linux的文件缓存

    2024-04-21 11:50:02       39 阅读
  2. 从表中生成SQL*Loader insert into 语句

    2024-04-21 11:50:02       31 阅读
  3. 框架中的单例模式

    2024-04-21 11:50:02       34 阅读
  4. STM32

    STM32

    2024-04-21 11:50:02      31 阅读
  5. STM32几种库的比较,HAL、标准库、LL库!

    2024-04-21 11:50:02       33 阅读
  6. STM32

    STM32

    2024-04-21 11:50:02      29 阅读
  7. stylus入门使用方法

    2024-04-21 11:50:02       37 阅读
  8. 分布式限流——Redis + Lua实现滑动窗口算法

    2024-04-21 11:50:02       41 阅读