diff --git a/projects/Makefile b/projects/Makefile new file mode 100644 index 0000000..dbdf636 --- /dev/null +++ b/projects/Makefile @@ -0,0 +1,16 @@ +all: + for d in `ls -d project_*/`; do \ + echo "Processing $$d" ; \ + cd $$d; $(MAKE) zip ; cd .. ; \ + done + + mv project_*/*zip . + +clean: + for d in `ls -d project_*/`; do \ + echo "Cleaning up $$d" ; \ + cd $$d; $(MAKE) clean ; cd .. ; \ + done + + rm -f *.zip + rm -rf auto diff --git a/projects/disclaimer.tex b/projects/disclaimer.tex new file mode 100644 index 0000000..261c2a4 --- /dev/null +++ b/projects/disclaimer.tex @@ -0,0 +1,37 @@ + \fbox{\parbox{0.985\linewidth}{ \small + + {\bf Evaluation criteria:} + + Each project has three elements that are graded: (i) the code, + (ii) the slides/figures, and (iii) the presentation. + + \vspace{.5cm} + + The {\bf code} and the {\bf presentation} should be uploaded to + ILIAS before the presentations start on Thursday. Everything + should be bundeled into a {\em single} zip-file. The + presentation should be handed in as pdf. + + \vspace{.5cm} + + The {\bf code} should be exectuable without any further + adjustments from us. This means that you should include all + additional functions you wrote and the data into the + zip-file. The {\em main script} should produce the same {\em + figures} that you use in your slides. The figures should follow + the guidelines for proper plotting as discussed in the first + statistics lecture. The code should be properly commented and + comprehensible by third persons (use proper and consistent + variable names). + + \vspace{.5cm} + + The {\bf slides} should be handed in along with the code and in + pdf format. We will store them all on one computer to allow fast + transitions between talks. The {\bf presentation} itself should + be {\em at most} 10min long and be held in English. In the + presentation you should (i) briefly describe the problem, (ii) + explain how you solved it algorithmically (don't show your + entire code), and (iii) present figures showing your results. + + }} \ No newline at end of file diff --git a/projects/project_template/Makefile b/projects/project_template/Makefile new file mode 100644 index 0000000..585d602 --- /dev/null +++ b/projects/project_template/Makefile @@ -0,0 +1,10 @@ +latex: + pdflatex *.tex > /dev/null + pdflatex *.tex > /dev/null + +clean: + rm -f *.log *.aux *.zip *.out auto + rm -f `basename *.tex .tex`.pdf + +zip: latex + zip `basename *.tex .tex`.zip *.pdf *.dat *.mat diff --git a/projects/project_template/template.tex b/projects/project_template/template.tex new file mode 100755 index 0000000..61f2e1a --- /dev/null +++ b/projects/project_template/template.tex @@ -0,0 +1,42 @@ +\documentclass[addpoints,10pt]{exam} +\usepackage{url} +\usepackage{color} +\usepackage{hyperref} + +\pagestyle{headandfoot} +\runningheadrule +\firstpageheadrule +\firstpageheader{Scientific Computing}{Project Assignment}{11/05/2014 + -- 11/06/2014} +%\runningheader{Homework 01}{Page \thepage\ of \numpages}{23. October 2014} +\firstpagefooter{}{}{} +\runningfooter{}{}{} +\pointsinmargin +\bracketedpoints + +%\printanswers +%\shadedsolutions + + +\begin{document} +%%%%%%%%%%%%%%%%%%%%% Submission instructions %%%%%%%%%%%%%%%%%%%%%%%%% +\sffamily +% \begin{flushright} +% \gradetable[h][questions] +% \end{flushright} + +\begin{center} + \input{../disclaimer.tex} +\end{center} + +%%%%%%%%%%%%%% Questions %%%%%%%%%%%%%%%%%%%%%%%%% + +\begin{questions} + \question What was the questions for 42? +\end{questions} + + + + + +\end{document}