ano*_*ous 10 latex image pdflatex
我想使用Latex创建类似传单/杂志的东西.是否可以将文本放在图像上并自由设置文本样式?
有关此类示例的任何链接?
mid*_*iby 17
我经常这样做
\usepackage{tikz}
...
\begin{tikzpicture}
\draw (0, 0) node[inner sep=0] {\includegraphics[width=4cm]{imagefile.png}};
\draw (1, 1) node {Hello world};
\end{tikzpicture}
Run Code Online (Sandbox Code Playgroud)
您还可以在图像之后定义文本,然后使用负垂直空间对其进行偏移。因为它跟随在 LaTeX 源中的图像之后,所以它将绘制在图像的顶部而不是图像的下面。
\includegraphics[...]{...}
\vspace*{-20ex} % Tune this to the image height.
\begin{center}
Text
\end{center}
\vspace*{20ex} % The spacing above but without the minus.
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
39267 次 |
| 最近记录: |