von localghost » So 18. Dez 2011, 18:09
Die Anleitung von
BibTeX schlägt den Eingabetyp "@inproceedings" vor.
\begin{filecontents*}{\jobname.bib}
@inproceedings{anderson:93,
author={R. Anderson},
title={Why cryptosystems fail},
booktitle={CCS '93: Proceedings of the 1st Conference on Computer and communications security},
publisher={ACM Press},
pages={215--227},
year={1993}
}
\end{filecontents*}
\documentclass[ngerman]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage{selinput}
\SelectInputMappings{%
adieresis={ä},
germandbls={ß},
Euro={€}
}
\usepackage{babel}
\bibliographystyle{unsrt}
\begin{document}
\nocite{*}
\bibliography{\jobname}
\end{document}
Thorsten
Die Anleitung von [url=http://ctan.org/pkg/bibtex]BibTeX[/url] schlägt den Eingabetyp "@inproceedings" vor.
[code]\begin{filecontents*}{\jobname.bib}
@inproceedings{anderson:93,
author={R. Anderson},
title={Why cryptosystems fail},
booktitle={CCS '93: Proceedings of the 1st Conference on Computer and communications security},
publisher={ACM Press},
pages={215--227},
year={1993}
}
\end{filecontents*}
\documentclass[ngerman]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage{selinput}
\SelectInputMappings{%
adieresis={ä},
germandbls={ß},
Euro={€}
}
\usepackage{babel}
\bibliographystyle{unsrt}
\begin{document}
\nocite{*}
\bibliography{\jobname}
\end{document}[/code]
Thorsten