Skip to content

Commit

Permalink
Add sponsored students and clean up proceedings build.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanv authored and jarrodmillman committed Feb 21, 2012
1 parent fba4cfb commit fe2e5f5
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
9 changes: 3 additions & 6 deletions publisher/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,21 @@ all: clean proceedings
clean:
rm -rf $(PAPERDIR)/* $(BUILDDIR)/*

$(TEXDIR):
$(TEXDIR):
mkdir -p $@

$(TEXDIR)/cover.pdf: $(TEXDIR)
inkscape --export-dpi=600 --export-pdf=$@ $(TEMPLATES)/cover.svg

$(TEXDIR)/%.tex: $(TEXDIR)
$(BUILDTMPL) $(@F)

$(TEXDIR)/%.pdf: $(TEXDIR)/%.tex
($(TEX2PDF) $(<F) 1>/dev/null)

title-pdf: $(TEXDIR)/title.pdf
cover-pdf: $(TEXDIR)/cover.pdf
copyright-pdf: $(TEXDIR)/copyright.pdf
organization-pdf: $(TEXDIR)/organization.pdf
students-pdf: $(TEXDIR)/students.pdf

front-pdf: title-pdf copyright-pdf organization-pdf
front-pdf: title-pdf copyright-pdf organization-pdf students-pdf

papers:
./build_papers.py
Expand Down
21 changes: 21 additions & 0 deletions publisher/_templates/students.tex.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
\documentclass[letterpaper,compsoc,onecolumn,twoside,english]{IEEEtran}
\thispagestyle{empty}
\pagestyle{empty}
\usepackage[utf8]{inputenc}

\begin{document}

\section*{Sponsored Students}
\vspace{4mm}

\begin{itemize}

{{for student in sponsored_students}}
\item[] \normalsize\textsc{%
{{student['name']}}}, \small{%
{{student['org']}}, {{student['location']}}}
{{endfor}}

\end{itemize}

\end{document}
4 changes: 3 additions & 1 deletion scipy_proc.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"license": "Creative Commons Attribution License (CCAL)"}
},
"organization": [

{
"name": "Conference Chairs",
"members": [
Expand Down Expand Up @@ -56,3 +56,5 @@
}
]
}


0 comments on commit fe2e5f5

Please sign in to comment.