patch_ov_fn/README.md

28 lines
551 B
Markdown
Raw Normal View History

2021-06-05 21:27:11 +02:00
# thw__ov_fn__patch
Designentwurf eines Patch für den THW OV Friedrichshafen.
2021-06-05 21:32:21 +02:00
2021-07-13 00:32:33 +02:00
![Path #1A](thw_patch_1a.svg)
![Path #1B](thw_patch_1b.svg)
2021-08-09 01:12:20 +02:00
![Path #1C](thw_patch_1c.svg)
2021-07-13 00:08:10 +02:00
# Lizenz:
[CC-BY-3.0](https://creativecommons.org/licenses/by/3.0/de/)
```
Urheber: L3D <l3d@c3woc.de>
https://creativecommons.org/licenses/by/3.0/de/
```
2021-08-09 01:12:20 +02:00
## Tipps for exporting
```bash
for i in *.svg
do
echo "Export: $i"
inkscape \
--actions="export-filename:$i.pdf; export-do;"\
--export-dpi 300 \
$i
done
# pdftk PDF1.pdf PDF2.pdf cat output PDF3.pdf
```