Hallo,

ich muss mein Literaturverzeichnis unterteilen, insofern als dass Bücher und Internetquellen seperat voneinander ausgegeben werden. Bsp.:

Bibliography

Books

Kock, N. F. (2007): E-Collaboration in Modern Organizations: Initiating and Man-
aging Distributed Projects (Premier Reference Source) (Gebundene Ausgabe).
1st edition. Idea Group Publishing, ISBN 1599048256

Internet Sources

Nachname1, V., Nachname2, V. (2005): Buch zwei im gleichen Jahr. No address
in , URL: http://test.com

Anbei folgendes Minimalbeispiel:

Code:
\begin{filecontents}{literaturdatenbank.bib}

@book	
{ kock:e_collaboration,
  author={Ned F. Kock},
  title={E-Collaboration in Modern Organizations: Initiating and Managing Distributed Projects (Premier Reference Source) (Gebundene Ausgabe)},
  publisher={Idea Group Publishing},
  isbn={1599048256},
  edition={First},
  month={November},
  year={2007},}
  
@MISC{nachname:2,
author = {Vorname1 Nachname1 and Vorname2 Nachname2},
title = {Buch zwei im gleichen Jahr},
year = {2005},
citeseerurl = {20.09.2008},
url = {http://test.com}
}

\end{filecontents}

%%
%% Main document
%%

% Document Class
\documentclass[12pt,a4paper, headsepline]{scrreprt} % Papierformat, Schriftgrš§e, Dokumentenart

% Packages
\usepackage[applemac]{inputenc} % deutscher Schriftsatz
%\usepackage[ibidem=strict,commabeforerest,see,authorformat=abbrv,pages=format]{jurabib} % Literature
\usepackage[ibidem=strict,commabeforerest,see,authorformat=abbrv,pages=format]{jurabib} % Literature
\renewcommand*{\bibbtasep}{, }
\renewcommand*{\bibbfsasep}{, }
\renewcommand*{\bibbstasep}{, }
\usepackage{ragged2e}

\renewcommand*{\biburlprefix}{, URL: } % ohne klammern in URL
\renewcommand*{\biburlsuffix}{}  % ohne klammern in URL

% Cite rules and definitions
\newcommand{\cf}[2]{{Cf. \citefield{author}{#1}, p. {#2}.}} % Zitat mit Confer (Cf.) [cf entsp. confer]

\makeatletter
\def\jb@use@fullcite{%
\jbauthorfont{\jb@@author}\normalfont{\jbhowsepbef oretitle}\jb@@fulltitle}%
\makeatother 
% Begin document
\begin{document}

Text1.\footnote{\cf{kock:e_collaboration}{1}}

Text2.\footnote{\cf{nachname:2}{1}}

% Literature
\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{literaturdatenbank}
\bibliographystyle{jureco}
\label{bib:literaturverzeichnis}
\newpage

\end{document}
Hat jemand eine Idee, wie ich das Literaturverzeichnis unterteilen kann und ggf. Sektionen (wie Books oder Internet Sources) zwinge auf derselben Seite zu starten?

Viele Grüße
Stefan