平均能量损失
\documentclass[12pt]{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usepackage{pgflibraryshapes}
\begin{document}
\tikz[baseline=(x.base)]
\node(a) [red,draw,ellipse,thick,fill=white,inner sep=2pt](x){\color{black}{delete}};
\tikz \draw[baseline=(a.east),red,thick] (0,0)-- (.2,.2)--(.5,.2);
\end{document}
但我尝试做的
你能帮我修复它吗?
答案1
不要使用两个单独的tikzpicture
s(\tikz
是 的缩写\begin{tikzpicture} .. \end{tikzpicture}
),将\node
和放在\draw
同一个位置,然后从 开始绘制线x.east
,使用相对坐标(用 表示++
)。
\documentclass[12pt]{article}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}
\begin{document}
\tikz[baseline=(x.base)]
{
\node [draw=red,text=black,ellipse,thick,fill=white,inner sep=2pt] (x) {delete};
% ++ means that the coordinate is relative to the previous one
\draw[red,thick] (x.east) -- ++(.2,.2) -- ++(.3,0);
}
\end{document}