summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/tkz/tkz-graph/doc/latex/TKZdoc-gr-edge.tex
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-03-10 03:01:27 +0000
committerNorbert Preining <norbert@preining.info>2020-03-10 03:01:27 +0000
commit877268a0de707a979be934d888518f6cc02d73a6 (patch)
tree30597445c86d75b20a836b6c90ab6c31b76d902e /macros/latex/contrib/tkz/tkz-graph/doc/latex/TKZdoc-gr-edge.tex
parent0561778af6f8fde0a3a1c334e2aab9a4f1142d6e (diff)
CTAN sync 202003100301
Diffstat (limited to 'macros/latex/contrib/tkz/tkz-graph/doc/latex/TKZdoc-gr-edge.tex')
-rw-r--r--macros/latex/contrib/tkz/tkz-graph/doc/latex/TKZdoc-gr-edge.tex120
1 files changed, 0 insertions, 120 deletions
diff --git a/macros/latex/contrib/tkz/tkz-graph/doc/latex/TKZdoc-gr-edge.tex b/macros/latex/contrib/tkz/tkz-graph/doc/latex/TKZdoc-gr-edge.tex
deleted file mode 100644
index bc538f15cb..0000000000
--- a/macros/latex/contrib/tkz/tkz-graph/doc/latex/TKZdoc-gr-edge.tex
+++ /dev/null
@@ -1,120 +0,0 @@
-%!TEX root = /Users/ego/Boulot/TKZ/tkz-graph/doc-fr/TKZdoc-gr-main.tex
-
-% $Id$
-\section{Edge avec tkz-graph}
-
-\begin{NewMacroBox}{Edge}{\oarg{local options}\varp{Vertex A}\varp{Vertex B}}
-
-\begin{tabular}{lllc}
-options & défaut & définition \\ \midrule
-\TOline{local} {false} {booléen désactive EdgeStyle }
-\TOline{color} {\textbackslash EdgeColor} {couleur de l'arête}
-\TOline{lw} {\textbackslash EdgeLineWidth} {épaisseur de l'arête.}
-\TOline{label} {\{\}} {le label}
-\TOline{labeltext} {black} {couleur du texte}
-\TOline{labelcolor} {white} {couleur du fond du label }
-\TOline{labelstyle} {\{\}} {modication du style du label}
-\TOline{style} {pos=.5} {modification du style général} \bottomrule
-\end{tabular}
-
-\medskip
-\emph{Cette macro permet de tracer une arête entre deux sommets. Dans les exemples et dans le chapitre sur les styles, l'usage des styles est expliqué. }
-\end{NewMacroBox}
-
-
-
-\medskip
-\subsection{Utilisation de \addbs{Edge}}
- On peut remarquer qu'il y a deux sortes d'arêtes au niveau de la forme : les segments et les arcs. De plus, ces arêtes peuvent avoir un label. La notion de style est importante car on peut définir pour toutes les arêtes un même style dès le début.
-
-par défaut :
-
-\begin{tkzexample}[latex=8cm, small]
-\begin{tikzpicture}
- \SetGraphUnit{4}
- \Vertex{a}
- \EA(a){b}
- \SO[unit=2](a){c}
- \EA(c){d}
- {\SetGraphUnit{2}
- \SO(c){e}}
- \EA(e){f}
- \Edge(a)(b)
- \tikzset{EdgeStyle/.style = {-,bend left}}
- \Edge(c)(d)
- \tikzset{EdgeStyle/.style = {->,bend right=60}}
- \Edge(e)(f)
-\end{tikzpicture}
-\end{tkzexample}
-
-
-
-
-\vfill
-\newpage
-
-\subsection{Arête particulière la boucle : \tkzname{Loop}}
-
-\begin{NewMacroBox}{Loop}{\oarg{local options}\varp{Vertex}}
-\begin{tabular}{lllc}
-options & défaut & définition \\
-\midrule
-\TOline{color} {black } {}
-\TOline{lw} {0.8pt } {}
-\TOline{label} {\{\} } {}
-\TOline{labelstyle} {\{\} } {}
-\TOline{style} {\{\} } {}
-\end{tabular}
-\end{NewMacroBox}
-
-\subsubsection{Exemple avec \tkzcname{Loop}}
-\begin{center}
-\begin{tkzexample}[vbox, small]
-\begin{tikzpicture}
- \useasboundingbox (-1,-2) rectangle (8,2);
- \SetVertexSimple
- \SetGraphUnit{5}
- \Vertex{A}
- \EA(A){B}
- \Edge[style={->}](A)(B)
- \Loop[dist=3cm,dir=EA,style={thick,->}](B)
- \Loop[dist=5cm,dir=WE,style={thick,->}](A)
-\end{tikzpicture}
-\end{tkzexample}
-\end{center}
-
-\vfill
-\newpage
-\subsection{Multiple arêtes \tkzcname{Edges}}
-
-\begin{NewMacroBox}{Edges}{\oarg{local options}\varp{Vertex A,Vertex B,\dots}}
-
-\begin{tabular}{llc}
-options & défaut & définition \\
-\midrule
-\TOline{color} {black} {}
-\TOline{lw} {thick} {}
-\TOline{label} {\{\} } {}
-\TOline{labelstyle}{\{\}} {}
-\TOline{style} {\{\} } {}
-\bottomrule
-\end{tabular}
-
-\medskip
-\emph{ Cette macro permet de définir une série d'arêtes en une seule fois.}
-\end{NewMacroBox}
-
-\subsubsection{Exemple avec \tkzcname{Edges}}
-\begin{center}
-\begin{tkzexample}[vbox]
-\begin{tikzpicture}
- \SetGraphUnit{4}
- \GraphInit[vstyle=Art]
- \Vertices{circle}{a0,a1,a2,a3,a4,a5,a6,a7}
- \Edges(a0,a3,a6,a1,a4,a7,a2,a5,a0)
-\end{tikzpicture}
-\end{tkzexample}
-\end{center}
-
-
-\endinput