0

[I am actually reposting a modified version of my older question because I wasn't able to solve it myself]

I am trying to generate a german bibliography using Bibtex. Here are some three examples of my items:

@book{Kirchgässner-Wolters-2007,
  AUTHOR        = "Kirchgässner, Gebhard and Wolters, Jürgen",
  EDITOR        = "",
  TITLE         = "Introduction to Modern Time Series Analysis",
  language      = "",
  edition       = "1",
  series        = "",
  address       = "",
  PUBLISHER     = "Springer",
  month         = "",
  YEAR          = "2007",
  volume        = "",
  number        = "",
  note          = "",
  url           = ""
}


@unpublished{Chun-Lin-2010,
  AUTHOR        = "Chun-Lin, Liu",
  TITLE         = "A Tutorial of the Wavelet Transform",
  language      = "",
  month         = "February",
  year          = "2010",
  NOTE          = "unpublished",
  url           = ""
}

 @misc{Hyndman-Athamasopoulos-2012,
   author = "Hyndman, Rob J. and Athanasopoulos, George",
   title = "Forecasting: principles and practice",
   year = "2012",
   url = "https://www.otexts.org/book/fpp",
   note = "[Online; accessed 21-February-2014]"
 }

The code I used is this:

\documentclass[a4paper,twoside,10pt]{report}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[ansinew]{inputenc}
\usepackage[german]{babelbib} 

\begin{document}
\nocite{*}
\bibliography{bibtemplate} 
\bibliographystyle{babunsrt}


\end{document}

This results in the following bibliography:

enter image description here

I would like to have it without numbers but instead sorted according to the first authors name and with indents for the following lines of the same item. I would like to solve it without biblatex.

I find some solutions for one problem, but the others remain unsolved or it rusuls in new problems.

I would be grateful for any help!

DatamineR
  • 711
  • 1
    Have you tried using the bibliography style apalike? – Ryan May 22 '14 at 20:50
  • @Ryan Hi Ryan, just did it, but don't really like the result. I would like to have no number or anything else at all. Just sort by the authors name – DatamineR May 22 '14 at 20:53
  • Well, darn. MiKTeX repositories are down for maintenance, so I can't download the babelbib package to give it a run. I'll try again later. – Ryan May 22 '14 at 20:59
  • In the meantime, have you looked at this one: http://tex.stackexchange.com/questions/35369/replace-or-remove-bibliography-numbers – Ryan May 22 '14 at 21:06
  • Look very good! The result look almost as I want them. The only thing is that there are no indents. – DatamineR May 22 '14 at 21:12
  • Have you tried using makebst? It should be available from your command line, and will present you with a bunch of options for your bibliography. Once you pick all your options, it will generate the style for you. – Ryan May 23 '14 at 14:53

0 Answers0