Forum Programmation.autre [Résolu]LaTeX tikz

Posté par  . Licence CC By‑SA.
Étiquettes :
4
19
août
2013

Bonjour,
J’essaye de faire un graph sur git pour une petite présentation, mais j’ai un problème de flèche… En effet, pour que ce soit visible, j’aurais voulu que les flèches push et fetch soit séparées.
Il y a la solution : nom_du_nœud.angle, mais comme les deux nœuds n’ont pas la même largeur, les flèches ne sont pas horizontales.
J’ai cherché une solution avec x/yshift mais pas de succès.

  • Peut-on translater les flèches de liaison ?
  • Quels autres solutions à t-on ?

Voici le code :

\documentclass[hyperref={pdfpagemode=FullScreen,colorlinks=true},xcolor=table]{beamer}
\usepackage[frenchb]{babel}
\usepackage[utf8x]{inputenc}
  \usepackage{default}
  \usepackage{multicol}
  \usetheme{Warsaw} \setbeamertemplate{headline}{}
  %\usetheme{Berkeley}
  %\usetheme{Marburg}

  \usepackage{tikz}
  \usetikzlibrary{positioning}

  \begin{document}
  \tikzstyle{every picture}+=[remember picture]
  \tikzstyle{na} = [baseline=-.5ex]

   \begin{tikzpicture}
      [inner sep=2mm,
       espace/.style={rectangle,draw=blue!50,fill=blue!20,thick},
      depots/.style={rectangle,draw=black!50,fill=black!20,thick},
      index/.style={rectangle,draw=green!50,fill=green!20,thick}]

     \node[espace] (Principe_Espace_de_travail) {Espace de travail};
     \node[index] (Principe_Index) [above=of Principe_Espace_de_travail]{Index};
     \node[depots] (Principe_Depot) [above=of Principe_Index]{Dépôt};
     \node[depots] (Principe_Distant) [right= of Principe_Depot]{Dépôt distant};
     \draw[->] (Principe_Espace_de_travail.100) -- node[auto] {add} (Principe_Index.260);
     \draw[->] (Principe_Index.100) -- node[auto] {commit} (Principe_Depot.260);
     \draw[->] (Principe_Depot.280) to[bend left=70] node[auto] {checkout} (Principe_Espace_de_travail.80);
     \draw[->] (Principe_Depot) -- node[auto] {push} (Principe_Distant);
     \draw[->] [yshift=3mm] (Principe_Distant.west) -- node[auto] {fetch} (Principe_Depot.east);
   \end{tikzpicture}
\end{document}
  • # Trouvé

    Posté par  . Évalué à 6.

    J’ai trouvé ma réponse ici.

    Voici le code avec une frame que j’avais oublié.

    \documentclass[hyperref={pdfpagemode=FullScreen,colorlinks=true},xcolor=table]{beamer}
    \usepackage[frenchb]{babel}
    \usepackage[utf8x]{inputenc}
      \usepackage{default}
      \usepackage{multicol}
      \usetheme{Warsaw} \setbeamertemplate{headline}{}
      %\usetheme{Berkeley}
      %\usetheme{Marburg}
    
      \usepackage{tikz}
      \usetikzlibrary{positioning}
      %\usetikzlibrary{calc}
    
      \begin{document}
      \tikzstyle{every picture}+=[remember picture]
      \tikzstyle{na} = [baseline=-.5ex]
    
    \begin{frame}{exemple}
       \begin{tikzpicture}
          [inner sep=2mm,
           espace/.style={rectangle,draw=blue!50,fill=blue!20,thick},
          depots/.style={rectangle,draw=black!50,fill=black!20,thick},
          index/.style={rectangle,draw=green!50,fill=green!20,thick}]
    
         \node[espace] (Principe_Espace_de_travail) {Espace de travail};
         \node[index] (Principe_Index) [above=of Principe_Espace_de_travail]{Index};
         \node[depots] (Principe_Depot) [above=of Principe_Index]{Dépôt};
         \node[depots] (Principe_Distant) [right= of Principe_Depot]{Dépôt distant};
         \draw[->] (Principe_Espace_de_travail.100) -- node[auto] {add} (Principe_Index.260);
         \draw[->] (Principe_Index.100) -- node[auto] {commit} (Principe_Depot.260);
         \draw[->] (Principe_Depot.280) to[bend left=70] node[auto] {checkout} (Principe_Espace_de_travail.80);
         %\draw[->] ($(Principe_Depot.east)+(0,1mm)$) -- node[auto] {push} ($(Principe_Distant.west)+(0,1mm)$);
         \draw[->] ([yshift=1mm]Principe_Depot.east) -- node[auto] {push} ([yshift=1mm]Principe_Distant.west);
         \draw[->] ([yshift=-1mm]Principe_Distant.west) -- node[auto] {fetch} ([yshift=-1mm]Principe_Depot.east);
       \end{tikzpicture}
    \end{frame}
    \end{document}

Suivre le flux des commentaires

Note : les commentaires appartiennent à celles et ceux qui les ont postés. Nous n’en sommes pas responsables.