我可以将一个图形渲染在另一个图形内吗?例如,我想有一个大图形并显示一个小图形(例如放大)而不是图例。
我可以使用乳胶来做到这一点吗?
谢谢。
答案1
设置大图后嵌入\llap
图片,2.5in为垂直上升,0.2in为嵌入图片向左偏移。
\documentclass{article}
\usepackage{graphicx}
\usepackage{mwe}
\begin{document}
Here is some text.
\begin{figure}[ht]
\includegraphics[scale=1]{example-image-1x1}
\centering
\llap{\shortstack{%
\includegraphics[scale=.2]{example-image}\\
\rule{0ex}{2.5in}%
}
\rule{0.2in}{0ex}}
\caption{This is my embedded figure}
\end{figure}
And text continues\ldots
\end{document}