diff options
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r-- | Master/texmf-dist/doc/latex/adigraph/README.md | 15 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/adigraph/adigraph_documentation.pdf | bin | 104688 -> 110876 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/adigraph/adigraph_documentation.tex | 117 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.pdf | bin | 31637 -> 32081 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex | 2 |
5 files changed, 128 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/latex/adigraph/README.md b/Master/texmf-dist/doc/latex/adigraph/README.md index 5bc102883b6..a8de76fe968 100644 --- a/Master/texmf-dist/doc/latex/adigraph/README.md +++ b/Master/texmf-dist/doc/latex/adigraph/README.md @@ -17,6 +17,21 @@ sudo tlmgr install fp etoolbox adigraph Otherwise install the packages with the package manager of your choice. +## Checking the version +All recent (1.3+) Adigraph versions offer the following command: + +```latex +\AdigraphVersionNumber +``` + +If you get an `Undefined control sequence` error you have a version previous to 1.3, you should consider updating it manually. + +An approach could be the following: + +1. Download the latest version from ctan: [here](https://ctan.org/pkg/adigraph). +2. Identify the position of the installed adigraph by running `find / -type d -name adigraph`. +3. Replace the old adigraph.sty with the new adigraph.sty downloaded from ctan. + ### Requiring the package in the document Remember to require the package in the document. diff --git a/Master/texmf-dist/doc/latex/adigraph/adigraph_documentation.pdf b/Master/texmf-dist/doc/latex/adigraph/adigraph_documentation.pdf Binary files differindex dee66bb844b..518bbb8a9e7 100644 --- a/Master/texmf-dist/doc/latex/adigraph/adigraph_documentation.pdf +++ b/Master/texmf-dist/doc/latex/adigraph/adigraph_documentation.pdf diff --git a/Master/texmf-dist/doc/latex/adigraph/adigraph_documentation.tex b/Master/texmf-dist/doc/latex/adigraph/adigraph_documentation.tex index 4d2773c0d1e..85567bf7f15 100644 --- a/Master/texmf-dist/doc/latex/adigraph/adigraph_documentation.tex +++ b/Master/texmf-dist/doc/latex/adigraph/adigraph_documentation.tex @@ -2,7 +2,7 @@ \title{Adigraph, \AdigraphVersionNumber} \author{Luca Cappelletti} -\date{March 2018} +\date{December 2018} \usepackage{adigraph} \usepackage{xcolor} @@ -115,7 +115,9 @@ Here we create a new Adigraph object, called \textit{myAdigraph}. <edges here, separated by semicolon> }{ <cuts here, separated by semicolon> -} +}[ + <edge style here> +] \end{minted} \section{Changing an existing graph} @@ -128,7 +130,9 @@ You can renovate an older graph by calling \textbackslash RenewAdigraph <edges here, separated by semicolon> }{ <cuts here, separated by semicolon> -} +}[ + <edge style here> +] \end{minted} \section{Adding nodes} @@ -556,7 +560,7 @@ Looped edges position automatically by themselves to minimize overlapping. \section{Kleene star operators} \subsection{Kleene star on an element} -This works only when you don't have a node called \textit{<*>}. When this happens, the behavior of a tuple \textit{<a,*>} becomes the normal one. +This works only when you don't have a node called \textit{<*>}. When this happens, the behaviour of a tuple \textit{<a,*>} becomes the normal one. \begin{figure} \begin{subfigure}{0.49\textwidth} \begin{minted}{latex} @@ -595,7 +599,7 @@ This works only when you don't have a node called \textit{<*>}. When this happen \end{figure} \subsection{Kleene star minus the element} -This works only when you don't have a node called \textit{<+>}. When this happens, the behavior of a tuple \textit{<a,+>} becomes the normal one. +This works only when you don't have a node called \textit{<+>}. When this happens, the behaviour of a tuple \textit{<a,+>} becomes the normal one. \begin{figure} \begin{subfigure}{0.49\textwidth} \begin{minted}{latex} @@ -986,6 +990,109 @@ If you'd like to color the cuts you just have to add the color as follows: \text \end{subfigure} \end{figure} +\section{Non oriented edges and custom edge stiles} +If you need non oriented edges or in general to ad a custom style to your edges you can proceed as follows: +\subsection{Non oriented} +\begin{figure} + \begin{subfigure}{0.49\textwidth} + \begin{minted}{latex} +\NewAdigraph{myCustomEdgesAdigraph}{ + s:0,0; + 1:2,2; + 3:2,-2; + 2:6,2; + 4:6,-2; + t:8,0; +}{ + s,1:25; + s,3:25; + 3,4:25; + 1,2:35; + 2,t:20; + 4,t:30; + 3,1:10; + 4,2:10; + 2,3:15::near start; + 4,1:5::near start; +}[-] +\myCustomEdgesAdigraph{} +\end{minted} + \end{subfigure} + \begin{subfigure}{0.49\textwidth} + \NewAdigraph{myCustomEdgesAdigraph}{ + s:0,0; + 1:2,2; + 3:2,-2; + 2:6,2; + 4:6,-2; + t:8,0; + }{ + s,1:25; + s,3:25; + 3,4:25; + 1,2:35; + 2,t:20; + 4,t:30; + 3,1:10; + 4,2:10; + 2,3:15::near start; + 4,1:5::near start; + }[-] + \myCustomEdgesAdigraph{} + \end{subfigure} +\end{figure} + +\subsection{Dashed} +\begin{figure} + \begin{subfigure}{0.49\textwidth} + \begin{minted}{latex} +\NewAdigraph{myCustomEdgesAdigraph}{ + s:0,0; + 1:2,2; + 3:2,-2; + 2:6,2; + 4:6,-2; + t:8,0; +}{ + s,1:25; + s,3:25; + 3,4:25; + 1,2:35; + 2,t:20; + 4,t:30; + 3,1:10; + 4,2:10; + 2,3:15::near start; + 4,1:5::near start; +}[dashed] +\myCustomEdgesAdigraph{} +\end{minted} + \end{subfigure} + \begin{subfigure}{0.49\textwidth} + \NewAdigraph{myCustomEdgesAdigraph}{ + s:0,0; + 1:2,2; + 3:2,-2; + 2:6,2; + 4:6,-2; + t:8,0; + }{ + s,1:25; + s,3:25; + 3,4:25; + 1,2:35; + 2,t:20; + 4,t:30; + 3,1:10; + 4,2:10; + 2,3:15::near start; + 4,1:5::near start; + }[dashed] + \myCustomEdgesAdigraph{} + \end{subfigure} +\end{figure} + + \chapter{Warnings} \section{Reserved words} I reserve to use for the package the following tokens: diff --git a/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.pdf b/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.pdf Binary files differindex b6ba3781b74..8ca68710bd9 100644 --- a/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.pdf +++ b/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.pdf diff --git a/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex b/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex index 9d91b642c2c..2a8e76a5acf 100644 --- a/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex +++ b/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex @@ -4,7 +4,7 @@ \title{Adigraph, \AdigraphVersionNumber, small working test} \author{Luca Cappelletti} -\date{March 2018} +\date{November 2018} \begin{document} \maketitle |