Я пытаюсь заставить работать стиль цитирования Гарварда, но не знаю, как унитализировать заголовок в текстовой цитате. Я использую pdflatex и biber для получения результатов. pdflatex — это версия 3.14159265-2.6-1.40.15 на Arch Linux, а 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}