I want to include the website title in my bibliography. In the bibtex file (created by Zotero) the website title is stored as journal.
\RequirePackage{filecontents}
\begin{filecontents*}{mybib.bib}
@book{test1,
address = {London},
url = {www.jstor.com/somearticle.html},
urldate = {2013-10-29},
title = {Cyberprotest: {New} media, citizens, and social movements},
publisher = {Routledge},
editor = {van de Donk, Wim B. H. J.},
year = {2004}
}
@misc{test2,
title = {This is the title of the webpage},
url = {www.blog.com},
urldate = {2013-08-29},
journal = {This is the title of the website},
month = feb,
year = {2009}
}
}
\end{filecontents*}
\documentclass[a4paper]{article}
% Set the values for the bibliography
\usepackage[
style=apa,
backend=biber,
isbn=false,
url=false,
doi=false,
eprint=false,
hyperref=true,
backref=false,
firstinits=false,
]{biblatex}
% Remove series & month
\AtEveryBibitem{
\clearfield{series}
\clearfield{labelmonth}
\clearfield{edition}
}
% Set language
\usepackage[british]{babel}
\DeclareLanguageMapping{british}{british-apa}
\addbibresource{mybib.bib}
\begin{document}
\cite{test1}
\cite{test2}
\printbibliography
\end{document}
which produces


xpatch's commands (\xpatch...,\xappto..and the like; you do not seem to use it in this MWE, but I cannot be not sure about your actual document), there is no point in loading it. – moewe Apr 20 '14 at 04:51journalentry by Zotero, and as such should probably be dealt with at a Zotero-level (i.e. make sure that the entry is not exported in this particular manner; I'm sure there are a lot of options to control exporting to.bibfiles). This issue brings to light another problem though: Neither@miscnor@online(I would have argued that@onlineis the more appropriate entry type here) support themaintitlefield or anything else that would work as the "website title". – moewe Apr 20 '14 at 05:01titleand the page title intosubtitle(this will yield unsatisfying in-text citations though). Or you could use thetitleaddonfield for the website name. A last option is to not display the website title at all, also a viable option (in the few cases I had to cite actual webpages [make sure there is not floating around another document you could cite, a journal article or a techreport or the like], most of them did not have a website title that was worthwhile to be included). – moewe Apr 20 '14 at 05:05@inreferencecomes to mind. – moewe Apr 20 '14 at 05:31@incollection(see Author and Citation Information for "Classical Logic"),@inreferenceis actually just a special alias for@incollection, thebiblatexstandard styles treat both types the same (AFAIK). – moewe Apr 20 '14 at 05:41@miscdoesn't allow for amaintitlefield. – Francesco Apr 28 '14 at 21:18