有没有办法在图片上放置数学方程式?我正在使用overpic
包和\put
命令,但它不起作用(\usemath
,\begin{equation}...\end{equation}
)。
\begin{figure}[h!]
\caption{Caption}
\centering
\begin{overpic}[width=\textwidth]{ipad-frame.jpg}
\put(150,140){
\color{black
\begin{equation}
\cos\alpha = \frac{u \times v}{|u| \times |v|}
\end{equation}
}
}
\end{overpic}
\end{figure}
有什么办法可以解决这个问题吗?
答案1
你必须将等式代入\parbox
:
\documentclass{article}
\usepackage[abs]{overpic}
\usepackage{xcolor,varwidth}
\begin{document}
\begin{overpic}[grid,scale=0.5,unit=1mm]{tiger}
\put(30,60){\colorbox{white}{\parbox{0.4\linewidth}{%
\begin{equation}
\cos\alpha = \frac{u \times v}{|u| \times |v|}
\end{equation}}}}
\end{overpic}
\end{document}