
私はこのクラスを使って修士論文に取り組んでいますbook
。引用を本文の脚注として書き、最後に参考文献の章にまとめる必要があります。これを行うには、脚注引用用と参考文献エントリ用の 2 つの異なるスタイルが必要です。
パッケージのおかげで、必要な脚注スタイルを作成できましたxpatch
。ただし、論文の最後にある参考文献のエントリのスタイルを変更する方法がわかりません (現時点では、2 つのスタイルは同じです)。
脚注の引用は次のように表記する必要があります。
N. サーネーム 他、論文のタイトル。ジャーナルのタイトル、編集者、年、ページ
書誌項目は次のように表記されます。
姓名、論文のタイトル。ジャーナルのタイトル、編集者、年
これは MWE です (脚注の引用スタイルは正しいですが、参考文献のスタイルは間違っています)。XeLaTeX と Biber を使用してコンパイルします。
\documentclass[a4paper,12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsfonts}
\usepackage[style=verbose,
doi=false,
firstinits=true,
maxbibnames=99
]{biblatex}
\usepackage{fontspec}
\usepackage{titlesec}
\usepackage{titletoc}
\usepackage{xpatch}
\usepackage[english]{babel}
\setmainfont{Arial}
\pagestyle{plain}
\titleformat{\chapter}[hang]
{\normalfont\huge\bfseries}{\thechapter}{1em}{}
\addbibresource{Bib.bib}
% et al. italics
\xpatchbibmacro{name:andothers}{%
\bibstring{andothers}%
}{%
\bibstring[\emph]{andothers}%
}{}{}
\usepackage{xpatch}
\xpretobibmacro{title}{\unspace\addcomma\addspace}{}{}
\DeclareFieldFormat[article]{title}{\textit{#1}\addcomma}
\DeclareFieldFormat[book]{title}{\textit{#1}\nopunct}
\DeclareFieldFormat[book]{title}{\textit{#1}\addcomma}
\renewbibmacro{in:}{ in\nopunct}
\DeclareFieldFormat{journaltitle}{\guillemotleft #1\guillemotright \addcomma}
\DeclareFieldFormat{pages}{#1}
\setlength\bibitemsep{1.5\itemsep}
%**BEGIN DOCUMENT**
\begin{document}
\chapter{Introduction}
Lorem ipsum\footcite{Aiello2014}
Lorem ipsum\footcite{Arksey1999}
\printbibliography
\end{document}
これはBib.bibファイルです
%Aiello_Bulgherano
@article{Aiello2014,
title={{An assessment of the Beerkan method for determining the hydraulic properties of a sandy loam soil}},
author={Aiello, R and Bagarello, V and Barbagallo, S and Consoli, S and Di Prima, S and Giordano, G and Iovino, M},
journal={Geoderma},
volume={235},
pages={300--307},
year={2014},
doi={10.1016/j.geoderma.2014.07.024}
}
%Arksey
@book{Arksey1999,
title={Interviewing for social scientists: An introductory resource with examples},
author={Arksey, Hilary and Knight, Peter T},
year={1999},
publisher={Sage}
}
答え1
私にとって、このスタイルについてはまだ少し不明瞭な点がいくつかありますが、次の説明を読めば、かなり理解できると思います。
質問を読むと、主に名前の形式に関するものです。変更する必要がある名前の形式は と呼ばれますsortname
。引用では、名のイニシャルと姓を提供する形式 (新しい形式g-family
) が必要です。
cite:full
cite:full
は、verbose.cbx
、93-99頁、名前の形式が変更されました。
参考文献では、「姓名順」を希望し、各部分の間にコンマは不要です (これは によって制御されます\revsdnamepunct
)。
参照の要素間にカンマを入れるようにメソッドを少し書き直しました。 を使用すると少し簡単できれいになります\renewcommand*{\newunitpunct}{\addcomma\space}
。
\documentclass[a4paper,12pt]{article}
\usepackage[english]{babel}
\usepackage[style=verbose,
maxbibnames=999,
doi=false,
]{biblatex}
\DeclareNameFormat{g-family}{%
\usebibmacro{name:given-family}
{\namepartfamily}
{\namepartgiveni}
{\namepartprefix}
{\namepartsuffix}%
\usebibmacro{name:andothers}}
\renewbibmacro*{cite:full}{%
\usebibmacro{cite:full:citepages}%
\printtext[bibhypertarget]{%
\usedriver
{\DeclareNameAlias{sortname}{g-family}}
{\thefield{entrytype}}}%
\usebibmacro{shorthandintro}}
\usepackage{xpatch}
\xpatchbibmacro{name:andothers}{%
\bibstring{andothers}%
}{%
\bibstring[\emph]{andothers}%
}{}{}
\renewcommand*{\newunitpunct}{\addcomma\space}
\renewcommand*{\intitlepunct}{\addspace}
\renewcommand*{\finentrypunct}{}
\DeclareNameAlias{sortname}{family-given}
\renewcommand*{\revsdnamepunct}{}
\DeclareFieldFormat[article]{title}{\mkbibemph{#1}}
\DeclareFieldFormat{journaltitle}{\guillemotleft #1\guillemotright}
\DeclareFieldFormat{pages}{#1}
\setlength\bibitemsep{1.5\itemsep}
\begin{filecontents}{\jobname.bib}
@article{Aiello2014,
title = {An assessment of the Beerkan method for determining
the hydraulic properties of a sandy loam soil},
author = {Aiello, R. and Bagarello, V. and Barbagallo, S. and Consoli, S.
and Di Prima, S. and Giordano, G. and Iovino, M.},
journal = {Geoderma},
volume = {235},
pages = {300--307},
year = {2014},
doi = {10.1016/j.geoderma.2014.07.024}
}
@book{Arksey1999,
title = {Interviewing for social scientists: An introductory resource with examples},
author = {Arksey, Hilary and Knight, Peter T.},
year = {1999},
publisher = {Sage}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem ipsum\footcite{Aiello2014}
ipsum\footcite{Arksey1999}
dolor\footcite{sigfridsson}
\printbibliography
\end{document}