圖片中缺少元素

圖片中缺少元素
\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,我無法更具體。

相關內容