diff options
author | Karl Berry <karl@freefriends.org> | 2021-09-30 20:12:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-09-30 20:12:42 +0000 |
commit | e0203f54b481dfa2e7dc0ef0d286e443bc188ac0 (patch) | |
tree | 09d8c3016593b369c2e61a12c2714263814e6ae8 /Master/texmf-dist/doc/latex/tikz-trackschematic/README.md | |
parent | 238b0d49b198d51c90e018dca8452f66a6772c93 (diff) |
tikz-trackschematic (30sep21)
git-svn-id: svn://tug.org/texlive/trunk@60658 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/tikz-trackschematic/README.md')
-rw-r--r-- | Master/texmf-dist/doc/latex/tikz-trackschematic/README.md | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/Master/texmf-dist/doc/latex/tikz-trackschematic/README.md b/Master/texmf-dist/doc/latex/tikz-trackschematic/README.md index 74513d88c2d..f1067b5e005 100644 --- a/Master/texmf-dist/doc/latex/tikz-trackschematic/README.md +++ b/Master/texmf-dist/doc/latex/tikz-trackschematic/README.md @@ -19,28 +19,31 @@ The library can then be loaded through the command ```TeX \usepackage{tikz-trackschematic} ``` -in any TeX file. +in any LaTeX file. ------------ # Minimal working example ```TeX -\documentclass{standalone} -\usepackage{tikz-trackschematic} -\begin{document} +\documentclass{standalone} % LaTeX +\usepackage{tikz-trackschematic} % loading the library +\begin{document} \begin{tikzpicture} + % TikZ command: specify coordinates \coordinate (A) at (0,0); \coordinate (B) at (6,0); \coordinate (T) at (5,0); + % draw a track \maintrack (A) -- (B); - \train[forward] at (T) label (train); - \end{tikzpicture} + % place a train on the track + \train[forward] at (T) label (); + \end{tikzpicture} \end{document} ``` results in: @@ -58,6 +61,12 @@ A [glossary](https://glossary.ivev.bau.tu-bs.de/tiki-index.php?page=_Symbology) # History +## Version 0.6.1 + + * removed package requirement lmodern + * minor correction in manual + * added citation information + ## Version 0.6 * created an encapsulating package for future flexibility @@ -108,6 +117,7 @@ A [glossary](https://glossary.ivev.bau.tu-bs.de/tiki-index.php?page=_Symbology) * provide option for internationalziation (i18n) * replace "\gettikzxy" with "\path let" syntax * rewrite library with better coding skills + * include support for glossaries package ------------ @@ -119,7 +129,7 @@ A [glossary](https://glossary.ivev.bau.tu-bs.de/tiki-index.php?page=_Symbology) # License - [![Open Source Initiative Approved License logo](https://opensource.org/files/OSIApproved_100X125.png)](https://opensource.org) + [![Open Source Initiative Approved License logo](https://opensource.org/files/OSIApproved_100X125.png "Open Source Initiative Approved License logo")](https://opensource.org) Copyright (c) 2018 - 2021, Martin Scheidt \<m.scheidt@tu-bs.de\> (ISC License) |