|
@ -40,6 +40,11 @@ These files should be copied wherever TeX can find it, for example in your TEXMF
|
|||
|
||||
# History
|
||||
|
||||
## Version 0.5.1
|
||||
|
||||
* modified symbol "end of movement authority"
|
||||
* added symbols "braking point" and "danger point"
|
||||
|
||||
## Version 0.5
|
||||
|
||||
* new improved syntax for topology
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#! /bin/sh
|
||||
#!/usr/bin/env sh
|
||||
|
||||
echo "specify version ( e.g. v0.5 ):"
|
||||
read VERSION
|
|
@ -1,4 +1,4 @@
|
|||
#! /bin/sh
|
||||
#!/usr/bin/env sh
|
||||
|
||||
echo "specify path for installation!"
|
||||
echo "( e.g. /usr/local/texlive/2019/texmf-dist/tex/latex ):"
|
||||
|
|
BIN
doc/manual.pdf
|
@ -0,0 +1,83 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# Copyright (c) 2018 - 2020, Martin Scheidt (ISC license)
|
||||
# Permission to use, copy, modify, and/or distribute this file for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
||||
|
||||
LATEXMK=`which latexmk`
|
||||
PDF2SVG=`which pdf2svg`
|
||||
|
||||
SYMBOLS='
|
||||
block_clearing_point_forward
|
||||
block_signal_forward
|
||||
braking_point_forward
|
||||
bridge
|
||||
bufferstop_forward
|
||||
clearing_point
|
||||
combined_signal_forward
|
||||
danger_point_forward
|
||||
derailer_left_forward
|
||||
diamond_crossing_left
|
||||
distant_signal_forward
|
||||
distant_speed_signal_forward
|
||||
double-slip_turnout_left
|
||||
end_of_movement_authority_forward
|
||||
interlocking
|
||||
level_crossing_single
|
||||
main_track
|
||||
parked_vehicles
|
||||
platform_left
|
||||
route_clearing_point_forward
|
||||
route_signal_forward
|
||||
secondary_track
|
||||
shunt_limit_forward
|
||||
shunt_signal_forward
|
||||
shunt_signal_forward_locked
|
||||
speed_signal_forward
|
||||
train_direction_forward
|
||||
train_drive_automatic
|
||||
train_drive_human
|
||||
train_ghost_direction_forward
|
||||
train_moving_fast_forward
|
||||
train_moving_forward
|
||||
train_moving_slow_forward
|
||||
train_shunt_mode_forward
|
||||
train_shunting_forward
|
||||
transmitter_right
|
||||
transmitter_right_forward
|
||||
turnout_left_forward
|
||||
turnout_left_forward_left_position
|
||||
turnout_left_forward_moving_points
|
||||
turnout_left_forward_right_position
|
||||
turnout_with_fouling_left_forward
|
||||
view_point_forward
|
||||
'
|
||||
|
||||
for SYMBOL in $SYMBOLS; do IFS=",";
|
||||
set -- $SYMBOL;
|
||||
# header tex file
|
||||
echo '\\documentclass[tikz,border=2,preview=true,convert]{standalone}' > tmp.tex
|
||||
echo '\\IfFileExists{tikzlibrarytrackschematic-dev.code.tex}{%' >> tmp.tex
|
||||
echo '\\usetikzlibrary{trackschematic-dev.topology}' >> tmp.tex
|
||||
echo '\\usetikzlibrary{trackschematic-dev.trafficcontrol}' >> tmp.tex
|
||||
echo '\\usetikzlibrary{trackschematic-dev.vehicles}' >> tmp.tex
|
||||
echo '\\usetikzlibrary{trackschematic-dev.constructions}' >> tmp.tex
|
||||
echo '\\usetikzlibrary{trackschematic-dev.messures}' >> tmp.tex
|
||||
echo '}{\\usetikzlibrary{trackschematic}}' >> tmp.tex
|
||||
echo '\\begin{document}' >> tmp.tex
|
||||
echo '\\begin{tikzpicture}[font=\\sffamily]' >> tmp.tex
|
||||
echo '\\path (-0.1,-1.1) rectangle (6.1,1.1);' >> tmp.tex
|
||||
# input symbol
|
||||
echo '\\input{../snippets/'$1'.tikz}' >> tmp.tex
|
||||
# footer tex file
|
||||
echo '\\end{tikzpicture}' >> tmp.tex
|
||||
echo '\\end{document}' >> tmp.tex
|
||||
# compile tmp.tex
|
||||
$LATEXMK -auxdir=.tex -outdir=.tex -bibtex- -f -pdf -shell-escape -interaction=nonstopmode tmp.tex
|
||||
# copy and convert symbols
|
||||
mv tmp-0.png symbols_png/$1.png
|
||||
$PDF2SVG tmp.pdf symbols_svg/$1.svg
|
||||
mv tmp.pdf symbols_pdf/$1.pdf
|
||||
# cleanup
|
||||
$LATEXMK -c
|
||||
rm tmp.tex
|
||||
done
|
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 5.0 KiB |
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="179.748pt" height="66.362pt" viewBox="0 0 179.748 66.362" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0009375 0.0013125 L 170.079062 0.0013125 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.04 -2.834625 L 85.04 2.833344 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.04 -2.834625 L 82.204063 -5.670563 L 85.04 -8.5065 L 87.875938 -5.670563 Z M 85.04 -2.834625 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 998 B |
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="179.748pt" height="66.362pt" viewBox="0 0 179.748 66.362" version="1.1">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 3.625 0 L 3.625 -0.5 L 2.5625 -0.5 L 2.5625 -5.390625 L 2.375 -5.390625 C 1.859375 -4.921875 1.21875 -4.890625 0.734375 -4.875 L 0.734375 -4.359375 C 1.046875 -4.375 1.4375 -4.390625 1.84375 -4.546875 L 1.84375 -0.5 L 0.78125 -0.5 L 0.78125 0 Z M 3.625 0 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0009375 0.0013125 L 170.079062 0.0013125 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.04 0.0013125 L 85.04 -11.338531 L 104.88375 -11.338531 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="84.146" y="47.134"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.88375 -16.908844 L 104.88375 -5.768219 C 104.88375 -5.713531 104.926719 -5.670563 104.981406 -5.670563 L 116.122031 -5.670563 C 116.176719 -5.670563 116.219688 -5.713531 116.219688 -5.768219 L 116.219688 -16.908844 C 116.219688 -16.963531 116.176719 -17.0065 116.122031 -17.0065 L 104.981406 -17.0065 C 104.926719 -17.0065 104.88375 -16.963531 104.88375 -16.908844 Z M 104.88375 -16.908844 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="179.748pt" height="66.362pt" viewBox="0 0 179.748 66.362" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0009375 0.0013125 L 170.079062 0.0013125 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 93.543906 -11.338531 L 100.629844 -15.588531 L 100.629844 -7.084625 Z M 93.543906 -11.338531 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.04 -8.033844 L 85.04 -11.338531 L 90.707969 -11.338531 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 89.875 36.015625 C 89.585938 37.558594 88.71875 40.0625 87.707031 41.792969 L 92.042969 41.792969 C 91.03125 40.0625 90.164062 37.558594 89.875 36.015625 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="179.748pt" height="66.362pt" viewBox="0 0 179.748 66.362" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 33.183594 21.84375 L 33.183594 44.519531 L 146.570312 44.519531 L 146.570312 21.84375 Z M 33.183594 21.84375 "/>
|
||||
<path style="fill:none;stroke-width:0.74721;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.512656 14.173187 L 28.348594 11.33725 L 141.735312 11.33725 L 144.567344 14.173187 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.74721;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.512656 -14.174469 L 28.348594 -11.338531 L 141.735312 -11.338531 L 144.567344 -14.174469 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0009375 0.0013125 L 170.079062 0.0013125 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="179.748pt" height="66.362pt" viewBox="0 0 179.748 66.362" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0009375 0.0013125 L 85.04 0.0013125 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 82.204063 5.669281 L 85.04 5.669281 L 85.04 -5.670563 L 82.204063 -5.670563 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 742 B |
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="179.748pt" height="66.362pt" viewBox="0 0 179.748 66.362" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0009375 0.0013125 L 170.079062 0.0013125 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.04 2.833344 L 85.04 -2.834625 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 82.204063 2.833344 L 87.875938 2.833344 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 942 B |
|
@ -0,0 +1,40 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="179.748pt" height="66.362pt" viewBox="0 0 179.748 66.362" version="1.1">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 5.515625 0 L 3.140625 -3.34375 L 5.40625 -5.53125 L 4.59375 -5.53125 L 1.546875 -2.59375 L 1.546875 -5.53125 L 0.796875 -5.53125 L 0.796875 0 L 1.546875 0 L 1.546875 -1.8125 L 2.65625 -2.875 L 4.703125 0 Z M 5.515625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 3.625 0 L 3.625 -0.5 L 2.5625 -0.5 L 2.5625 -5.390625 L 2.375 -5.390625 C 1.859375 -4.921875 1.21875 -4.890625 0.734375 -4.875 L 0.734375 -4.359375 C 1.046875 -4.375 1.4375 -4.390625 1.84375 -4.546875 L 1.84375 -0.5 L 0.78125 -0.5 L 0.78125 0 Z M 3.625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 1.796875 4.5625 C 2.703125 4.5625 3.3125 3.859375 3.53125 3.1875 C 3.828125 4.078125 4.484375 4.421875 5.015625 4.421875 C 5.953125 4.421875 6.765625 3.5625 6.765625 2.5 C 6.765625 1.375 5.9375 0.5625 5.015625 0.5625 C 4.484375 0.5625 3.828125 0.890625 3.53125 1.78125 C 3.296875 1.0625 2.65625 0.421875 1.796875 0.421875 C 0.703125 0.421875 -0.21875 1.328125 -0.21875 2.484375 C -0.21875 3.671875 0.734375 4.5625 1.796875 4.5625 Z M 5.015625 3.71875 C 4.296875 3.71875 3.84375 3.203125 3.84375 2.5 C 3.84375 1.71875 4.328125 1.25 5.015625 1.25 C 5.703125 1.25 6.1875 1.75 6.1875 2.484375 C 6.1875 3.265625 5.65625 3.71875 5.015625 3.71875 Z M 1.796875 3.75 C 0.84375 3.75 0.390625 3.125 0.390625 2.5 C 0.390625 1.796875 0.875 1.21875 1.796875 1.21875 C 2.84375 1.21875 3.234375 1.9375 3.234375 2.484375 C 3.234375 3.0625 2.828125 3.75 1.796875 3.75 Z M 1.796875 3.75 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0009375 0.0013125 L 170.079062 0.0013125 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.04 0.0013125 L 85.04 -11.338531 L 104.88375 -11.338531 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="78.265" y="47.287"/>
|
||||
<use xlink:href="#glyph0-2" x="84.146137" y="47.287"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 95.047813 -11.389313 L 104.797813 -16.959625 C 104.844688 -16.986969 104.88375 -16.963531 104.88375 -16.908844 L 104.88375 -5.768219 C 104.88375 -5.713531 104.844688 -5.690094 104.797813 -5.717438 L 95.047813 -11.28775 C 95.000938 -11.315094 95.000938 -11.361969 95.047813 -11.389313 Z M 95.047813 -11.389313 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.88375 -16.908844 L 104.88375 -5.768219 C 104.88375 -5.713531 104.926719 -5.670563 104.981406 -5.670563 L 116.122031 -5.670563 C 116.176719 -5.670563 116.219688 -5.713531 116.219688 -5.768219 L 116.219688 -16.908844 C 116.219688 -16.963531 116.176719 -17.0065 116.122031 -17.0065 L 104.981406 -17.0065 C 104.926719 -17.0065 104.88375 -16.963531 104.88375 -16.908844 Z M 104.88375 -16.908844 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.219688 -11.338531 C 116.219688 -8.205719 113.684531 -5.670563 110.551719 -5.670563 C 107.422813 -5.670563 104.88375 -8.205719 104.88375 -11.338531 C 104.88375 -14.471344 107.422813 -17.0065 110.551719 -17.0065 C 113.684531 -17.0065 116.219688 -14.471344 116.219688 -11.338531 Z M 116.219688 -11.338531 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="123.459" y="42.029"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 99.308594 47.410156 L 99.308594 41.628906 C 99.308594 41.574219 99.265625 41.53125 99.207031 41.53125 L 91.878906 41.53125 C 91.824219 41.53125 91.78125 41.574219 91.78125 41.628906 L 91.78125 47.410156 C 91.78125 47.464844 91.824219 47.507812 91.878906 47.507812 L 99.207031 47.507812 C 99.265625 47.507812 99.308594 47.464844 99.308594 47.410156 Z M 99.308594 47.410156 "/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="92.278" y="42.029"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.0 KiB |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="179.748pt" height="66.362pt" viewBox="0 0 179.748 66.362" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0009375 0.0013125 L 170.079062 0.0013125 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.04 -11.338531 L 82.204063 -14.174469 L 85.04 -17.0065 L 87.875938 -14.174469 Z M 85.04 -11.338531 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.04 -8.033844 L 85.04 -9.920563 " transform="matrix(1,0,0,-1,4.835,33.181)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 89.875 36.015625 C 89.585938 37.558594 88.71875 40.0625 87.707031 41.792969 L 92.042969 41.792969 C 91.03125 40.0625 90.164062 37.558594 89.875 36.015625 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |