投影機中的非數學箭頭圖形

投影機中的非數學箭頭圖形

如何創建一種類似於在 pdflatex/beamer 中?

謝謝!

答案1

為了幫助您入門,這裡有一個非常簡單的 Ti 實現kZ. 我將讓您自行決定如何自訂它並使其滿足您的需求。

\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}

相關內容