summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex')
-rw-r--r--Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex20
1 files changed, 10 insertions, 10 deletions
diff --git a/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex b/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex
index 25f0c1f3433..0c02a736efe 100644
--- a/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex
+++ b/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex
@@ -20,7 +20,7 @@
\subsection{Overview}
\emph{Chains} are sequences of nodes that are -- typically -- arranged
-in an o row or a column and that are -- typically -- connected by
+in a row or a column and that are -- typically -- connected by
edges. More generally, they can be used to position nodes of a
branching network in a systematic manner. For the positioning of nodes
in rows and columns you can also use matrices, see
@@ -35,7 +35,7 @@ connections.
\subsection{Starting and Continuing a Chain}
Typically, you construct one chain at a time, but it is
-permissible to have construct multiple chains simultaneously. In this
+permissible to construct multiple chains simultaneously. In this
case, the chains must be named differently and you must specify for
each node which chain it belongs to.
@@ -51,7 +51,7 @@ option.
used instead.
The key starts a chain named \meta{chain name} and makes it
- \emph{active}, which means that is currently being constructed. The
+ \emph{active}, which means that it is currently being constructed. The
|start chain| can be issued only once to activate a chain, inside a
scope in which a chain is active you cannot use this option once
more (for the same chain name). The chain stops being active at the
@@ -129,7 +129,7 @@ option.
Let us have a look at the two different applications of this
option. The first is to change the direction of a chain as it is
- begin constructed. For this, just give this option somewhere inside
+ being constructed. For this, just give this option somewhere inside
the scope of the chain.
\begin{codeexample}[]
\begin{tikzpicture}[start chain=going right,node distance=5mm]
@@ -178,7 +178,7 @@ option.
last invocation ``wins.'' (To place a node on several chains, use
the |\chainin| command repeatedly.)
- The \meta{direction} part is optional. If present it sets the
+ The \meta{direction} part is optional. If present, it sets the
direction used for this node, otherwise the \meta{direction}
that was given to the original |start chain| option is used (or of
the last |continue chain| option, which allows you to change this
@@ -186,12 +186,12 @@ option.
The effects of this option are the following:
\begin{enumerate}
- \item An internal counter (there is one, local, counter
+ \item An internal counter (there is one local counter
for each chain) is increased. This counter reflects the current
number of the node in the chain, where the first node is node 1,
the second is node 2, and so on.
- This value of this internal counter is globally stored in the
+ The value of this internal counter is globally stored in the
macro \declare{|\tikzchaincount|}.
\item If the node does not yet have a name, (having been given using
the |name| option or the name-syntax), the name of the node is set to
@@ -248,12 +248,12 @@ option.
\item
The following style is executed:
\begin{stylekey}{/tikz/every on chain}
- This key is executed for every node of a chain, including the
+ This key is executed for every node on a chain, including the
first one.
\end{stylekey}
\end{enumerate}
- Recall that the standard replacement rule has a form like
+ Recall that the standard placement rule has a form like
|right=of (\tikzchainprevious)|. This means that each
new node is placed to the right of the previous one, spaced by the
current value of |node distance|.
@@ -387,7 +387,7 @@ following command, which is only defined inside scopes where a
This style is executed each time this command is used.
\end{stylekey}
- Note that is makes sense to call this option several times for a
+ Note that it makes sense to call this option several times for a
node, in order to connect it to several nodes. This is especially
useful for joining in branches, see the next section.
\begin{codeexample}[]