this MWE used to output a bibliography and a list of mateiral but does no longer work. I get this error, when compiling: Package keyval Error: publisher undefined. Any help appreciated!
\documentclass[10pt,twoside,headings=normal,headsepline=true,numbers=noenddot]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber,sorting=nty,style=verbose,isbn=false,url=false,publisher=false]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{MWE.bib}
@INCOLLECTION{Doe1999,
author = {John Doe},
title = {Title of Book},
publisher = {Kluwer Law International},
year = {1999},
volume = {25},
series = {Series},
shortauthor = {Doe},
\begin{flushleft}
\end{flushleft}
shorttitle = {Title of Book}
}
@MISC{DoeJ,
author={Jane Doe},
title={Title of misc},
keyword={mat},
shortauthor={Doe J},
shorttitle={Misc}
}
\end{filecontents}
\renewcommand{\mkbibnamelast}[1]{\textsc{#1}}
\renewcommand{\mkbibnamefirst}[1]{\textsc{#1}}
\renewcommand{\mkbibnameprefix}[1]{\textsc{#1}}
\renewcommand{\mkbibnameaffix}[1]{\textsc{#1}}
\renewcommand*{\revsdnamepunct}{}
\defbibheading{lit}{\chapter*{Literaturverzeichnis}}
\defbibheading{mat}{\chapter*{Materialienverzeichnis}}
\DeclareFieldFormat[article,inbook,incollection,inproceedings,patent,thesis,unpublished,shorttitle,journal]{title}{#1}
\renewbibmacro*{cite}{%
\usebibmacro{cite:citepages}
\iffieldundef{shorthand}{%
\ifciteseen{%
\usebibmacro{cite:short}}
{\usebibmacro{cite:short}}}
{\usebibmacro{cite:shorthand}}}
\renewbibmacro*{cite:short}{%
\printnames{shortauthor}%
\setunit*{\addcomma\addspace}%
\printtext[bibhyperlink]{%
\printfield{shorttitle}}}%
\renewbibmacro*{finentry}{
\ifnameundef{shortauthor}
{
\iffieldundef{shorttitle}{%
\adddot}{
\printtext[parens]{%
{cit.}\addspace
\printfield{shorttitle}%
}\adddot
}
}
{
\iffieldundef{shorttitle}
{
\printtext[parens]{%
{cit.}\addspace
\printnames{shortauthor}%
}\adddot
}
{
\printtext[parens]{%
{cit.}\addspace
\printnames{shortauthor}\addcomma\addspace
\printfield{shorttitle}%
}\adddot
}
}
\finentry}
\renewbibmacro*{publisher+location+date}{%
\printlist{location}{\addspace}%
\printfield{year}{\setunit*{\addspace}}%
}
\renewbibmacro*{institution+location+date}{%
\renewcommand*{\newunitpunct{\addspace}}%
\newunit%
\printlist{institution}{\addspace}%
\printlist{location}{\addspace}%
\printfield{year}{\setunit*{\addspace}}%
}
\AtEveryBibitem{\clearfield{publisher}}
%\renewcommand{\newunitpunct}{\addcomma\addspace}
%\ifpunct{\renewcommand*{\nameyeardelim}{\addspace}}{}
\addbibresource{MWE.bib}
\begin{document}
\frontmatter
\printbibliography[title={Lit},heading=lit,notkeyword=mat]
\printbibliography[title={Mat},heading=mat,keyword=mat]
\mainmatter
Lorem ipsum\footcite[p. 1]{Doe1999}\footcite[p. 2]{DoeJ}.
\backmatter
\end{document}
geometry. You can still edit your question, and we can reopen it if you turn your code into a proper MWE. – doncherry Feb 10 '13 at 16:31publisher=falsein your load-time option settings for biblatex.publisherisn't an option for any of the standard styles. – Audrey Feb 10 '13 at 16:58