some minor edits

This commit is contained in:
Lukas Heiligenbrunner 2020-04-22 10:20:51 +02:00 committed by Lukas Heiligenbrunner
parent 1a403640cf
commit f8c4fa22f8
3 changed files with 16 additions and 43 deletions

View File

@ -1,38 +0,0 @@
@article{knuth74,
author = {Knuth, Donald E.},
title = {Computer Programming As an Art},
journal = {Commun. ACM},
year = {1974},
pages = {667--673},
numpages = {7},
publisher = {ACM},
address = {New York, NY, USA}
}
@article{knuth92,
author = {Knuth, Donald E.},
title = {Two notes on notation},
journal = {Amer. Math. Monthly},
volume = {99},
year = {1992},
pages = {403--422}
}
@book{lamport94,
title = {LaTeX: A Document Preparation System},
author = {Lamport, Leslie},
year = {1994},
publisher = {Pearson Education India}
}
@online{structtutorialspoint,
title = {struct},
date = {04-2020},
url = {https://www.tutorialspoint.com/cprogramming/c_structures.htm},
}
@online{structchowto,
title = {struct},
date = {04-2020},
url = {http://www.c-howto.de/tutorial/strukturierte-datentypen/strukturen/},
}

View File

@ -155,7 +155,7 @@ void testfunc(ADR a){
\item stattdessen Objekte \item stattdessen Objekte
\end{itemize} \end{itemize}
\begin{lstlisting}[language=java] \begin{lstlisting}[language=java]
public class Dog public class Adresse
{ {
String name; String name;
String strasse; String strasse;
@ -190,14 +190,14 @@ public class Dog
%------------------------------------------------ %------------------------------------------------
\begin{frame}{Pointer in C} \begin{frame}{Pointer Syntax}
TODO TODO Code example
\end{frame} \end{frame}
%------------------------------------------------ %------------------------------------------------
\begin{frame}[focus] \begin{frame}[focus]
Danke fuerr eure Aufmerksamkeit! Danke für eure Aufmerksamkeit!
\end{frame} \end{frame}
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
@ -208,7 +208,7 @@ public class Dog
\begin{frame}{References} \begin{frame}{References}
\nocite{*} % Display all references regardless of if they were cited \nocite{*} % Display all references regardless of if they were cited
\bibliography{example} \bibliography{quellen}
\bibliographystyle{plain} \bibliographystyle{plain}
\end{frame} \end{frame}

11
src/quellen.bib Normal file
View File

@ -0,0 +1,11 @@
@online{structtutorialspoint,
title = {struct},
date = {04-2020},
url = {https://www.tutorialspoint.com/cprogramming/c_structures.htm},
}
@online{structchowto,
title = {struct},
date = {04-2020},
url = {http://www.c-howto.de/tutorial/strukturierte-datentypen/strukturen/},
}