假设我们有一个由不同于 LaTeX 的程序创建的图表(不是使用 PStricks 或 Tikz)。我想知道是否可以使用 TeX 编辑器在该图表上添加数学符号。
谢谢。
答案1
基本上,这是使用文档的示例,通过在序言中stackengine
添加内容来适应数学模式。\stackMath
您想要的例程是\stackinset
具有 6 个参数的\stackinset{H-anchor}{H-offset}{V-anchor}{V-offset}{inset}{underlying anchor image}
。如此处所示,它可以嵌套,并且插入本身可以是堆栈。
\documentclass[standard]{letter}
\usepackage[usestackEOL]{stackengine}
\stackMath
\usepackage{graphicx}
\def\imgi{\includegraphics[width=.75in]{example-image}}
\begin{document}
\stackinset{l}{ .1in}{b}{.2in}{y=mx+b}{%
\stackinset{r}{ .1in}{t}{.2in}{\Longstack{F_x=ma_x\\F_y=ma_y}}{%
\stackinset{c}{-.5in}{c}{.4in}{E=mc^2}{%
\stackinset{r}{ .8in}{b}{.6in}{\psi^2=0}{%
\stackinset{r}{ .1in}{c}{.0in}{\imgi}{%
\includegraphics[width=3in]{example-image}%
}}}}}
\end{document}