Using LyX. I made the conversion from bibtex to biblatex today, as I think it will help get a quick response, and be better for the long-term. I am trying to take the apa format and tweak a few things. I could use some help.
This is my preamble:
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa, backend=biber]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{C:~/refs.bib}
I want the journal, book, etc to be italicized AND bolded.
biblatex, you need to select author-year style in the document settings, and some other stuff. See http://tex.stackexchange.com/questions/146159/how-do-i-make-my-bibliography-according-to-harvard-style-author-year-alphabeti/148410#148410 – Torbjørn T. Jan 11 '14 at 20:50biblatexstyles is http://tex.stackexchange.com/a/13076/586, but you can perhaps use and modify the example found under Formatting of fields (and of citation postnotes). – Torbjørn T. Jan 11 '14 at 21:10\DeclareFieldFormat[<entry type>]{<format>}{<code>}where 'entry type' would be something like 'article', 'format' is 'journaltitle', and 'code' is\textbf{\emph{#1}}. – jon Jan 11 '14 at 23:21