土耳其语校对中如何删除单词标记?

土耳其语校对中如何删除单词标记?

平均能量损失

\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

不要使用两个单独的tikzpictures(\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}

相关内容