姆韦,
\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
对于(普通)图形文件来说,它仍然是必需的。