From 93db722d68cbb79b7e6da359ab48d4a14881e025 Mon Sep 17 00:00:00 2001 From: Ian Jauslin Date: Thu, 9 Jan 2020 22:42:09 -0800 Subject: As presented at UBC on 2020-01-10 --- figs/regime.fig/Makefile | 26 ++++++++++++++++++++++++++ figs/regime.fig/regime.gnuplot | 31 +++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 figs/regime.fig/Makefile create mode 100644 figs/regime.fig/regime.gnuplot (limited to 'figs/regime.fig') diff --git a/figs/regime.fig/Makefile b/figs/regime.fig/Makefile new file mode 100644 index 0000000..9544dcc --- /dev/null +++ b/figs/regime.fig/Makefile @@ -0,0 +1,26 @@ +PROJECTNAME=regime + +PDFS=$(addsuffix .pdf, $(PROJECTNAME)) +TEXS=$(addsuffix .tikz.tex, $(PROJECTNAME)) + +all: $(PDFS) + +$(PDFS): + gnuplot $(patsubst %.pdf, %.gnuplot, $@) > $(patsubst %.pdf, %.tikz.tex, $@) + pdflatex -jobname $(basename $@) -file-line-error $(patsubst %.pdf, %.tikz.tex, $@) + +install: $(PDFS) + cp $^ $(INSTALLDIR)/ + +clean-aux: + rm -f $(addsuffix .aux, $(PROJECTNAME)) + rm -f $(addsuffix .log, $(PROJECTNAME)) + +clean-dat: + rm -f $(addsuffix .tikz.tex, $(PROJECTNAME)) + rm -f short-time.dat + +clean-tex: + rm -f $(PDFS) + +clean: clean-dat clean-aux clean-tex diff --git a/figs/regime.fig/regime.gnuplot b/figs/regime.fig/regime.gnuplot new file mode 100644 index 0000000..b105b56 --- /dev/null +++ b/figs/regime.fig/regime.gnuplot @@ -0,0 +1,31 @@ +set ylabel "J\\hskip10pt" norotate +set xlabel "z" + +set xrange[0:2] +set yrange [0:] + +unset xtics +unset ytics + +# default output canvas size: 12.5cm x 8.75cm +set term lua tikz size 12.5,8.75 standalone + +set key off + +# 3=1+2 draw bottom and left sides of the box +set border 3 + +# set linestyle +set style line 1 linetype rgbcolor "#4169E1" linewidth 3 +set style line 2 linetype rgbcolor "#DC143C" linewidth 3 +set style line 3 linetype rgbcolor "#32CD32" linewidth 3 +set style line 4 linetype rgbcolor "#4B0082" linewidth 3 +set style line 5 linetype rgbcolor "#DAA520" linewidth 3 + +set pointsize 0.6 + +set label "\\bf [HL79]" at 0.85,3.5 front textcolor "white" +set label "\\bf [JL18]" at 1.65,3.5 front textcolor "white" + +plot (x<1 ? -log(x)+1 : 1) with filledcurves x2 linestyle 1 ,\ + (x>1.5 ? x : 1/0) with filledcurves x2 linestyle 2 -- cgit v1.2.3-70-g09d2