mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 06:18:05 +02:00
misc
This commit is contained in:
parent
158ca6bc4e
commit
8403c3f68e
13 changed files with 3768 additions and 0 deletions
|
@ -42,6 +42,9 @@ Re-use
|
|||
Feel free to use and modify the examples of this repository.
|
||||
But please add a link to this repository or martin-thoma.com
|
||||
|
||||
*Most* content was completely created by myself. But check
|
||||
Readme-files in the specific folder to make sure you can use it.
|
||||
|
||||
Other resources
|
||||
===============
|
||||
* [LaTeX Templates](http://www.latextemplates.com/)
|
||||
|
|
62
documents/DYCOS/DYCOS.tex
Normal file
62
documents/DYCOS/DYCOS.tex
Normal file
|
@ -0,0 +1,62 @@
|
|||
\documentclass[runningheads]{llncs}
|
||||
|
||||
%---- Sonderzeichen-------%
|
||||
\usepackage {ngerman}
|
||||
%---- Codierung----%
|
||||
\usepackage[utf8]{inputenc} % for Unix and Windows
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{url}
|
||||
\usepackage{llncsdoc}
|
||||
%----- Mathematischer Zeichenvorrat---%
|
||||
\usepackage{amsmath}
|
||||
\usepackage{amssymb}
|
||||
\usepackage{enumerate}
|
||||
% fuer die aktuelle Zeit
|
||||
\usepackage{scrtime}
|
||||
\usepackage{listings}
|
||||
\usepackage{subfigure}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{mystyle}
|
||||
|
||||
\setcounter{tocdepth}{3}
|
||||
\setcounter{secnumdepth}{3}
|
||||
|
||||
\hypersetup{
|
||||
pdftitle = {Über die Klassifizierung von Knoten in einem dynamischen Netzwerk mit Inhalt},
|
||||
pdfauthor = {Martin Thoma},
|
||||
pdfkeywords = {DYCOS}
|
||||
}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\mainmatter
|
||||
\title{\"Uber die Klassifizierung von Knoten in einem dynamischen Netzwerk mit Inhalt}
|
||||
\titlerunning{Titel der Seminararbeit}
|
||||
\author{Martin Thoma}
|
||||
\authorrunning{Titel des Seminars}
|
||||
\institute{Betreuer: Christopher O\ss{}ner}
|
||||
\date{17.01.2014}
|
||||
\maketitle
|
||||
|
||||
\begin{abstract}%
|
||||
\input{abstract}
|
||||
\end{abstract}
|
||||
|
||||
\section{Einleitung}
|
||||
\input{Einleitung}
|
||||
|
||||
\section{Notation}
|
||||
\input{Notation}
|
||||
|
||||
\section{Inhalte}
|
||||
\input{Inhalte}
|
||||
|
||||
% Normaler LNCS Zitierstil
|
||||
%\bibliographystyle{splncs}
|
||||
\bibliographystyle{itmalpha}
|
||||
% TODO: Ändern der folgenden Zeile, damit die .bib-Datei gefunden wird
|
||||
\bibliography{literatur}
|
||||
|
||||
\end{document}
|
||||
|
4
documents/DYCOS/Einleitung.tex
Normal file
4
documents/DYCOS/Einleitung.tex
Normal file
|
@ -0,0 +1,4 @@
|
|||
Der DYCOS-Algorithmus nutzt Random Walks im Graphen, startend
|
||||
von dem zu klassifizierenden Knoten $n$. Dabei wird pro Random Walk
|
||||
gezählt, welche Klasse $K$ am häufigsten gesehen wird. Der Knoten $n$
|
||||
wird dann als zu $K$ zugehörig klassifiziert.
|
1
documents/DYCOS/Inhalte.tex
Normal file
1
documents/DYCOS/Inhalte.tex
Normal file
|
@ -0,0 +1 @@
|
|||
Die Texte
|
14
documents/DYCOS/Makefile
Normal file
14
documents/DYCOS/Makefile
Normal file
|
@ -0,0 +1,14 @@
|
|||
DOKUMENT = DYCOS
|
||||
|
||||
make:
|
||||
pdflatex $(DOKUMENT).tex -output-format=pdf # Referenzen erstellen
|
||||
pdflatex $(DOKUMENT).tex -output-format=pdf # Referenzen einbinden
|
||||
make clean
|
||||
|
||||
ebook:
|
||||
latexml --dest=$(DOKUMENT).xml $(DOKUMENT).tex
|
||||
latexmlpost -dest=$(DOKUMENT).html $(DOKUMENT).xml
|
||||
ebook-convert $(DOKUMENT).html $(DOKUMENT).epub --language de --no-default-epub-cover
|
||||
|
||||
clean:
|
||||
rm -rf $(TARGET) *.class *.html *.log *.aux *.out *.thm *.idx *.toc *.ind *.ilg *.glg *.glo *.gls *.ist *.xdy
|
3
documents/DYCOS/Notation.tex
Normal file
3
documents/DYCOS/Notation.tex
Normal file
|
@ -0,0 +1,3 @@
|
|||
Im folgenden sei $\nodes$ die Menge der Knoten zum Zeitpunkt
|
||||
$t$, $\labeledNodes \subseteq \nodes$ die Menge der Knoten
|
||||
mit Label, $\edges$ die Kantenmenge.
|
13
documents/DYCOS/abstract.tex
Normal file
13
documents/DYCOS/abstract.tex
Normal file
|
@ -0,0 +1,13 @@
|
|||
Teilweise gelabelte Netzwerke sind allgegenwärtig. Publikationsdatenbanken
|
||||
bzw. Wikipedia mit Kategorien, soziale Netzwerke mit Eigenschaften der
|
||||
Benutzer und Datenbanken zur Analyse des Kaufverhaltens mit
|
||||
Produkt oder Kundeneigenschaften als Labels. Da die Labels nur
|
||||
teilweise vorhanden sind, ist es wünschenswert die fehlenden Labels
|
||||
zu ergänzen. Doch häufig sind diese Netzwerke viele $\num{10000}$
|
||||
Knoten groß und ändern sich laufend. Außerdem stehen textuelle
|
||||
Inhalte zu den Knoten bereit, die bei der Klassifikation genutzt
|
||||
werden können.
|
||||
|
||||
Der DYCOS-Algorithmus nutzt diese und kann auf große, dynamische
|
||||
Netzwerken angewandt werden.
|
||||
|
1325
documents/DYCOS/itmalpha.bst
Normal file
1325
documents/DYCOS/itmalpha.bst
Normal file
File diff suppressed because it is too large
Load diff
3
documents/DYCOS/literatur.bib
Normal file
3
documents/DYCOS/literatur.bib
Normal file
|
@ -0,0 +1,3 @@
|
|||
% This file was created with JabRef 2.3.1.
|
||||
% Encoding: Cp1252
|
||||
|
1190
documents/DYCOS/llncs.cls
Normal file
1190
documents/DYCOS/llncs.cls
Normal file
File diff suppressed because it is too large
Load diff
42
documents/DYCOS/llncsdoc.sty
Normal file
42
documents/DYCOS/llncsdoc.sty
Normal file
|
@ -0,0 +1,42 @@
|
|||
% This is LLNCSDOC.STY the modification of the
|
||||
% LLNCS class file for the documentation of
|
||||
% the class itself.
|
||||
%
|
||||
\def\AmS{{\protect\usefont{OMS}{cmsy}{m}{n}%
|
||||
A\kern-.1667em\lower.5ex\hbox{M}\kern-.125emS}}
|
||||
\def\AmSTeX{{\protect\AmS-\protect\TeX}}
|
||||
%
|
||||
\def\ps@myheadings{\let\@mkboth\@gobbletwo
|
||||
\def\@oddhead{\hbox{}\hfil\small\rm\rightmark
|
||||
\qquad\thepage}%
|
||||
\def\@oddfoot{}\def\@evenhead{\small\rm\thepage\qquad
|
||||
\leftmark\hfil}%
|
||||
\def\@evenfoot{}\def\sectionmark##1{}\def\subsectionmark##1{}}
|
||||
\ps@myheadings
|
||||
%
|
||||
\setcounter{tocdepth}{2}
|
||||
%
|
||||
\renewcommand{\labelitemi}{--}
|
||||
\newenvironment{alpherate}%
|
||||
{\renewcommand{\labelenumi}{\alph{enumi})}\begin{enumerate}}%
|
||||
{\end{enumerate}\renewcommand{\labelenumi}{enumi}}
|
||||
%
|
||||
\def\bibauthoryear{\begingroup
|
||||
\def\thebibliography##1{\section*{References}%
|
||||
\small\list{}{\settowidth\labelwidth{}\leftmargin\parindent
|
||||
\itemindent=-\parindent
|
||||
\labelsep=\z@
|
||||
\usecounter{enumi}}%
|
||||
\def\newblock{\hskip .11em plus .33em minus -.07em}%
|
||||
\sloppy
|
||||
\sfcode`\.=1000\relax}%
|
||||
\def\@cite##1{##1}%
|
||||
\def\@lbibitem[##1]##2{\item[]\if@filesw
|
||||
{\def\protect####1{\string ####1\space}\immediate
|
||||
\write\@auxout{\string\bibcite{##2}{##1}}}\fi\ignorespaces}%
|
||||
\begin{thebibliography}{}
|
||||
\bibitem[1982]{clar:eke3} Clarke, F., Ekeland, I.: Nonlinear
|
||||
oscillations and boundary-value problems for Hamiltonian systems.
|
||||
Arch. Rat. Mech. Anal. {\bf 78} (1982) 315--333
|
||||
\end{thebibliography}
|
||||
\endgroup}
|
10
documents/DYCOS/mystyle.sty
Normal file
10
documents/DYCOS/mystyle.sty
Normal file
|
@ -0,0 +1,10 @@
|
|||
\usepackage{siunitx}
|
||||
\sisetup{
|
||||
group-digits=true,
|
||||
group-separator={\,},
|
||||
}
|
||||
|
||||
\def\edges{\ensuremath{\mathcal{E}_t}}
|
||||
\def\nodes{\ensuremath{\mathcal{N}_t}}
|
||||
\def\labeledNodes{\ensuremath{\mathcal{T}_t}}
|
||||
\DeclareUnicodeCharacter{00A0}{~}
|
1098
documents/DYCOS/splncs.bst
Normal file
1098
documents/DYCOS/splncs.bst
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue