Yes, of course you can have a minimum example, here it is.
The problem is: I have to cite like this in the text.
Assmann wrote this and this [Assmann et al. 2002]. <-- no numbers, only author and year
This works fine. But in the bibliography at the end of my report the editors want me to enumerate every \bibitem.
Latex does not do this automatically. In stead every bibitem is listed like in the text one after each other and nothing else
The output looks like:
Bibliography
[Assmann et al. 2002] Assmann G (2002): "Simple scoring scheme", NEJM 2002. <-- *not* enumerated

[Assmann et al. 2003] Assmann G (2003): "Newer scoring scheme", Lancet 2003.
...
but must be:
Bibliography
1. [Assmann et al. 2002] Assmann G (2002): "Simple scoring scheme", NEJM 2002. <----------- enumerated and correctly cited
2. [Assmann et al. 2003] Assmann G (2003): "Newer scoring scheme", Lancet 2003.
...
Unfortunately it is not possible to combine \bibitem and the enumerate-environment.
I hope it makes it more clear. Thanks for the help
Code: Select all
\documentclass[a4paper,12pt,twoside,pointlessnumbers,bibtotocnumbered]{scrreprt}
\usepackage{german,textcomp,latexsym}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ae}
\usepackage{graphicx,color,array,colortbl,longtable,url,ragged2e,lscape}
\usepackage[format=hang,margin=1cm]{caption}
\usepackage{multirow}
\usepackage{breakcites}
\begin{document}
\chapter{Coronary Heart Disease}
\section{Risk Scores}
Assmann and colleagues developed a simple scoring scheme for calculation the risk of acute coronary events for the next 10 years in 2001 \cite{Assmann2002} \dots
\begin{thebibliography}{100}
\markboth{7\hspace{1.2ex}Literaturverzeichnis}{}
\bibitem[Assmann et al.\ 2002]{Assmann2002} Assmann G, Cullen P, Schulte H (2002): \emph{Simple scoring scheme for calculating the risk of acute coronary events based on the 10-year follow-up of the prospective cardiovascular Münster (PROCAM) study.} Circulation.\ \underline{105 (3)}, 310--5.
\end{thebibliography}
\end{document}