为什么倾斜的角度不正确?

为什么倾斜的角度不正确?

在此示例中:

\documentclass{standalone}

\usepackage{tikz}

\usepackage[utf8]{inputenc}

 

\begin{document}

               \begin{tikzpicture}[xscale=5,yscale=3]      

                              \tikzset{aufgabe/.style={fill=yellow}}        

                              \tikzset{pfeile/.style={->}}

                              \node [aufgabe] (i1) at (3,10) {Item1};     

                              \node [aufgabe,nearly opaque] (i2) at (4,9) {Item2};         

                              \draw [pfeile] (i1)--(i2)  node[sloped,midway,above]{Text};            

               \end{tikzpicture}

\end{document}

为什么文本没有倾斜到正确的角度?

在此处输入图片描述

答案1

虽然这不是答案,但我希望它能有所帮助。

\begin{tikzpicture}[x=5cm,y=3cm]

相关内容