如下图所示,我有一个 pdf 页面,其宽度为 6.32 英寸,高度为 8.18 英寸,我使用tikz
独立版制作一个与 pdf 页面宽度和高度相同的矩形,然后将 pdfpage 导入文档中,但是,页面周围会显示边距。我该如何删除边距?
以下是mwe。
\documentclass[tikz]{standalone}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\draw (0,0) rectangle (6.32 in,8.18 in);% edge of the page
\node at (0.5*6.32 in,0.5*8.18 in) {\includegraphics[width=6.32 in]{titlepage.pdf}};
\end{tikzpicture}
\end{document}
答案1
在节点中将内部 sep 设置为 0pt \node[inner sep=0pt]
,。
Ulrike Fischer 的评论是正确的答案。
问题已经解决。