我相信我们大多数人都熟悉 Microsoft Word 中文本文档中图片的设置。特别是,有一个选项叫做“在文本前面”,它让你可以把图片放在你想要的任何位置,而忽略文档中的其他内容。
LaTeX 中有类似的东西吗?我正在考虑一个可以在文档中包含图片“坐标”的指令。
答案1
- 有关详细信息,请参阅投影机中的绝对定位。
- 我使用
tikz
withremember picture
和overlay
。 remember picture
用于绝对定位。overlay
使得图片的大小为零,因此不会影响其他物体的位置(据我所知)。
\documentclass{article}
\usepackage{tikz}
% Demo
\usepackage{blindtext}
\usepackage{showframe}
\begin{document}
\blindtext
\begin{tikzpicture}[remember picture,overlay]
\node[xshift=65mm,yshift=-48mm,anchor=north west] at (current page.north west){%
\includegraphics[width=50mm]{example-image-a}};
\end{tikzpicture}
\end{document}