nicht-mathematische Pfeilgrafiken im Beamer

nicht-mathematische Pfeilgrafiken im Beamer

Wie würde man eine grafische Anordnung erstellen, die etwa wie folgt aussiehtDasin pdflatex/beamer?

Danke!

Antwort1

Um Ihnen den Einstieg zu erleichtern, finden Sie hier eine sehr einfache Implementierung in TikZ. Ich überlasse es Ihnen, herauszufinden, wie Sie es anpassen und Ihren Bedürfnissen entsprechend gestalten können.

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

Ausgabe

Antwort2

Eine andere Möglichkeit (etwas ausgefallener?):

Bildbeschreibung hier eingeben

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

verwandte Informationen