This question has been heavily rewritten. That's why some of the comments and answers might be a little bit odd (they were responses to earlier versions of the question).
I'm using the BiBLaTeX apa package in conjunction with a .bib-file (generated by Mendeley) to create references. Now, in one of my titles, I would like some words to be in italics. Is it possible to invoke stylizing commands directly in the .bib-file?
Minimal (non)working example (taken from Lockstep):
\documentclass{article}
\usepackage[style=apa]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@thesis{A01,
author = {Author, A.},
year = {2001},
title = {This is a thesis title with some \mkbibemph{emphasized words}},
}
@book{B02,
author = {Buthor, B.},
year = {2002},
title = {This is a book title with some \mkbibemph{emphasized words}},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
\printbibliography
\end{document}
This just prints the whole title with italics (as specified by the apa style).

A \emph{title}in thetitlefield, then the word will be emphasized in the final printout. Would you show a minimal example, please? – egreg Nov 1 '11 at 11:09biblatex-apa, so you'll have to provide a minimal working example (MWE) – lockstep Nov 1 '11 at 11:34.bibfile generated by Mendeley. Maybe Mendeley tries to sanitize your input and goes over the top (i.e., removes\mkbibemeph). – lockstep Nov 1 '11 at 11:37