我使用 LaTex 将 .pdf 文件编译在一起,但我有需要“文件打开需要安装“adobe 插件”才能打开它们。我已经安装了插件,可以使用 Adobe Reader 打开它们。但它们当然仍然受到保护。我运行 latex 来编译它们并收到此错误:Syntax error: couldn't find 'FOPN_foweb' security handler
。我通常不会在处理其他受保护的 pdf 文件时收到此错误。
\documentclass{article}
\usepackage{pdfpages}
\usepackage{grffile}
\usepackage{bookmark}
\newcommand*\FICHIERPDF[1]{\IfFileExists{FICHIERPDF/"#1.pdf"}{\pdfbookmark[3]{#1}{#1}\includepdf[pages={-},fitpaper=true]{FICHIERPDF/#1}\cleardoublepage}{\relax}}
\begin{document}
\FICHIERPDF{1413} %1413.pdf is the document trying to be included for example.
\end{document}
有人可以帮忙吗?