all data in data subdirectory

This commit is contained in:
Jan Benda 2017-01-24 15:16:29 +01:00
parent d21083b5ec
commit 768d5bb7e6
9 changed files with 63 additions and 6 deletions

View File

@ -1,9 +1,9 @@
all:
for d in `ls -d project_*/`; do \
for d in `ls -d project_*`; do \
if test "x$$d" != "xproject_template"; then \
echo "Processing $$d" ; \
a=$$(echo $$d*.tex) ; \
rm $${a%.tex}.zip ; \
cd $$d; $(MAKE) zip ; cd .. ; \
fi \
done
mv project_*/*zip .
@ -14,5 +14,6 @@ clean:
$(MAKE) -C $$d clean ; \
done
rm -f *~
rm -f *.zip
rm -rf auto

56
projects/header.tex Normal file
View File

@ -0,0 +1,56 @@
\usepackage{pslatex}
\usepackage[mediumspace,mediumqspace,squaren]{SIunits} % \ohm, \micro
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage[breaklinks=true,bookmarks=true,bookmarksopen=true,pdfpagemode=UseNone,pdfstartview=FitH,colorlinks=true,citecolor=blue]{hyperref}
%%%%% layout %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[left=20mm,right=20mm,top=25mm,bottom=25mm]{geometry}
\pagestyle{headandfoot}
\header{{\bfseries\large Scientific Computing}}{{\bfseries\large Project: \ptitle}}{{\bfseries\large Januar 24th, 2017}}
\runningfooter{}{\thepage}{}
\setlength{\baselineskip}{15pt}
\setlength{\parindent}{0.0cm}
\setlength{\parskip}{0.3cm}
\renewcommand{\baselinestretch}{1.15}
%%%%% listings %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{listings}
\lstset{
language=Matlab,
basicstyle=\ttfamily\footnotesize,
numbers=left,
numberstyle=\tiny,
title=\lstname,
showstringspaces=false,
commentstyle=\itshape\color{darkgray},
breaklines=true,
breakautoindent=true,
columns=flexible,
frame=single,
xleftmargin=1em,
xrightmargin=1em,
aboveskip=10pt
}
%%%%% math stuff: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{bm}
\usepackage{dsfont}
\newcommand{\naZ}{\mathds{N}}
\newcommand{\gaZ}{\mathds{Z}}
\newcommand{\raZ}{\mathds{Q}}
\newcommand{\reZ}{\mathds{R}}
\newcommand{\reZp}{\mathds{R^+}}
\newcommand{\reZpN}{\mathds{R^+_0}}
\newcommand{\koZ}{\mathds{C}}
%%%%% page breaks %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\continue}{\vfill\hspace*{\fill}$\rightarrow$\newpage}
%%%%% new commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\qt}[1]{\textbf{#1}\\}
\newcommand{\code}[1]{\texttt{#1}}

View File

@ -1,3 +1,3 @@
ZIPFILES=*.jpg
ZIPFILES=
include ../project.mk

View File

Before

Width:  |  Height:  |  Size: 915 KiB

After

Width:  |  Height:  |  Size: 915 KiB