印刷厂要求我的论文的PDF符合PDF / X1a:2001。内容文件使用XeTeX LaTeX
编译,第二个PDF是使用Inkscape 0.48
完成的封面设计。
我在这篇文章中找到的最近答案:https://stackoverflow.com/a/3483801/1288722,如果我理解,至少可以使用Ghostscript将PDF转换为PDF / X.
如上面的答案所述,转换为PDF / X需要有效的ICC配置文件。我联系了印刷厂,他们提供了一个他们喜欢的文件:ISOcoated_v2_300_eci.icc
。我将.icc
文件添加到目标pdf文件的同一文件夹中(感谢VadimR提供此注释)。
Ghostscript的
我从命令行使用了这个脚本,但它没有工作:
gswin32c -dPDFX -dBATCH -dNOPAUSE -dNOOUTERSAVE -sProcessColorModel=DeviceCMYK -sDEVICE=pdfwrite -sOutputFile=outputfile.pdf PDFX_def.ps doctorate.pdf
我花了一些时间做了220页,但这是非常糟糕的,不良影响。
PDFX_def.ps
的内容:
%!
% This is a sample prefix file for creating a PDF/X-3 document.
% Feel free to modify entries marked with "Customize".
% This assumes an ICC profile to reside in the file (ISO Coated sb.icc),
% unless the user modifies the corresponding line below.
systemdict /ProcessColorModel known {
systemdict /ProcessColorModel get dup /DeviceGray ne exch /DeviceCMYK ne and
} {
true
} ifelse
{ (ERROR: ProcessColorModel must be /DeviceGray or DeviceCMYK.)=
/ProcessColorModel cvx /rangecheck signalerror
} if
% Define entries to the document Info dictionary :
/ICCProfile (ISOcoated_v2_300_eci.icc) def % Customize or remove.
%/ICCProfile (ISO Coated sb.icc) def % Customize or remove.
[ /GTS_PDFXVersion (PDF/X-3:2002) % Must be so (the standard requires).
/Title (Title) % Customize.
/Trapped /False % Must be so (Ghostscript doesn't provide other).
/DOCINFO pdfmark
% Define an ICC profile :
currentdict /ICCProfile known {
[/_objdef {icc_PDFX} /type /stream /OBJ pdfmark
[{icc_PDFX} <</N systemdict /ProcessColorModel get /DeviceGray eq {1} {4} ifelse >> /PUT pdfmark
[{icc_PDFX} ICCProfile (r) file /PUT pdfmark
} if
% Define the output intent dictionary :
[/_objdef {OutputIntent_PDFX} /type /dict /OBJ pdfmark
[{OutputIntent_PDFX} <<
/Type /OutputIntent % Must be so (the standard requires).
/S /GTS_PDFX % Must be so (the standard requires).
/OutputCondition (Commercial and specialty printing) % Customize
/Info (none) % Customize
/OutputConditionIdentifier (CGATS TR001) % Customize
/RegistryName (http://www.color.org) % Must be so (the standard requires).
currentdict /ICCProfile known {
/DestOutputProfile {icc_PDFX} % Must be so (see above).
} if
>> /PUT pdfmark
[{Catalog} <</OutputIntents [ {OutputIntent_PDFX} ]>> /PUT pdfmark
那么我错过了什么?
备注
答案 0 :(得分:2)
您可以生成PDF / X文件,但不能生成PDF / X1我记得PDF / X-1要求所有颜色都以CMYK或灰色指定,旧版本的pdfwrite不能这样做,当前版本可以,但需要一些其他工作才能使其与PDF / X-1兼容,我不确定它是否值得付出努力。
请参阅此bug report