我已使用rsvg-convert
将this file转换为PDF。
我现在将其嵌入此LaTeX文档中:
\documentclass{standalone}
\usepackage{graphicx}
\begin{document}
\includegraphics{nucleosynthesis_periodic_table.pdf}
\end{document}
我将其编译为test_lualatex.pdf,然后使用以下命令进行处理:gs -o test_output_lualatex.pdf -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress test_lualatex.pdf
(我通常在较大的主文档中执行此操作,这在很大程度上有助于减小PDF大小,在这里只提供MWE)。我得到这个:test_output_lualatex.pdf。
为什么在ghostscript处理之后输出如此不同?我有什么可以做的吗?