Go to file
Martin Scheidt c369ec7c1b excluding certain commits 2022-06-21 17:29:59 +02:00
.github excluding certain commits 2022-06-21 17:29:59 +02:00
doc handeling color background and foreground with native xcolor alias "\colorlet{}{}" instead of pgf macro 2022-06-01 14:50:32 +02:00
src handeling color background and foreground with native xcolor alias "\colorlet{}{}" instead of pgf macro 2022-06-01 14:50:32 +02:00
test handeling color background and foreground with native xcolor alias "\colorlet{}{}" instead of pgf macro 2022-06-01 14:50:32 +02:00
.gitignore zenodo upload with CLI zenodraft 2022-04-06 16:30:05 +02:00
CHANGELOG.md handeling color background and foreground with native xcolor alias "\colorlet{}{}" instead of pgf macro 2022-06-01 14:50:32 +02:00
CITATION.cff updated citation 2022-06-21 17:13:13 +02:00
CODE_OF_CONDUCT.md remove package requirement lmodern, minor corrections, added citing information 2021-09-30 12:37:31 +02:00
CONTRIBUTING.md zenodo upload with CLI zenodraft 2022-04-06 16:30:05 +02:00
LICENSE updated copyright 2022-01-06 20:17:51 +01:00
README.md excluding certain commits 2022-06-21 17:29:59 +02:00
build.sh removed trailing "v" for zenodo upload 2022-04-15 14:58:42 +02:00

README.md

TikZ-trackschematic

License: ISC DOI CI test


Installation

The tikz library is contained in the files:

  • tikz-trackschematic.sty
  • tikzlibrarytrackschematic.code.tex,
  • tikzlibrarytrackschematic.topology.code.tex,
  • tikzlibrarytrackschematic.trafficcontrol.code.tex,
  • tikzlibrarytrackschematic.vehicles.code.tex,
  • tikzlibrarytrackschematic.constructions.code.tex,
  • tikzlibrarytrackschematic.symbology.code.tex,
  • tikzlibrarytrackschematic.electrics.code.tex, and
  • tikzlibrarytrackschematic.measures.code.tex.

These files should be copied wherever TeX can find it, for example in your $TEXMF folder.

Alternatively, the tikz library is provided by CTAN as "tikz-trackschematic" and is thus part of the TeX Live distribution or can be installed via MiKTeX.

The library can then be loaded through the command

\usepackage{tikz-trackschematic}

in any LaTeX file.

The library can also be used in Overleaf.


Minimal working example

\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);

    % place a train on the track
    \train[forward] at (T) label ();

  \end{tikzpicture}
\end{document}

results in:

train on a track


Symbology and meaning

Please consult the symbology table for further information regarding meaning of the symbols.


Roadmap

  • rethink syntax
  • provide option for internationalziation (i18n)
  • rewrite library with better coding skills
  • include support for glossaries package

Acknowledgement

This project has received funding from the European Unions Horizon 2020 research and innovation programme under grant agreement No. 826347.


License

Open Source Initiative Approved License logo

Copyright (c) 2018 - 2022, Martin Scheidt <m.scheidt@tu-bs.de> (ISC License)

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.