在目录中添加 pdf 图像文件时出现问题

在目录中添加 pdf 图像文件时出现问题

姆韦,

\documentclass[a4paper,12pt]{book} 

\usepackage[turkish]{babel}
\usepackage{graphicx}
\usepackage{import} 

\graphicspath{ {ABC/} }

\newcommand{\circuit}[1]{
\begin{center}
\subimport{ABC/}{#1}
\end{center}}

\begin{document}

%\shorthandoff{=}\includegraphics{TR-1.pdf} %It's working.

\circuit{TR-1.pdf} % It's not working.

\end{document}

输出,文本行包含无效字符。 我能怎么做?

答案1

我的回答很简短:

import包“仅”适用于导入/输入/包含子文档,而子文档可能基本上包含任何有效LaTeX代码(当然,也存在少数例外)。

它允许设置远程路径,但\subimport\import命令不能用来替代\includegraphics\includepdf(包pdfpages)来导入图形或.pdf文件。

\includegraphics对于(普通)图形文件来说,它仍然是必需的。

相关内容