我想画一个脑肿瘤幻影。
简单来说:我想在背景图片上添加一个填充灰色的椭圆。
我发现了 Tikz 这个包 :) 顺便说一句,我很高兴 TeX World 上有这样的东西。
这是我迄今为止成功完成的,绘制一个简单的椭圆。
\documentclass[border=13pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw [gray!60,fill=gray!60] (0,0) ellipse (1mm and 2mm);
\end{tikzpicture}
\end{document}
请问,我的问题是如何将填充的椭圆添加到下图中:(我的意思是第一个正面的椭圆和背景上的大脑)
是否适合使用 \includegraphics 指令?或者最好专注于 tikz 环境?
答案1
您可以使用命令向图像添加特定坐标node
,然后在其上绘图,例如使用以下命令:
\documentclass[border=2cm]{standalone}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node at (0,0) {\includegraphics[scale=1]{brain.png}};
\draw [black,fill=gray!20] (0,0) ellipse (2cm and 1cm);
\end{tikzpicture}
\end{document}
我得到了这样的图像: