diff options
Diffstat (limited to 'Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex')
-rw-r--r-- | Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex b/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex index b3503a60108..177a9611d39 100644 --- a/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex +++ b/Master/texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex @@ -12,7 +12,7 @@ \begin{tikzlibrary}{er} This packages provides styles for drawing entity-relationship - diagrams. + diagrams. \end{tikzlibrary} This library is intended to help you in creating E/R-diagrams. It defines @@ -44,7 +44,7 @@ The package defines a simple style for drawing entities: \end{stylekey} \begin{stylekey}{/tikz/every entity} - This stype is envoked by the style |entity|. To change the + This style is evoked by the style |entity|. To change the appearance of entities, you can change this style. \begin{codeexample}[] \begin{tikzpicture} @@ -64,13 +64,13 @@ styles for entities. \begin{stylekey}{/tikz/relationship} This style works like |entity|, only it is to be used for - relationships. Again, |relationship|s are actually relationship types. + relationships. Again, |relationship|s are actually relationship types. \begin{codeexample}[] \begin{tikzpicture} \node[entity] (sheep) at (0,0) {Sheep}; \node[entity] (genome) at (2,0) {Genome}; \node[relationship] at (1,1.5) {has} - edge (sheep) + edge (sheep) edge (genome); \end{tikzpicture} \end{codeexample} @@ -85,7 +85,7 @@ styles for entities. \node[entity] (sheep) at (0,0) {Sheep}; \node[entity] (genome) at (2,0) {Genome}; \node[relationship] at (1,1.5) {has} - edge (sheep) + edge (sheep) edge (genome); \end{tikzpicture} \end{codeexample} @@ -98,7 +98,7 @@ styles for entities. \begin{stylekey}{/tikz/attribute} This style is used to indicate that a node is an attribute. To connect an attribute to its entity, you can use, for example, the - |child| command or the |pin| option. + |child| command or the |pin| option. \begin{codeexample}[] \begin{tikzpicture} \node[entity] (sheep) {Sheep} @@ -107,7 +107,7 @@ styles for entities. \end{tikzpicture} \end{codeexample} \begin{codeexample}[] -\begin{tikzpicture}[every pin edge/.style=draw] +\begin{tikzpicture}[every pin edge/.style=draw] \node[entity,pin={[attribute]60:name},pin={[attribute]120:color}] {Sheep}; \end{tikzpicture} \end{codeexample} @@ -115,7 +115,7 @@ styles for entities. \begin{stylekey}{/tikz/key attribute} This style is intended for key attributes. By default, the will - cause the attribute to be typeset in italics. Typcially, underlining + cause the attribute to be typeset in italics. Typically, underlining is used instead, but that looks ugly and it is difficult to implement in \TeX. \end{stylekey} @@ -134,14 +134,14 @@ styles for entities. child {node [key attribute] {name}}; \node[entity] (genome) at (2,0) {Genome}; \node[relationship] at (1,1.5) {has} - edge (sheep) + edge (sheep) edge (genome); \end{tikzpicture} \end{codeexample} \end{stylekey} -%%% Local Variables: +%%% Local Variables: %%% mode: latex %%% TeX-master: "pgfmanual-pdftex-version" -%%% End: +%%% End: |