Skip to content

Commit

Permalink
Make EPS file for paper
Browse files Browse the repository at this point in the history
  • Loading branch information
zimolzak committed May 4, 2024
1 parent 27a1942 commit 00594c2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AndyZimolzak/flow-colors-sparser.dot
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ MissedOD -> ML;
ML -> mlneg;
ML -> mlpos;

MLImproves[penwidth=0, label="PPV difference:\l E-trigger vs.\l ML-enhanced e-trigger", fontcolor="#777777", fontname="Helvetica Italic"]
MLImproves[penwidth=0, label="PPV difference:\l E-trigger vs.\l ML-enhanced e-trigger", fontcolor="#777777", fontname="Helvetica-Italic"]
hundredReview -> MLImproves [color="#888888", arrowtail=vee, dir=back, tailport=e]
MLImproves -> mlpos [color="#888888", arrowhead=vee, constraint=false, headport=e]

Expand Down
14 changes: 14 additions & 0 deletions AndyZimolzak/makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
.PHONY: all clean

files = wordvec-similarity.pdf vinci_technical.pdf handoff_doc.pdf # LaTeX
files += pert.pdf # Graphviz
files += prior-abstract.docx zimolzak-sidm-abstract.docx # pandoc

# Graphviz for talk

files += flow-colors-sparser.png flow-colors-sparser.pdf flow-colors-sparserLR.png

# Paper

files += flow-colors-sparser.eps




# Main

all: $(files)

# LaTeX
Expand All @@ -28,6 +39,9 @@ pert.pdf: pert.dot
flow-colors-sparser.pdf: flow-colors-sparser.dot
dot -Tpdf -o $@ $<

%.eps: %.dot # New one for paper
dot -Teps -o $@ $<

%.png: %.dot
dot -Tpng -o $@ $<

Expand Down

0 comments on commit 00594c2

Please sign in to comment.