BibTeX, biblatex and biberTwo problems with biblatex

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
ãtreiju
Posts: 1
Joined: Thu Jan 03, 2013 6:32 pm

Two problems with biblatex

Post by ãtreiju »

Hi folks,

i have two problems with biblatex using authoryear:

1.) Entries without a year should be shown as "(n. d.)" (no date) in the bibliography. Currently, there is just nothing as a date.
NOTE: I can't do "date={n.d.}" in the .bib, because I manage my literature with Mendeley, and it doesn't support this, yet.

2.) Entries without years are currently showing just the "title" in the citation. I would like to have them: "author (n.d.a)" and "author (n.d.b)" etc...

Here is the minimal example:

Code: Select all

\begin{filecontents*}{MeineBib.bib}
 
@ARTICLE{Beispiel2010,
  author = {Max Muster},
  title = {goLaTeX Wiki-Beispiel},
  journal = {LaTeX Journal},
  year = {2010},
  pages = {1-3},
  timestamp = {2010.03.21},
  url = {http://www.golatex.de/wiki/index.php?title=Minimalbeispiel}
}

@misc{Deutsch-FranzosischesKulturzentruma,
address = {Ramallah},
author = {{Deutsch-Franz\"{o}sisches Kulturzentrum}},
title = {{Der B\"{u}cherbus}},
url = {http://www.goethe.de/ins/ps/ram/kue/bib/bbl/deindex.htm},
urldate = {2013-01-03}
}

@misc{Deutsch-FranzosischesKulturzentrum,
address = {Ramallah},
author = {{Deutsch-Franz\"{o}sisches Kulturzentrum}},
title = {{Bibliobus Projektpartner}},
url = {http://www.goethe.de/ins/ps/prj/dfk/bib/par/deindex.htm},
urldate = {2013-02-01}
}

\end{filecontents*}
 
 
\documentclass{scrartcl}

\RequirePackage[utf8]{inputenc}

\usepackage[ngerman]{babel}
\usepackage[babel,german=quotes]{csquotes}
\usepackage[
          style=authoryear-ibid,
          citestyle=authoryear-ibid,
          bibstyle=authoryear,
          isbn=false,
          dashed=false 
          ]{biblatex}

\bibliography{MeineBib}

\begin{document}
 
Dieser Beispieltext zitiert \footcite{Beispiel2010} einen Artikel aus der
Bib-Datei, welche in diesem Dokument angelegt wurde.\footcite{Deutsch-FranzosischesKulturzentruma}

Nächster Link.\footcite{Deutsch-FranzosischesKulturzentrum}

\printbibliography
 
\end{document} 
I hope, you can help me! :-)

Cheers, Atreiju.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Two problems with biblatex

Post by cgnieder »

Hi ãtreiju,

Welcome to the LaTeX community! Your example does not show what you're saying:
biblatex.png
biblatex.png (6.94 KiB) Viewed 3194 times
Would you mind adding an example that actually shows the unwanted behaviour?

Best regards
site moderator & package author
Post Reply