diff options
author | Karl Berry <karl@freefriends.org> | 2015-02-24 23:12:22 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-02-24 23:12:22 +0000 |
commit | 6393e0fa1c1b3ab125e43ddbeecbdca740f7d6ac (patch) | |
tree | 90fba8c6dfe27fdf2da8a732c92a9bfc1202f60f /Master/texmf-dist/doc/latex/tikz-palattice/example2_circular.tex | |
parent | 1c213966cd11f3051008400dd35517dc22c1e600 (diff) |
tikz-palattice (24feb15)
git-svn-id: svn://tug.org/texlive/trunk@36373 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/tikz-palattice/example2_circular.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/tikz-palattice/example2_circular.tex | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tikz-palattice/example2_circular.tex b/Master/texmf-dist/doc/latex/tikz-palattice/example2_circular.tex new file mode 100644 index 00000000000..3bf446797f3 --- /dev/null +++ b/Master/texmf-dist/doc/latex/tikz-palattice/example2_circular.tex @@ -0,0 +1,60 @@ +%% example2_circular.tex +%% Copyright 2015 J. Schmidt +%% tikz-palattice LaTeX package +% +% This work may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.3 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.3 or later is part of all distributions of LaTeX +% version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is J. Schmidt. +% +% This work consists of the files tikz-palattice.sty and tikz-palattice_documentation.tex +% and the 5 example files example1_linear.tex, example2_circular.tex, +% example3_coordinates.tex, example4_labels.tex and elsa.tex + +\documentclass[]{standalone} +\usepackage[ngerman]{babel} +\usepackage[utf8]{inputenc} +\usepackage{tikz-palattice} + + +\begin{document} + +\begin{lattice} + \setlinecolor{drift}{red} + + \drift{1} + \dipole{M1}{2}{45} + \drift{1} + \dipole{M2}{2}{45} + \drift{1} + \setelementcolor{dipole}{green!50!black} % change color of all following dipoles + \dipole{M3}{2}{45} + \drift{1} + \dipole{M4}{2}{45} + \drift{1} + \begin{scope} % color change only applied within scope + \setelementcolor{dipole}{red}[red] % optional 3rd argument sets top color -> no (visible) color gradient + \dipole{M5}{2}{45} + \end{scope} + \drift{1} + \dipole{M6}{2}{45} + \drift{1} + \resetelementcolor{dipole} % reset color of following dipoles to default + \dipole{M7}{2}{45}[r] % rectangle dipole type + \drift{1} + \dipole{M8}{2}{45}[br] % bend rectangle dipole type + + \drawrule{(1,-0.5)} +\end{lattice} + +\end{document} + + + |