我正在写一个包含多张图片的数学文档。我的图片.pdf_tex
来自 Inkscape 文件,通常
\begin{figure}
\centering
\input{<name>.pdf_tex}
\end{figure}
将它们包括进去是没问题的。但是,有时我希望我的图片成为方程的一部分,例如(极其简化的例子)如果我画一个圆,circle.pdf_tex
我可能想通过以下方式计算它的面积
\begin{align}
\text{Area}\left( \input{circle.pdf_tex} \right)=\pi r^2
\end{align}
但当然我不能简单地.pdf_tex
在align
环境中输入。有人知道一个很好的解决方案吗?
答案1
似乎将 \input 放入 \text-environment (并使用对齐)有效:
\begin{align}
\text{Area}\left(
\begin{aligned}\text{\input{circle.pdf_tex}} \end{aligned}
\right)=\pi r^2
\end{align}
成功了。