%%
%%  Ein Beispiel der DANTE-Edition
%%
%%  Beispiel 02-01-1 auf Seite 13.
%%
%%  Copyright (C) 2010 Herbert Voss
%%
%%  It may be distributed and/or modified under the conditions
%%  of the LaTeX Project Public License, either version 1.3
%%  of this license or (at your option) any later version.
%%
%%  See http://www.latex-project.org/lppl.txt for details.
%%
%%
%% ==command bibtex ++FILE++1==
%% ==2command bibtex ++FILE++2==
% Show page(s) 1
%%
\documentclass[]{article}
\pagestyle{empty}
\setlength\textwidth{190.324pt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\setlength\parindent{0pt}
\usepackage[ngerman]{babel}
\usepackage[paper=a6,pagesize,DIV15]{typearea}
\usepackage{filecontents}
\begin{filecontents*}{books.bib}
@book{ColBenh:93,
  editor = "Fr{\'e}d{\'e}ric Benhamou and Alain Colmerauer",
  title = "Constraint {Logic} programming, {Selected} {Research}",
  publisher = "MIT Press",
  year = 1993
}
@book{Munt:93,
  author    = {Tra{\"\i}an Muntean},
  title     = {Puces tr{\`e}s performantes},
  publisher = {Hatier},
  address   = {Paris},
  series    = {Terres du futur, Les Editions UNESCO},
  year      = 1993,
}
@Book{Bechtolsheim:TP93a,
 author =       {von Bechtolsheim, Stephan},
 title =        {{\TeX} in {P}ractice: {B}asics},
 publisher =    {Springer-Verlag},
 year =         1993,
 ISBN =         {0-387-97595-0},
 LCCN =         {Z253.4.T47 B4 1993},
 volume =       {1},
 address =      {Berlin, Germany~/ Heidelberg, Germany~/ London, UK~/ etc.},
}
\end{filecontents*}
\begin{filecontents*}{articles.bib}
@incollection{RouxSmart:95,
   author    = "M. Roux and J. Smart",
   title     = "A Model of Medical Knowledge Representation, Application
                to the Reports Analysis of Descriptive Pathology",
   booktitle = "Methods of Information in Medecine",
   note      = {{\`A} para{\^{\i}}tre},
   publisher = "Schattauer",
   address   = "Holland",
   year      = 1995
}
\end{filecontents*}

\usepackage{bibtopic}
% bibtex \jobname1  bibtex \jobname2

\begin{document}
\bibliographystyle{alpha}
\section{Ein Test mit \texttt{bibtopic}}
Es werden zwei Bücher zitiert.~%
 \cite{ColBenh:93} und \cite{Munt:93}.
Jetzt noch ein Artikel:~
\cite{RouxSmart:95}.

\begin{btSect}[plain]{articles}
\section{Artikel-Referenzen}
\btPrintCited
\end{btSect}
\begin{btSect}{books}
\section{Buch-Referenzen}
\btPrintCited
\section{Nichtzitierte Artikel}
\btPrintNotCited
\end{btSect}
\end{document}