jezZiFeR wrote: >> Option 'date=long'. > > I´ve entered that in the preamble in the following manner: > \usepackage[natbib=true,style=authortitle-dw, style=footnote- > dw,date=long]{biblatex}
First, note that you should use /either/ authortitle-dw /or/ footnote-dw, not both styles! (It does no harm, since the last option overrides the previously given one.) The next thing is, I gave you not the correct hint, since it's not date=long, but urldate=long for the urldate. Note that the month will come out abbreviated as long as you use 'abbreviate=true' (which is the default). Thus, for a full month, you should use the options 'urldate=long' and 'abbreviate=false'. If you would like to preserve other abbreviations (like 'ed.'/'Hrsg.'), you could leave the abbreviate option as is and change the way biblatex handles the month names: 8<----------------------------------->8 \DefineBibliographyStrings{ngerman}{% november = {November} } 8<----------------------------------->8 Thus, the month name will not be abbreviated, even if abbreviate=true is set. Regards, Dominik.-