How to make the title of the paper from:
NoiseSpeech, a noise of living bodies : towards Attali's "Composition"
to
NoiseSpeech, a noise of living bodies : towards Attali's 'Composition'
I am using:
title={NoiseSpeech, a noise of living bodies: towards Attali's \mkbibquote{Composition}},
My MWE:
% \documentclass[12pt,oneside]{book} % Remove draft option to show figures (for final draft), otherwise keep for faster production
\documentclass{article}
\usepackage{enumitem} % macros to modify appearance of 'itemize' environments
\usepackage{xpatch}
\usepackage[backend=biber,
% style=authoryear,
style=authoryear-comp,
% citestyle=authoryear,
dashed=false,
maxcitenames=2,
maxbibnames=99,
giveninits,
uniquename=init]{biblatex}
\DeclareNameAlias{sortname}{family-given} %for second and third author name
\renewcommand{\labelnamepunct}{\space} %to delete . after (1997)
\DeclareFieldFormat[article, incollection, unpublished]{title}{#1}
\DeclareFieldFormat*{title}{#1} %for conference title delete ".."
\DeclareFieldFormat[incollection]{title}{\mkbibemph{#1}} %for incollecion title italic ONLY
\DeclareFieldFormat[thesis]{title}{\mkbibemph{#1}} %for phdthesis title italic ONLY
\renewbibmacro{in:}{%
\ifentrytype{article}{}{\printtext{\bibstring{in}\intitlepunct}}}
\newcommand*{\volnumdelim}{}
\DeclareFieldFormat[article,periodical]{number}{\mkbibparens{#1}}
\renewbibmacro*{volume+number+eid}{%
\printfield{volume}%
\setunit*{\volnumdelim}%
\printfield{number}%
\setunit{\addcomma\space}%
\printfield{eid}}
\newcommand*{\jourvoldelim}{\addcomma\space}
\newcommand*{\jourserdelim}{\newunitpunct}
\newcommand*{\servoldelim}{\jourvoldelim}
\newcommand*{\volnumdatedelim}{\addspace}
\renewbibmacro*{journal+issuetitle}{%
\usebibmacro{journal}%
\setunit*{\jourvoldelim}%
\iffieldundef{series}
{}
{\setunit*{\jourserdelim}%
\printfield{series}%
\setunit{\servoldelim}}%
\usebibmacro{volume+number+eid}%
\setunit{\volnumdatedelim}%
\usebibmacro{issue+date}%
\setunit{\addcolon\space}%
\usebibmacro{issue}%
\newunit}
% to make volume (number), eg. 4(2)
% for delete comma after Author A and Aurhor b
\DefineBibliographyExtras{english}{%
\let\finalandcomma\empty
\let\finalandsemicolon\empty
}
\renewcommand{\compcitedelim}{\addsemicolon\space}
\DeclareNameAlias{editorin}{given-family}
\newbibmacro*{byeditor:in}{%
\ifnameundef{editor}
{}
{\printnames[editorin]{editor}%
\setunit{\addcomma\space}%
\usebibmacro{editorstrg}%
\clearname{editor}}}
\xpatchbibdriver{inbook}
{\usebibmacro{in:}%
\usebibmacro{bybookauthor}%
\newunit\newblock
\usebibmacro{maintitle+booktitle}%
\newunit\newblock
\usebibmacro{byeditor+others}}
{\usebibmacro{in:}%
\usebibmacro{bybookauthor}%
\newunit\newblock
\usebibmacro{byeditor:in}%
\newunit\newblock
\usebibmacro{maintitle+booktitle}%
\newunit\newblock
\usebibmacro{byeditor+others}}
{}{}
% \usepackage{parskip}
\usepackage[hypcap=false]{caption}
\usepackage{csquotes}
\usepackage[unicode,colorlinks,citecolor=blue]{hyperref}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{dean2005noisespeech,
title={NoiseSpeech, a noise of living bodies: towards Attali's \mkbibquote{Composition}},
author={Dean, Roger T},
journal={NMEDIAC: Journal of New Media \& Culture},
year={2005},
number={1},
volume={3}
}
\end{filecontents*}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
in \textcite{dean2005noisespeech}
\printbibliography
\end{document}

babellanguage settings. What language are you using? American English uses double quotes (by default). British and Australian English uses single quotes. You can load thecsquotespackage and specify what style you want for outer and inner quote marks too. – David Purton Sep 25 '19 at 00:44\usepackage[english]{babel}. You could specify\usepackage[british]{babel}and you will get single quotes everywhere at the outer level. But this may not be what you want and will also affect other things like date format. – David Purton Sep 25 '19 at 00:46\usepackage[british]{babel}. How can do acsquotes. In my MWE above, I do not have this\usepackage[british]{babel}– aan Sep 25 '19 at 09:26\usepackage{csquotes}with\usepackage[style=british]{csquotes}. – David Purton Sep 26 '19 at 00:18\usepackage[style=british]{csquotes}. However, overleaf saidLaTexError: Option clash for packae csquotesandplease see your \documentclass declaration may fix this.I check mine, i am using\documentclass[12pt,oneside]{book}. – aan Sep 26 '19 at 12:53\usepackage{csquotes}. You're loading it twice now. Remove\usepackage{csquotes}. – David Purton Sep 26 '19 at 13:59\documentclass[12pt,oneside]{book}and\usepackage[style=british]{csquotes}. It said:LaTexError: Option clash for packae csquotesandplease see your \documentclass declaration may fix this.– aan Sep 26 '19 at 14:15csquoteselsewhere in your code or included files. I do not get this error in your MWE and it successfully gives me only single quotes. – David Purton Sep 27 '19 at 00:19will create an issue of the letter=Jin my reference as I asked in https://tex.stackexchange.com/questions/510018/why-my-j-appear-in-referencing-is-different-from-appear-in-the-normal-j-chap – aan Sep 27 '19 at 15:33