使用 pgfxyline 更改线条样式

使用 pgfxyline 更改线条样式

我使用 pgfxyline (带箭头和不带箭头)。

\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}

\begin{document}
\begin{frame}
  \begin{pgfpicture}{0cm}{0cm}{10cm}{4cm}
    \pgfsetlinewidth{2pt}
    \pgfsetarrowsend{Triangle[scale=1pt]}
    \pgfxyline(3,3)(5,5)
  \end{pgfpicture}
\end{frame}
\end{document}

我如何更改线条样式(点线、虚线...)?

相关内容