von Mel123 » Sa 5. Jan 2013, 21:15
hallo,
@epllus: danke für den hinweis, erstelle das verzeichnis aber mit .bib
aber ohne jegliche info ist es auch schwierig, daher hier mal ein paar infos.
also ich habe folgende .tex datei:
%Schriftgröße, Layout, Papierformat, Art des Dokumentes
\documentclass[12pt,oneside,a4paper, bibtotoc]{scrartcl}
%Umlaute ermöglichen
\usepackage[utf8]{inputenc}
\usepackage{natbib}
%neue Rechtschreibung
\usepackage[ngerman]{babel}
%Grafiken einbinden
\usepackage{graphicx}
%Einstellungen der Seitenränder
\usepackage[left=3cm,right=3cm,top=3cm,bottom=2.5cm,includeheadfoot]{geometry}
%Kopf- und Fußzeile
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
%Kopfzeile links bzw. innen
\fancyhead[L]{\nouppercase{\leftmark}}
%Kopfzeile rechts bzw. außen
\fancyhead[R]{\thepage}
%Linie oben
\renewcommand{\headrulewidth}{0.5pt}
%kein Einrücken
\setlength\parindent{0pt}
%für die Titelseite
\title{Struktur und Komplexität von Geschäftsprozessen}
\author{Melanie Huber, Matrikelnummer 1220773}
\date{\today}
%Dokument Anfang
\begin{document}
%titelseite
\input{titelseite.tex}
%inhaltsverzeichnis
\tableofcontents
erstes zitat \citep{cardoso2008}
zweites zitat \citep{parthasarathyetal2006}.
%Literaturverzeichnis
\bibliographystyle{jtbnew}
\bibliography{literatur}
%Dokument Ende
\end{document}
und folgende .bib datei
@article{cardoso2008,
author = {Cardoso, J.},
title = { Business Process control-flow complexity: Metric, evaluation and validation},
journal = {International Journal of Web Services Research},
volume = {5},
pages = {49--76},
year = {2008},
}
@article{parthasarathyetal2006,
author = {Parthasarathy, S. and Anbazhagan, N.},
title = { Analyzing the software quality metrics for object oriented technology},
journal = {Information Technology Journal},
volume = {5},
pages = {1053--1057},
year = {2006},
}
hoffe das hilft weiter.
hallo,
@epllus: danke für den hinweis, erstelle das verzeichnis aber mit .bib
aber ohne jegliche info ist es auch schwierig, daher hier mal ein paar infos.
also ich habe folgende .tex datei:
[code]%Schriftgröße, Layout, Papierformat, Art des Dokumentes
\documentclass[12pt,oneside,a4paper, bibtotoc]{scrartcl}
%Umlaute ermöglichen
\usepackage[utf8]{inputenc}
\usepackage{natbib}
%neue Rechtschreibung
\usepackage[ngerman]{babel}
%Grafiken einbinden
\usepackage{graphicx}
%Einstellungen der Seitenränder
\usepackage[left=3cm,right=3cm,top=3cm,bottom=2.5cm,includeheadfoot]{geometry}
%Kopf- und Fußzeile
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
%Kopfzeile links bzw. innen
\fancyhead[L]{\nouppercase{\leftmark}}
%Kopfzeile rechts bzw. außen
\fancyhead[R]{\thepage}
%Linie oben
\renewcommand{\headrulewidth}{0.5pt}
%kein Einrücken
\setlength\parindent{0pt}
%für die Titelseite
\title{Struktur und Komplexität von Geschäftsprozessen}
\author{Melanie Huber, Matrikelnummer 1220773}
\date{\today}
%Dokument Anfang
\begin{document}
%titelseite
\input{titelseite.tex}
%inhaltsverzeichnis
\tableofcontents
erstes zitat \citep{cardoso2008}
zweites zitat \citep{parthasarathyetal2006}.
%Literaturverzeichnis
\bibliographystyle{jtbnew}
\bibliography{literatur}
%Dokument Ende
\end{document}
[/code]
und folgende .bib datei
[code]
@article{cardoso2008,
author = {Cardoso, J.},
title = { Business Process control-flow complexity: Metric, evaluation and validation},
journal = {International Journal of Web Services Research},
volume = {5},
pages = {49--76},
year = {2008},
}
@article{parthasarathyetal2006,
author = {Parthasarathy, S. and Anbazhagan, N.},
title = { Analyzing the software quality metrics for object oriented technology},
journal = {Information Technology Journal},
volume = {5},
pages = {1053--1057},
year = {2006},
}
[/code]
hoffe das hilft weiter.