Biblatex テキスト引用の単位化

Biblatex テキスト引用の単位化

ハーバード引用スタイルを機能させようとしていますが、本文引用でタイトルを単一化する方法がありません。結果を生成するために pdflatex と biber を使用しています。Arch Linux では pdflatex のバージョンは 3.14159265-2.6-1.40.15 で、biber のバージョンは 1.9 です。これが私の MWE です。

\documentclass[12pt,letterpaper]{article}
\usepackage[utf8]{inputenc}
\usepackage[margin=1.0in]{geometry}

\setlength{\headheight}{15pt}
\setlength{\parindent}{0.5in}

\usepackage{setspace}
\doublespacing

\usepackage[
    style=authoryear,
    urldate=comp,
    backend=biber
]{biblatex}

\addbibresource{test.bib}

\title{The Title}
\author{John Smith}
\date{\today}

\begin{document}
\maketitle

Hello world \autocite{test}.

\printbibliography
\end{document}

そして私のよだれかけ

@online{test,
    year = {n.d.},
    urldate = {2014-12-10},
    title = {My title},
    url = {http://www.google.com},
    note = {[online]}
}

サンプル画像

ご覧のとおり、本文中の引用ではタイトルが斜体になっています。これを斜体ではなく、参考文献では斜体のままにするにはどうしたらよいかと考えています。

答え1

オリジナルを変更するだけです\DeclareFieldFormat{citetitle}{\mkbibemph{#1}}:

\documentclass[12pt,letterpaper]{article}
\usepackage[utf8]{inputenc}
\usepackage[margin=1.0in]{geometry}
\usepackage{filecontents}
\begin{filecontents}{mytest.bib}
@online{test,
    year = {n.d.},
    urldate = {2014-12-10},
    title = {My title},
    url = {http://www.google.com},
    note = {[online]}
}
\end{filecontents}

\setlength{\headheight}{15pt}
\setlength{\parindent}{0.5in}

\usepackage{setspace}
\doublespacing

\usepackage[
    style=authoryear,
    urldate=comp,
    backend=biber
]{biblatex}

\addbibresource{mytest.bib}

\title{The Title}
\author{John Smith}
\date{\today}


\DeclareFieldFormat{citetitle}{{#1}}


\begin{document}
\maketitle

Hello world \autocite{test}.

\printbibliography

\end{document} 

ここに画像の説明を入力してください

関連情報