Seite 1 von 1

Suche bestimmten Bibtex-Typ

Verfasst: So 18. Dez 2011, 15:07
von enbima
Hallo, ich suche einen bestimmten Bibtex-Typ für folgenden Literatureintrag:

http://imageshack.us/photo/my-images/823/blaid.png/

Ich hab schon geschaut aber "@ARTICLE" ist es nicht und die anderen wie @BOOK usw. ergeben keinen Sinn, kann mir jemand auf anhieb sagen wie ich genau so einen Eintrag erzeugen kann?

mfG

Korrekter Eintrag

Verfasst: So 18. Dez 2011, 18:09
von localghost
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