diff --git a/tikz/sigmoid-function-2/Makefile b/tikz/sigmoid-function-2/Makefile index 89f1275..37a759c 100644 --- a/tikz/sigmoid-function-2/Makefile +++ b/tikz/sigmoid-function-2/Makefile @@ -1,10 +1,9 @@ SOURCE = sigmoid-function-2 DELAY = 80 DENSITY = 300 -WIDTH = 500 +WIDTH = 512 make: - pdflatex $(SOURCE).tex -output-format=pdf pdflatex $(SOURCE).tex -output-format=pdf make clean @@ -29,4 +28,6 @@ svg: #inkscape $(SOURCE).pdf --export-plain-svg=$(SOURCE).svg pdf2svg $(SOURCE).pdf $(SOURCE).svg # Necessary, as pdf2svg does not always create valid svgs: - inkscape $(SOURCE).svg --export-plain-svg=$(SOURCE).svg + inkscape $(SOURCE).svg --export-width=$(WIDTH) --export-plain-svg=$(SOURCE)1.svg + rsvg-convert -a -w 720 -f svg $(SOURCE)1.svg -o $(SOURCE).svg + rm $(SOURCE)1.svg diff --git a/tikz/sigmoid-function-2/sigmoid-function-2.tex b/tikz/sigmoid-function-2/sigmoid-function-2.tex index 72388e6..fdb59b4 100644 --- a/tikz/sigmoid-function-2/sigmoid-function-2.tex +++ b/tikz/sigmoid-function-2/sigmoid-function-2.tex @@ -7,17 +7,20 @@ \begin{document} \begin{tikzpicture} \begin{axis}[ - legend pos=north west, + legend pos=north west, axis x line=middle, axis y line=middle, + y tick label style={/pgf/number format/fixed, + /pgf/number format/fixed zerofill, + /pgf/number format/precision=1}, grid = major, width=16cm, height=8cm, grid style={dashed, gray!30}, xmin=-8, % start the diagram at this x-coordinate - xmax= 8, % end the diagram at this x-coordinate + xmax= 8, % end the diagram at this x-coordinate ymin= 0, % start the diagram at this y-coordinate - ymax= 1, % end the diagram at this y-coordinate + ymax= 1, % end the diagram at this y-coordinate %axis background/.style={fill=white}, xlabel=$t$, ylabel=sig$(t)$,