在我的最后一个问题中,这里,我问如何绘制一条曲线,其节点下方有一个张量。现在我想用绘制一个更复杂的图形tikz
:一条曲线,其上有节点和张量,位于渐变背景上。像这样:
感谢您的帮助!
答案1
一种选择:
代码:
\documentclass[border=5pt]{standalone}
\usepackage{tensor}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\filldraw[left color=gray!30,right color=black!60]
(-2,-3) to[out=20,in=160]
(11,-2) to[out=110,in=230]
(13,4) to[out=180,in=20]
(-1,3) to[out=220,in=130]
cycle;
\draw[line width=2pt]
(0,0) ..controls (2,2) and (5,-1) .. (10,2)
node[fill,circle,minimum size=8pt,inner sep=0pt,pos=0.4,label=below:{$\tensor{g}{_a_b}$},label=above:{$t=0$}] {}
node[fill,circle,minimum size=8pt,inner sep=0pt,pos=0.8,label=below:{$\tensor{g}{_a_b}$},label=above:{$t$}] {};
\node at (10,-1) {$\tensor{h}{_a_b}$};
\end{tikzpicture}
\end{document}