我想在图片上添加几个方程式。我使用 overpic 包,如中所述overpic_link。但是,我试图让方程式变成彩色,如图所示color_link
\documentclass{article}
\usepackage[percent]{overpic}
\usepackage{xcolor}
\begin{document}
\begin{overpic}[width=0.5\textwidth,grid,tics=10]{pictures/baum}
\put (20,85) \textcolor{blue}{\huge$\displaystyle\gamma$}
\end{overpic}
\end{document}
但我收到以下错误: ! 软件包 xcolor 错误:未定义颜色‘\hss’。有人可以提供一下错误原因的反馈吗,我刚开始使用 Latex,谢谢。
答案1
正确的语法是
\put(<x>,<y>){<material>}
而且你缺少了你想要的材料周围的括号\put
。
坐标周围的空格将被忽略。
\documentclass{article}
\usepackage[percent]{overpic}
\usepackage{xcolor}
\begin{document}
\begin{overpic}[width=0.5\textwidth,grid,tics=10]{example-image-9x16}
\put (20,85) {\textcolor{blue}{\huge$\gamma$}}
\end{overpic}
\end{document}
我删除了\displaystyle
这里没有任何作用的部分,但它可能会对更复杂的公式产生影响。