Skip to content

Commit

Permalink
Acknowledgments, preparing to release v1 and post to arxiv
Browse files Browse the repository at this point in the history
  • Loading branch information
drphilmarshall committed Aug 13, 2017
1 parent 06ebeb4 commit 9c30d33
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
6 changes: 5 additions & 1 deletion whitepaper/LSST_Observing_Strategy_White_Paper.tex
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
% Don't draw a line or print page numbers when a page is empty
% Pages are two-sided - so margins alternate
% Chapters start on the righthand side of the page

\pdfoutput=1
\usepackage{LSST_Observing_Strategy_White_Paper}


Expand Down Expand Up @@ -113,6 +113,10 @@

% --------------------------------------------------------------------

\include{acknowledgments}

% --------------------------------------------------------------------

\appendix

\include{metrics}
Expand Down
2 changes: 1 addition & 1 deletion whitepaper/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ LSST_Observing_Strategy_White_Paper.pdf: version LSST_Observing_Strategy_White_P
pdflatex LSST_Observing_Strategy_White_Paper.tex

version:
tcsh gen_version.csh --version 0.99
tcsh gen_version.csh --version 1.0 --release

run: $(ARG)_standalone.tex LSST_Observing_Strategy_White_Paper.sty $(BIBFILES) $(TEXFILES)
pdflatex $(ARG)_standalone.tex
Expand Down
11 changes: 10 additions & 1 deletion whitepaper/gen_version.csh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

set help = 0
set version = 0.0
set release = 0

while ( $#argv > 0 )
switch ($argv[1])
Expand All @@ -40,6 +41,10 @@ while ( $#argv > 0 )
shift argv
set help = 1
breaksw
case --{release}:
shift argv
set release = 1
breaksw
case -v:
shift argv
set version = $argv[1]
Expand Down Expand Up @@ -75,7 +80,11 @@ set date = `git log --date=rfc | head -4 | grep Date | cut -d':' -f2-`
set commit_url = "https://github.com/LSSTScienceCollaborations/ObservingStrategy/commit/${SHA}?diff=split"

# Append commit ID to version number:
set version = "${version}.${short_SHA}"
if ( $release ) then
set version = "${version}"
else
set version = "${version}.${short_SHA}"
endif

# Write tex file for input into paper:
set texfile = "thisversion.tex"
Expand Down

0 comments on commit 9c30d33

Please sign in to comment.