我是 LaTeX 和 Tikz 的新手。
我想将一张图片放入文档中,并将其西北角定位到页面的西北角。
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.north west)}]
\draw (0,0) node {\includegraphics[scale=.07]{./figures/logo.jpg}};
\end{scope}
\end{tikzpicture}
我写了这个,但它包括了图片中心的坐标 (0,0)。我不知道我必须添加什么才能得到我想要的东西。
请问我该如何做?
答案1
如果您想在许多页面上使用徽标,可能值得使用background
具有良好键值接口的徽标。
例如:
\documentclass{article}
\usepackage{background,kantlipsum}
\backgroundsetup{%
contents={\fbox{\includegraphics{tiger}}},
scale=.175,
position=current page.north west,
nodeanchor=north west,
opacity=1,
angle=0,
color=orange,
}
\begin{document}
\kant[1-20]
\end{document}