summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/latex-bib2-ex/03-09-1.ltx
blob: e336c560ef65e9e80a9f771393ffb827c5841601 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
%% 
%%  Ein Beispiel der DANTE-Edition
%%  Bibliografie mit LaTeX
%%  2. Auflage
%%  Beispiel 03-09-1 auf Seite 80.
%%  Copyright (C) 2016 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[]{exaarticle}
\pagestyle{empty}
\setlength\textwidth{352.81416pt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\setlength\parindent{0pt}
\usepackage[ngerman]{babel}
\usepackage[paper=a5,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*}
%StartShownPreambleCommands
\usepackage{bibtopic,url}  % bibtex \jobname1  bibtex \jobname2
%StopShownPreambleCommands
\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}