What I want is that at the end of each chapter it should automatically generate a list of references. Is that possible? and how? (I want to use BibTeX.) Thanks for your help.
Update:
I've added the follwing packages
\usepackage{natbib}
\usepackage{chapterbib}
Then in the Chapter I've added this:
\bibliographystyle{alphadin} %% Literaturverzeichnis generieren
\bibliography{../bibliography/einfuehrung}
Then I got this:
No ref in text and then I got a whitepage and then this:
What's going wrong? I want a new section for the list of references in each chapter
Update 2:
Main
\documentclass[
draft=false % =false: Finale Version; =true: Testversion
,paper=a4paper %% Papierformat A4 %%JW%% ,paper=a4
,ngerman %% Das Dokument ist in neuen deutschen Recht.
,numbers=noenddot % Kein Punkt nach Nummerierung im IV
,11pt %% Schriftgroesse %%JW%% ,fontsize=11pt
%,BCOR=5mm %% 5 mm Bindekorrektur beruecksichtigen
,listof=totoc %% Verzeichnisse im Inhaltsverzeichnis
,bibliography=totoc % Literaturverzeichnis im Inhaltsverzeichnis
,index=totoc %% Index im Inhaltsverzeichnis
]{book}
\usepackage{chapterbib}
\include{praeambel/praeambel}
\begin{document}
\frontmatter
\cleardoublepage
\tableofcontents
\mainmatter
\include{content/einfuehrung}
\end{document}
content/einfuehrung.tex
\chapter{Einleitung}
\section{Erl\"auterung der wichtigsten Konzepte}
asdasd
\section{Blubb}
adasd
\cite{Lidwin.2010}
\cleardoublepage
\bibliographystyle{alphadin} %% Literaturverzeichnis generieren
\bibliography{../bibliography/einfuehrung}
..bibliography/einfuerhung
@booklet{Lidwin.2010,
author = {{L}idwin, {K}urt},
year = {2010},
title = {{D}ie {I}nstallation von {L}a{T}e{X} unter {W}indows},
edition = {1.0},
language = deutsch,
publisher = {{HTWG} {K}onstanz},
institution = {{R}echenzentrum},
lastchecked = {05.05.2010},
}
Minimal Example: http://www.file-upload.net/download-11010291/SeminarReaderMinimal.zip.html



chapterbibshould help here – Oct 30 '15 at 13:23What do you want to see?
– Felix Oct 30 '15 at 13:40