Commit 2ad0e386 authored by Peter Jansweijer's avatar Peter Jansweijer

add absolute calibration related figures

parent 22ebd702
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
@prompt $$$s
rem convert all commandline arguments that end in .svg to .pdf files using inkscape
for %%a in (*.svg) do call :do_convert %%a
goto donext
:do_convert
set PREFIX=%~n1
echo "Converting %1 to pdf"
start /wait inkscape -z -D --file=%1 --export-pdf=%PREFIX%.pdf
goto :eof
:donext
#! /bin/bash
for f in *.svg
do
echo converting $f to pdf
inkscape -D --export-filename=${1%.*}.pdf $f
done
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment