BibTeX, biblatex and biberHow to use multibib...?

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Medova
Posts: 28
Joined: Thu Nov 06, 2008 4:20 pm

How to use multibib...?

Post by Medova »

main:

Code: Select all

\documentclass[a4paper,11pt,twoside,openright,english,fleqn]{report}
\usepackage[isbn,url]{dk-bib}
\usepackage[]{natbib}
\usepackage{multibib}
\newcites{dk}{Litteratur}
\newcites{eng}{Bibliography}

\begin{document}
\part{First part with bib.}
\chapter{Header I}
Some random text for part I. According to \citedk{IMAUFdk}
\bibliographystyledk{dk-unsrt}
\bibliographydk{lit}

\part{Second part with bib.}
\chapter{Header II}
Some random text for part II. \citeeng{Galbraith}
\bibliographystyleeng{unsrt}
\bibliographyeng{lit}
\end{document}
lit.bib:

Code: Select all

@Manual{Galbraith,
  author="Chris Galbraith",
  title ="{Sheet Metal Forming Simulation Using {LS-DYNA}}",
  organization ="\\Metal Forming Analysis Corporation",
  year ="2001",
  note ="Course notes"
}
@Misc{IMAUFdk,
author = "{IMAUF}",
title = {{Verbundprojekt} {IMAUF} -- {Innovative} {Methoden} zur {Auslegung} von {Umformwerkzeugen} im {Fahrzeugbau}},
year = {2009},
note = {\href{http://www.imauf.de}{www.IMAUF.de} tilgået 5. september 2009},
}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Post Reply