将路径上的注释文本向左移动

将路径上的注释文本向左移动

我正在尝试创建随机变量收敛的三个概念的含义和部分逆含义的映射,即几乎确定收敛(用 QC 表示)、Lp 收敛(用 $L^p$ 表示)和概率收敛(用 P 表示)。到目前为止,我有以下内容:

在此处输入图片描述

代码:

\begin{tikzpicture}
\draw (-2,2) circle (.8)
(2,2) circle (.8)
(0,0) circle (.8)
(-2,2) node {$\xrightarrow{\text{QC}}$}
(2,2) node {$\xrightarrow{L^p}$}
(0,0) node {$\xrightarrow{\text{P}}$};
\draw[-latex,dashed] (.8,0) to[out=0,in=-90] node[below,sloped] {dominazione} (2,2-.8);
\draw[-latex,dashed] (-.8,0) to[out=-180,in=-90] node[below,sloped] {sottosuccessione} (-2,2-.8);
\draw[-latex,dashed] (-.8,0) to[out=-90,in=30] (-1,-1) to[out=210,in=240] node[below,text width=1cm] {decadi-mento veloce delle $P(|X_n-X|>\epsilon)$} (-3,1) to [out=60,in=180](-2,2-.8);
\draw[-latex] (-2+.8,2) to[out=0,in=90] (0,.8);
\draw[-latex] (2-.8,2) to[out=180,in=90] (0,.8);
\end{tikzpicture}

暗示是完整的箭头,部分反转是虚线。明显的问题是文本decadimento veloce delle P(|X_n-X|>\epsilon)与箭头冲突,而且宽度设置得太窄。我的问题是:如何告诉 TikZ 将其向左移动?

PS 我也尝试了该text along path选项,但是没有用。为什么?

PPS 编译所需的软件包:mathtoolstikz和字体mathptmx。这应该会给你与图片所示相同的结果。

答案1

below, sloped,text width=2cm

\documentclass[tikz,border=5]{standalone}

\usepackage{mathtools}
\usepackage{mathptmx}
\begin{document}
  \begin{tikzpicture}
\draw (-2,2) circle (.8)
(2,2) circle (.8)
(0,0) circle (.8)
(-2,2) node {$\xrightarrow{\text{QC}}$}
(2,2) node {$\xrightarrow{L^p}$}
(0,0) node {$\xrightarrow{\text{P}}$};
\draw[-latex,dashed] (.8,0) to[out=0,in=-90] node[below,sloped] {dominazione} (2,2-.8);
\draw[-latex,dashed] (-.8,0) to[out=-180,in=-90] node[below,sloped] {sottosuccessione} (-2,2-.8);
\draw[-latex,dashed] (-.8,0) to[out=-90,in=30] (-1,-1) to[out=210,in=240] node[below, sloped,text width=2cm] {decadi-mento veloce delle $P(|X_n-X|>\epsilon)$} (-3,1) to [out=60,in=180](-2,2-.8);
\draw[-latex] (-2+.8,2) to[out=0,in=90] (0,.8);
\draw[-latex] (2-.8,2) to[out=180,in=90] (0,.8);
\end{tikzpicture}
\end{document}

在此处输入图片描述

node[below left, text width=2cm] {decadi...

在此处输入图片描述

由于您的文本很长,我认为沿路径的文本可能不是合适的选择。

相关内容