Skip to content

Commit 9a1a441

Browse files
committed
critique and paper
1 parent 9ffc9ce commit 9a1a441

31 files changed

+54415
-0
lines changed

critiques/MetroViz Critique.pdf

42.2 KB
Binary file not shown.

critiques/MetroViz.pdf

51.5 KB
Binary file not shown.
Binary file not shown.

critiques/MetroVizCritique.pdf

42.6 KB
Binary file not shown.

critiques/MetroVizCritiqueGluck.pdf

52.2 KB
Binary file not shown.

critiques/MetroViz_Critique.pdf

38.5 KB
Binary file not shown.

critiques/MetroVizcomments.pdf

43.9 KB
Binary file not shown.

critiques/calendar view credit.pdf

4.92 MB
Binary file not shown.

critiques/critique_metroviz.pdf

55.3 KB
Binary file not shown.

final_report/CypressView.eps

+52,111
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

final_report/CypressView.pdf

1.78 MB
Binary file not shown.

final_report/README

+130
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
Created by Torsten Moeller ([email protected]), April 6 2004
2+
modified by Steven Bergner and Torsten Moeller, June 30 2006
3+
modified by James Peltier and Torsten Moeller, March 28, 2007
4+
last modified by Bernhard Finkbeiner, July 5, 2010
5+
6+
This distribution provides a document class for formatting papers
7+
according to the specifications for submission to conferences sponsored by
8+
the IEEE Visualization & Graphics Technical Committee (VGTC).
9+
10+
The only conferences that use the 'journal' document option:
11+
- IEEE Visualization Conference (Research and Application Papers Only)
12+
- IEEE Information Visualization Conference (Research and Application
13+
Papers Only)
14+
15+
It contains 13 files:
16+
17+
README - this file
18+
diamondrule.eps - abstract and body separator
19+
diamondrule.pdf - its PDF version
20+
vgtc.cls - the VGTC class file, which should be placed,
21+
somewhere in the TeX search path
22+
template.tex - an example paper
23+
template.bib - a small bibliography file used by the example
24+
sample.eps - an image used by the example paper
25+
sample.pdf - its PDF version
26+
template-journal*.pdf - an example proper pdf output in default
27+
conference mode, with and without teaser
28+
CypressView.eps - teaser image
29+
CypressView.pdf - its PDF version
30+
makefile - makefile including bibtex compilation and proper PDF
31+
generation
32+
33+
Prior to "building" a paper please be sure to run
34+
35+
make clean
36+
37+
This will ensure that the paper is built cleanly each and every time. We
38+
suggest to run this command before each new compilation.
39+
40+
To compile the example, run
41+
42+
make
43+
44+
or manually, if the makefile does not work for you
45+
46+
latex template
47+
bibtex template
48+
latex template
49+
latex template
50+
51+
If you run 'make' for the first time, a successful compilation will create
52+
a file called 'template.pdf'. Please make sure, that its layout is
53+
identical to the file 'template-journal.pdf' provided with this package.
54+
55+
The included makefile also allows you to run each step of the process
56+
manually. Below are a list of available options that may be passed to
57+
make
58+
59+
"make clean"
60+
removes all files that can be generated automatically.
61+
62+
"make gs7"
63+
This will perform all functions to build a proper paper using GhostScript 7.
64+
65+
"make gs8"
66+
This will perform all functions to build a proper paper using GhostScript 8.
67+
68+
"make dvi"
69+
This will process the .tex file and produce a DVI output file. This
70+
step may process the .tex file several times to process all references
71+
and citations.
72+
73+
"make ps"
74+
This will process the .tex file and the DVI output and convert it to a
75+
PostScript file.
76+
77+
"make pdf"
78+
This will process the .tex file using pdfTeX/pdflatex to produce a PDF
79+
file directly (not using a DVI and PostScript file).
80+
Please make sure that all fonts are embedded.
81+
You can use pdffonts my_document.pdf to check if they are.
82+
It is standard in all modern latex distributions.
83+
If you use eps figures (e.g. R or gnuplot figures) which you convert to
84+
PDF using epstopdf, do the following:
85+
Use GL_OPTIONS, a global environment variable for ghostscript:
86+
export GS_OPTIONS="-dEmbedAllFonts=true -dPDFSETTINGS=/printer"
87+
# and run
88+
epstopdf myfile.eps
89+
90+
See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=411651 for the
91+
origin of this solution.
92+
93+
94+
If you have problems with the makefile please notify us with the output of
95+
the errors produced when running make and we will work to figure out the
96+
resolution.
97+
98+
99+
To produce proper pdf output, please use:
100+
dvips -t letter -Pdownload35 -Ppdf -G0 template.dvi -o template.ps
101+
102+
The "-Ppdf" and "-G0" flags should be specified in that order; reversing
103+
them does not work, and will result in unacceptable results.
104+
105+
The following information is an exerpt from the ACM SIGGRAPH Conference /
106+
Symposium / Workshop Content Formatting Instructions which can be found
107+
here.
108+
109+
http://www.siggraph.org/publications/instructions/author-instructions.pdf
110+
111+
If you are using version 7.x of GhostScript, please use the following
112+
method of invoking ‘ps2pdf,’ in order to embed all typefaces and ensure
113+
that images are not downsampled or subsampled in the PDF creation process:
114+
115+
ps2pdf -dCompatibilityLevel=1.3 -dMaxSubsetPct=100 \
116+
-dSubsetFonts=true -dEmbedAllFonts=true \
117+
-dAutoFilterColorImages=false -dAutoFilterGrayImages=false \
118+
-dColorImageFilter=/FlateEncode -dGrayImageFilter=/FlateEncode \
119+
-dMonoImageFilter=/FlateEncode template.ps template.pdf
120+
121+
If you are using version 8.x of GhostScript, please use this method in
122+
place of the example above:
123+
124+
ps2pdf -dPDFSETTINGS=/prepress -dCompatibilityLevel=1.3 \
125+
-dAutoFilterColorImages=false -dAutoFilterGrayImages=false \
126+
-dColorImageFilter=/FlateEncode -dGrayImageFilter=/FlateEncode \
127+
-dMonoImageFilter=/FlateEncode template.ps template.pdf
128+
129+
This has been incorporated into the makefile and should no longer be needed
130+
unless you are building the PDF file manually.
2.51 KB
Binary file not shown.

final_report/diamondrule.eps

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
%!PS-Adobe-3.0 EPSF-3.0
2+
%%Title: diamondrule2.eps
3+
%%Creator: Gordon Kindlmann + emacs (TLA)
4+
%%BoundingBox: 0 0 213 12
5+
%%HiResBoundingBox: 0 0 213 12
6+
%%Pages: 1
7+
%%EndComments
8+
%%BeginProlog
9+
%%EndProlog
10+
%%Page: 1 1
11+
12+
% This is very much like "diamondrule.eps", but simpler, shorter, better
13+
% centered, and slightly thinner. Unlike in the original "diamondrule.eps":
14+
% * Diamond is made of circular arcs (with no rounding at the tips)
15+
% * Diamond is centered between the two lines
16+
% * The two lines are centered vertically
17+
% * The BoundingBox and HiResBoundingBox are equal. The original
18+
% HiResBoundingBox was 0 0 212.9981 12.2764
19+
% * The vertical height was decreased from 13 to 12 points, in recognition
20+
% of what the height was in the original HiResBoundingBox (12.2764).
21+
22+
0 setgray % everything is black
23+
24+
0 setlinecap % line parameters
25+
0.92 setlinewidth
26+
27+
0 6 moveto % first line (original lines were at Y ~= 6.3)
28+
95.45 0 rlineto stroke
29+
30+
213 6 moveto % second line
31+
-95.45 0 rlineto stroke
32+
33+
gsave % diamond
34+
106.5 6 translate % center (original was at around 106.755 5.875)
35+
4.55 dup scale % size
36+
0.31 % smaller means more concave on sides
37+
dup dup 1 add dup % begin stack hacking ...
38+
dup
39+
dup dup mul
40+
5 -1 roll
41+
dup mul
42+
add sqrt
43+
5 -2 roll
44+
atan
45+
dup
46+
180 add
47+
2 -1 roll
48+
-1 mul
49+
270 add % stack now has the 5 args to "arc"
50+
5 copy 5 copy 5 copy % copy the "arc" args 3 more times
51+
arc % do four sides of diamond
52+
90 rotate arc
53+
90 rotate arc
54+
90 rotate arc
55+
closepath fill
56+
grestore

final_report/diamondrule.pdf

1.3 KB
Binary file not shown.

final_report/makefile

+157
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
# This file seems to originate from something called 'the ultimate
2+
# latex makefile' that different authors worked on. Find original
3+
# versions at:
4+
# http://tadek.pietraszek.org/blog/2006/03/24/the-ultimate-latex-makefile/
5+
# (c) by Tadeusz Pietraszek
6+
# http://www.acoustics.hut.fi/u/mairas/UltimateLatexMakefile/
7+
# (c) by Matti Airas
8+
#
9+
# This file has been assembled and adjusted by Steven Bergner, Nov 2005
10+
# - support for multiple sub-texfiles
11+
# - fixed '=' '#' problem in mingw/msys environment (see E variable)
12+
# - PS compilation uses VGTC recommended settings
13+
# - targets restructured to make PDF by default
14+
#
15+
# Call 'make dvi' for minimal compilation, to check for proper latex
16+
# syntax. This can be much faster than a full PDF generation when big
17+
# figures are involved.
18+
#
19+
# Call 'make pdf' for direct compilation to PDF using pdfTeX. Note that this
20+
# requires you to use .pdf files. pdfTeX can not use .ps or .eps graphics.
21+
# use epstopdf to convert such files to .pdf files.
22+
#
23+
#----------------------------------------------------------------------------
24+
#adjust the following for your purpose
25+
26+
#set the a .dvi name that corresponds to your main .tex file
27+
DVIFILES = template.dvi
28+
MAINTEXFILE = $(DVIFILES:.dvi=.tex)
29+
SUBTEXFILES =
30+
BIBFILES = template.bib
31+
32+
#switch = to # when using ps2pdf in win32 (mingw/msys), i.e. uncomment 2nd line
33+
#E=\=
34+
E=\#
35+
36+
#adjust paper size: letter/a4
37+
PAPERSIZE=letter
38+
PDFLATEXPAPERSIZE="-sPAPERSIZE$E$(PAPERSIZE)"
39+
DVIPSPAPERSIZE=-t $(PAPERSIZE)
40+
#uncomment the following two lines when using option tvcgpapersize
41+
#DVIPSPAPERSIZE=-T 7.875in,10.75in
42+
#PDFLATEXPAPERSIZE=
43+
44+
#----------------------------------------------------------------------------
45+
LATEX = latex
46+
BIBTEX = bibtex
47+
L2H = latex2html
48+
PDFLATEX = ps2pdf
49+
PDFTEX = pdflatex
50+
DVIPS = dvips
51+
52+
RERUN = "(There were undefined references|Rerun to get (cross-references|the bars) right)"
53+
RERUNBIB = "No file.*\.bbl|Citation.*undefined"
54+
55+
PSFILES = $(DVIFILES:.dvi=.ps)
56+
57+
PDFFILES7 = $(DVIFILES:.dvi=.pdf7)
58+
PDFFILES8 = $(DVIFILES:.dvi=.pdf8)
59+
60+
PDFTEXFILES = $(DVIFILES:.dvi=.pdftex)
61+
62+
COPY = if test -r $*.toc; then cp $*.toc $*.toc.bak; fi
63+
#RM = /usr/bin/rm -f
64+
RM = rm -f
65+
66+
all: msg gs8
67+
68+
msg:
69+
@echo " This script defaults to GhostScript 8. If you are using GhostScipt 7 please type"
70+
@echo " make gs7 instead. If unsure type gs -v from the command line"
71+
@echo " To use pdflatex/pdftex, type make pdf"
72+
@echo ""
73+
74+
75+
pdf: clean pdftex
76+
77+
gs7: clean dvi ps pdf7
78+
79+
gs8: clean dvi ps pdf8
80+
81+
dvi: $(DVIFILES)
82+
83+
ps: $(PSFILES)
84+
85+
pdf7: $(PDFFILES7)
86+
87+
pdf8: $(PDFFILES8)
88+
89+
pdftex: $(PDFTEXFILES)
90+
91+
$(MAINTEXFILE) : $(SUBTEXFILES) $(BIBFILES)
92+
93+
%.dvi: %.tex
94+
$(COPY);$(LATEX) $<
95+
egrep -c $(RERUNBIB) $*.log && ($(BIBTEX) $*;$(COPY);$(LATEX) $<) ; true
96+
egrep $(RERUN) $*.log && ($(COPY);$(LATEX) $<) ; true
97+
egrep $(RERUN) $*.log && ($(COPY);$(LATEX) $<) ; true
98+
if cmp -s $*.toc $*.toc.bak; then . ;else $(LATEX) $< ; fi
99+
$(RM) $*.toc.bak
100+
# Display relevant warnings
101+
egrep -i "(Reference|Citation).*undefined" $*.log ; true
102+
103+
%.pdftex: %.tex
104+
echo "wir sind da"
105+
$(COPY);$(PDFTEX) $<
106+
egrep -c $(RERUNBIB) $*.log && ($(BIBTEX) $*;$(COPY);$(PDFTEX) $<) ; true
107+
egrep $(RERUN) $*.log && ($(COPY);$(PDFTEX) $<) ; true
108+
egrep $(RERUN) $*.log && ($(COPY);$(PDFTEX) $<) ; true
109+
if cmp -s $*.toc $*.toc.bak; then . ;else $(PDFTEX) $< ; fi
110+
$(RM) $*.toc.bak
111+
# Display relevant warnings
112+
egrep -i "(Reference|Citation).*undefined" $*.log ; true
113+
114+
%.ps: %.dvi
115+
# dvips -T 7.875in,10.75in -Ppdf -G0 $< -o $@ #use tvcgpapersize
116+
# dvips -Ppdf -G0 $< -o $@
117+
dvips $(DVIPSPAPERSIZE) -Pdownload35 -Ppdf -G0 $< -o $@
118+
# dvips $< -o $@
119+
120+
121+
%.pdf7: %.ps
122+
$(PDFLATEX) \
123+
$(PDFLATEXPAPERSIZE) \
124+
"-dMaxSubsetPct$E100" \
125+
"-dCompatibilityLevel$E1.3" \
126+
"-dSubsetFonts$Etrue" \
127+
"-dEmbedAllFonts$Etrue" \
128+
"-dAutoFilterColorImages$Efalse" \
129+
"-dAutoFilterGrayImages$Efalse" \
130+
"-dColorImageFilter$E/FlateEncode" \
131+
"-dGrayImageFilter$E/FlateEncode" \
132+
"-dMonoImageFilter$E/FlateEncode" \
133+
$< template.pdf
134+
135+
# $(PDFLATEX) $<
136+
137+
%.pdf8: %.ps
138+
$(PDFLATEX) \
139+
$(PDFLATEXPAPERSIZE) \
140+
"-dPDFSETTINGS=/prepress" \
141+
"-dCompatibilityLevel=1.3" \
142+
"-dAutoFilterColorImages=false" \
143+
"-dAutoFilterGrayImages=false" \
144+
"-dColorImageFilter=/FlateEncode" \
145+
"-dGrayImageFilter=/FlateEncode" \
146+
"-dMonoImageFilter=/FlateEncode" \
147+
"-dDownsampleGrayImages=false" \
148+
"-dDownsampleColorImages=false" \
149+
$< template.pdf
150+
# $(PDFLATEX) $<
151+
152+
# cleans anything that can be re-generated automatically, plus emacs backups
153+
clean:
154+
rm -f *.aux *.log *.bbl *.blg *.brf *.cb *.ind *.idx *.ilg \
155+
*.inx *.toc *.out $(DVIFILES) $(PSFILES) template.pdf *~
156+
157+
.PHONY : all pdf ps dvi clean $(MAINTEXFILE)

final_report/sample.eps

178 KB
Binary file not shown.

final_report/sample.pdf

1.49 KB
Binary file not shown.
54.6 KB
Binary file not shown.
796 KB
Binary file not shown.

final_report/template.aux

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
\relax
2+
\providecommand\hyper@newdestlabel[2]{}
3+
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
4+
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
5+
\global\let\oldcontentsline\contentsline
6+
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
7+
\global\let\oldnewlabel\newlabel
8+
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
9+
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
10+
\AtEndDocument{\ifx\hyper@anchor\@undefined
11+
\let\contentsline\oldcontentsline
12+
\let\newlabel\oldnewlabel
13+
\fi}
14+
\fi}
15+
\global\let\hyper@last\relax
16+
\gdef\HyperFirstAtBeginDocument#1{#1}
17+
\providecommand\HyField@AuxAddToFields[1]{}
18+
\providecommand\HyField@AuxAddToCoFields[2]{}
19+
\citation{kitware2003}
20+
\citation{Max:1995:OMF}
21+
\citation{notes2002}
22+
\citation{ware:2004:IVP}
23+
\citation{kindlmann:1999:SAG}
24+
\citation{levoy:1989:DSV}
25+
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces In the Clouds: Vancouver from Cypress Mountain.}}{1}{figure.1}}
26+
\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}{section.1}}
27+
\@writefile{toc}{\contentsline {section}{\numberline {2}Exposition}{1}{section.2}}
28+
\citation{Lorensen:1987:MCA}
29+
\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces SciVis Paper Acceptance Rate: 1994-2006}}{2}{table.1}}
30+
\newlabel{vis_accept}{{1}{2}{SciVis Paper Acceptance Rate: 1994-2006}{table.1}{}}
31+
\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Sample illustration.}}{2}{figure.2}}
32+
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Mezcal Head}{2}{subsection.2.1}}
33+
\citation{Nielson:1991:TAD}
34+
\bibstyle{abbrv}
35+
\bibdata{template}
36+
\bibcite{notes2002}{1}
37+
\bibcite{kindlmann:1999:SAG}{2}
38+
\bibcite{kitware2003}{3}
39+
\bibcite{levoy:1989:DSV}{4}
40+
\bibcite{Lorensen:1987:MCA}{5}
41+
\bibcite{Max:1995:OMF}{6}
42+
\bibcite{Nielson:1991:TAD}{7}
43+
\bibcite{ware:2004:IVP}{8}
44+
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.1.1}Ejector Seat Reservation}{3}{subsubsection.2.1.1}}
45+
\@writefile{toc}{\contentsline {paragraph}{Rejected Ejector Seat Reservation}{3}{section*.2}}
46+
\@writefile{toc}{\contentsline {section}{\numberline {3}Conclusion}{3}{section.3}}

0 commit comments

Comments
 (0)