0

If I delete the code between the two command tags, I got the normal footcite result. But with that code, which I use to print a bibliography for each form of publication, I got allignment differences. How could I change this?

\documentclass[a4paper,dutch]{report}
\usepackage[backend=bibtex,citestyle=verbose-ibid,bibstyle=numeric,sorting=nty,defernumbers=true]{biblatex}

%Begin
\DeclareBibliographyCategory{websites}
\DeclareBibliographyCategory{spoken}
\DeclareBibliographyCategory{books}

\AtEveryCitekey{
  \ifentrytype{misc}{
    \iffieldundef{howpublished}{
      \addtocategory{websites}{\thefield{entrykey}}
    }{
      \addtocategory{spoken}{\thefield{entrykey}}
    }
  }{
  }
}

\AtEveryCitekey{
  \ifentrytype{book}{
      \addtocategory{books}{\thefield{entrykey}}
  }{}
}
%End 

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}

@book{3,
  author = {Menger, Carl},
  title = {Grunds{\"a}tze der Volkswirtschaftslehre},
  publisher = {Braum{\"u}ller},
  year = {1982} 
}
@misc{blockchain1,
  author = {Blockchain},
  title = {{Transactie}},
  url = "https://blockchain.info/tx/1c12443203a48f42cdf7b1acee5b4b1c1fedc144cb909a3bf5edbffafb0cd204",
  urldate = "2014-11-16"
}
}
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}

\chapter{Chapter}
Some text\footcite{3} another one\footcite{blockchain1}

and a footnote\footnote{I would like to add a footnote with some information too.}

\end{document}
Scripter
  • 215
  • 1
  • 12

0 Answers0