PESTEL図を描く

PESTEL図を描く

私は LaTex 初心者で、PESTEL 図を作成しようとしていますが、正しいアプローチがわかりません。可能であれば、次のようなものがほしいです。 PESTEL図

(大きな文字は必要ありません。中にテキストが入った 6 つの部分だけが必要です)

Tikz パッケージを試してみましたが、やり方がわかりません。

\documentclass[12pt,a4paper]{article}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}

\begin{document}
\begin{tikzpicture}
[every node/.style={trapezium, trapezium angle=60, minimum width=10cm, draw, thick}]
  \node [rotate=0] {Politique};
  \node [rotate=60] {Economique};
  \node [rotate=120] {Socio-culturel};
  \node [rotate=180] {Technologique};
  \node [rotate=240] {Ecologique};
  \node [rotate=300] {Légal};
\end{tikzpicture}
\end{document}

ありがとう!

答え1

ホイールチャート私が書いたパッケージが使えます。

スライス間のギャップはキーを使用して取得されますgap

大きな文字は、 で表される最初の変数によって決定されます\WCvarA。これらは、キー で使用されますinner data。これらの大きな文字の位置は、キー と によって決定されますinner data angle posinner data posスタイルは、キー によって決定されますinner data style

中央のテキストはキーによって決定されmiddle、そのスタイルはキーによって決定されますmiddle style

キーはradius内側の半径と外側の半径を定義します。

内側と外側の形状は、キーslices inner arcとによって決まりますslices outer arc

開始角度はキーによって決まりますstart half

各スライスが同じサイズになるように設定しますvalue=1。また、キーをdata空に設定します。

残りのテキストはキーによって決まりますwheel data

ここに画像の説明を入力してください

\documentclass[border=6pt,dvipsnames]{standalone}
\usepackage{wheelchart}
\begin{document}
\begin{tikzpicture}
\sffamily
\wheelchart[
  data=,
  gap,
  inner data=\emph{\WCvarA},
  inner data angle pos=0.9,
  inner data pos=0.8,
  inner data style={white,font=\Huge},
  middle=LA FIRME ET\\SON MARCHÉ,
  middle style={font=\Large},
  radius={2}{10.5},
  slices inner arc={0}{0},
  slices outer arc={0}{0},
  start half,
  value=1,
  wheel data=\WCvarD\\\WCvarE,
  wheel data pos=0.5,
  wheel data style=\WCvarC
]{%
  É/Bittersweet/white/{\Large Économique}/Taux de croissance du PIB\\Taux d'inflation\\Taux d'intérêt nominal\\Taux de change des devises\\Pression fiscale\\Pouvoir d'achat\\des ménages\\\dots,
  S/Brown/white/{\Large Socio-}\\{\Large culturel}/Composantes démographiques\\Niveau de l'IDH\\Influences religieuses\\Qualité de l'éducation\\Immigration{/}émigration\\Évolution du coefficient\\de Gini\\\dots,
  T/SeaGreen/white/{\Large Technologique}/Niveau de R\&D\\Évolutions scientifiques\\Démocratisation technologique\\Subvention de la recherche\\Vitesse d'obsolescence\\Coût de l'innovation\\\dots,
  É/BurntOrange/black/{\Large Écologique}/Changements climatiques\\Conditions météorologiques\\Protection de l'environnement\\Propension au recyclage\\Énergies renouvelables\\Tendance à la croissance verte\\\dots,
  L/Magenta/white/{\Large Légal}/Sécurité juridique\\Protection de la propriété\\Flexibilité du droit social\\Réglementations\\professionnelles\\Fiabilité du droit\\des contrats\\Cohérence de la\\jurisprudence\\\dots,
  P/LimeGreen/black/{\Large Politique}/Conflits ou guerres\\Stabilité politique\\Politiques économiques\\Indice de corruption\\Élections imminentes\\Lobbying\\\dots%
}
\end{tikzpicture}
\end{document}

関連情報