\begin{figure}[h!]
\centering
\setlength{\unitlength}{0.1\textwidth}
\begin{picture}(5,5)
\put(4.17,3.5){$x$}
\includegraphics[height=0.4\textwidth]{rys}
\end{picture}
\end{figure}
当我使用 dvi 排版时,出现字母 x 和图片 rys,但是当我使用 pdflatex 时,x 消失了。
答案1
图片很可能与rys
字母重叠。尝试将图片\put
像字母一样包裹到命令中。然后,您可以轻松更改其坐标。
\documentclass[a4paper]{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h!]
\centering
\setlength{\unitlength}{0.1\textwidth}
\begin{picture}(5,5)
\put(4.17,3.5){$x$}
\put(-5,-2){\includegraphics[height=0.4\textwidth]{rys}}
\end{picture}
\end{figure}
\end{document}
答案2
首先,您需要反转顺序(这很重要):
\begin{picture}(5,5)
\put(4.17,3.5){$x$}
这将总是放入$x$
正面图形。但随后您将需要更改坐标\put(4.17,3.5){$x$}
(尤其是 x 坐标 - 首先尝试 -4.17)以将$x$
其放置在您需要的位置。如果没有 MWE,我无法更具体。