删除 LaTeX 生成的 pdf 的元数据

删除 LaTeX 生成的 pdf 的元数据

不确定我的问题与这个论坛有多大关系,但我还是会继续问 :)。我使用 LaTeX 创建 pdf,正如预期的那样,它表明“TeX”是源。我需要在线上传此 pdf,但不想上传原始 LaTeX 文件。我使用 Adob​​ePro 的“PDF 优化器”选项删除了 pdf 的元数据。但不知何故,该网站仍然将 pdf 检测为 TeX 生成的文件。有人知道如何彻底清除 pdf 吗?

答案1

您可以使用hyperref软件包完成所有这些操作。将这些行添加到您的序言中,并更改内容如下pdfproducer={},

\usepackage{hyperref}
%
\hypersetup{
    bookmarks=true,         % show bookmarks bar?
    unicode=false,          % non-Latin characters in Acrobat’s bookmarks
    pdftoolbar=true,        % show Acrobat’s toolbar?
    pdfmenubar=true,        % show Acrobat’s menu?
    pdffitwindow=false,     % window fit to page when opened
%    pdfstartview={FitW},    % fits the width of the page to the window
    pdftitle={Certificate},    % title
    pdfauthor={Dr. Harish Kumar},     % author
    pdfsubject={TEQIP certificates},   % subject of the document
    pdfcreator={Dr. Harish Kumar},   % creator of the document
    pdfproducer={},  % producer of the document
    pdfkeywords={Certificates,} {TEQIP} {Participation}, % list of keywords
    pdfnewwindow=true,      % links in new window
    colorlinks=false,       % false: boxed links; true: colored links
    linkcolor=red,          % color of internal links
    citecolor=green,        % color of links to bibliography
    filecolor=magenta,      % color of file links
    urlcolor=cyan           % color of external links
}

梅威瑟:

\documentclass{article}
\usepackage{hyperref}
%
\hypersetup{
    bookmarks=true,         % show bookmarks bar?
    unicode=false,          % non-Latin characters in Acrobat’s bookmarks
    pdftoolbar=true,        % show Acrobat’s toolbar?
    pdfmenubar=true,        % show Acrobat’s menu?
    pdffitwindow=false,     % window fit to page when opened
%    pdfstartview={FitW},    % fits the width of the page to the window
    pdftitle={Certificate},    % title
    pdfauthor={Dr. Harish Kumar},     % author
    pdfsubject={TEQIP certificates},   % subject of the document
    pdfcreator={Dr. Harish Kumar},   % creator of the document
    pdfproducer={},  % producer of the document
    pdfkeywords={Certificates,} {TEQIP} {Participation}, % list of keywords
    pdfnewwindow=true,      % links in new window
    colorlinks=false,       % false: boxed links; true: colored links
    linkcolor=red,          % color of internal links
    citecolor=green,        % color of links to bibliography
    filecolor=magenta,      % color of file links
    urlcolor=cyan           % color of external links
}
\usepackage{blindtext}
\begin{document}
  \Blinddocument
\end{document}

在此处输入图片描述

PS:我故意将其他(可能不相关的)项目保留在了 中hypersetup。有关详细信息,请参阅hyperref手册。

答案2

MetaClean 是一款功能强大的工具,可用于查看、删除和编辑 Microsoft Office(Word、Excel、PowerPoint 和 Visio)、OpenOffice(文字处理器、电子表格和演示文稿)和 PDF(1.0 及更高版本)文档的元数据。一次清理数百个文档。

http://adarsus.com/en/metaclean.html

Microsoft Windows、Linux、Unix 和 Mac OS X 平台

相关内容