投影机中的非数学箭头图形

投影机中的非数学箭头图形

如何创建类似这样的图形排列在 pdflatex/beamer 中?

谢谢!

答案1

为了让您入门,这里有一个非常简单的 Ti 实现Z. 我会让你自己决定如何定制它并使其满足你的需要。

\documentclass[tikz,border=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[
    every node/.style={
      text width=5em, 
      align=center,
      fill=blue!30,
      draw=blue!30,
    },
  ]
  \node (cl) {Company Loyalty};
  \node [right=2cm of cl] (tl) {Team Loyalty};
  \draw[-stealth, blue!40, line width=1em] (cl) -- (tl);
\end{tikzpicture}
\end{document}

输出

答案2

另一种可能性(有点更奇特?):

在此处输入图片描述

\documentclass[tikz,
               border=3mm]{standalone}
\usetikzlibrary{positioning,shadings,shadows,shapes.arrows}

\begin{document}
    \begin{tikzpicture}[
    node distance = 1mm,
  box/.style = {rectangle, rounded corners,
        text width=17mm, align=center, inner sep=3mm, minimum height=12mm,
        top color=blue!25, bottom color=blue!50,
        drop shadow={shadow xshift=0pt, shadow yshift=-0.5pt},
            },
Arrow/.style = {single arrow, minimum height=12mm, minimum width=12mm, 
        single arrow head extend=2mm, fill=gray!30!blue!10,
        drop shadow={shadow xshift=0pt, shadow yshift=-0.5pt},
        node contents={}
            },
  ]
\node (n1) [box]                {Company Loyalty};
\node (n2) [Arrow,right=of n1];
\node (n1) [box,right=of n2]    {Team Loyalty};
    \end{tikzpicture}
\end{document}

相关内容