\textquote
of csquote. Anyone?
Code: Select all
@MANUAL{theman,
author = {John Smith},
title = {Manual},
shorttitle = {Man},
series = {S},
year = {2000},
organization = {Org}
}
Code: Select all
\documentclass{article}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{biblatex}
\addbibresource{my.bib}
\begin{document}
\citetitle{theman} % Man
\citetitle*{theman} % Manual
\textquote[{theman}]{To get this, you have to do that.}
\printbibliography
\end{document}