我尝试使用 eso-pic 将背景 tikz 图像放置在文档中。我认为参考点是左下角。但实际上 0.15 厘米处有“X 偏差”。它依赖于软件还是硬件?它会出现在其他配置或机器上吗?
\documentclass[a4paper,14pt]{extreport}
\usepackage{tikz}
\usepackage{eso-pic}
\begin{document}
\AddToShipoutPicture{
\begin{tikzpicture}[remember picture, overlay]
\draw[step=1cm,gray,very thin] (0,0) grid (20,20);
\end{tikzpicture}}
Some text
\end{document}
答案1
尝试一下\AddToShipoutPicture{%
,%
最后的将阻止 tikz 图片向右移动,因为空间没有被忽略。