Untitled

 avatar
unknown
plain_text
9 months ago
2.4 kB
1
Indexable
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}

\tikzstyle{box} = [rectangle, rounded corners, minimum width=3cm, minimum height=1cm, text centered, draw=black, fill=white]
\tikzstyle{arrow} = [thick,->,>=stealth]

\begin{document}

\begin{figure}
    \centering
    \begin{tikzpicture}[node distance=2cm]

        % Organizational Functions
        \node (R1) [box] {R1: Product Designers};
        \node (R2) [box, below of=R1] {R2: Marketing Team};
        \node (R3) [box, below of=R2] {R3: Supply Chain Management};

        % Capabilities
        \node (PDC) [box, right of=R1, xshift=3cm] {Product Development Capability};
        \node (MC) [box, right of=R2, xshift=3cm] {Marketing Capability};
        \node (DC) [box, right of=R3, xshift=3cm] {Distribution Capability};

        % Dynamic Capabilities
        \node (DCap) [box, right of=MC, xshift=3cm, yshift=1cm] {Dynamic Capabilities};
        \node (PDD) [box, above of=DCap] {Product Development Capability Dynamic};
        \node (MCD) [box, below of=DCap] {Marketing Capability Dynamic};
        \node (RDC) [box, below of=MCD] {R\&D Capability};

        % Competency and VRIO
        \node (Comp) [box, right of=DCap, xshift=3cm] {Competency};
        \node (VRIO) [box, right of=Comp, xshift=3cm] {VRIO};

        % Core Competence and Competitive Advantage
        \node (CC) [box, below of=DCap, yshift=-4cm] {Core Competence};
        \node (DCCA) [box, left of=CC, xshift=-5cm] {Distinctive Competence/Competitive Advantage};

        % Arrows
        \draw [arrow] (R1) -- (PDC);
        \draw [arrow] (R2) -- (MC);
        \draw [arrow] (R3) -- (DC);
        \draw [arrow] (PDC) -- (PDD);
        \draw [arrow] (MC) -- (MCD);
        \draw [arrow] (DC) -- (DCap);
        \draw [arrow] (DCap) -- (Comp);
        \draw [arrow] (Comp) -- (VRIO);
        \draw [arrow] (CC) -- (DCCA);

        % Additional arrows and labels
        \draw [arrow] (0.45, 0.45) -- (0.3, 0.5) node[midway, above, sloped] {Update these capabilities};
        \draw [arrow] (0.75, 0.6) -- (0.6, 0.4) node[midway, above, sloped] {Cross-Functional};
        \draw [arrow] (0.5, 0.3) -- (0.5, 0.25) node[midway, left] {Core Rigidity};

    \end{tikzpicture}
    \caption{Resource-Based Framework for Puma}
    \label{fig:resource_based_framework_puma}
\end{figure}

\end{document}
Editor is loading...
Leave a Comment