自定义书目和脚注样式

自定义书目和脚注样式

我将以下包与文档类一起使用article

\usepackage[utf8]{inputenc}
\usepackage{tocloft}
\usepackage[citestyle=authortitle,bibstyle=numeric,url=true,isbn=false,backend=biber,sorting=nyt]{biblatex}
\usepackage[hang]{footmisc}

我的项目论文有非常严格的规定,尤其是参考书目和脚注。我读到我可以调整文件.bbx以实现自定义样式,但我不明白这些。

这些是我的要求:

  • 参考书目(按姓氏排序)
    • 书籍:最后,第一。年份。标题。副标题(版本)。出版商。
    • 在线:姓,名。年份/日期。标题。副标题。访问日期,网址。
    • 收藏:姓,名。年份。标题。副标题。编辑(此处为静态文本)、书名(页码)。出版商。
  • 脚注(以及\cite脚注中的内容?)
    • 本书第 1 页的首次引用:姓氏、年份、书名(、页码)
    • 同一页上对同一项目的其他引用:最后、年份(、页码)

不需要编号的参考书目。

我该如何实现这一点?numeric除了信息顺序和分隔点等细节之外,bibstyle 接近我想要的。

更新:这是一个 MWE(不太小,无法满足所有要求):

\documentclass{article}

\usepackage[utf8]{inputenc}
\usepackage{tocloft}
\usepackage[citestyle=authortitle,bibstyle=numeric,url=true,isbn=false,backend=biber,sorting=nyt]{biblatex}
\usepackage[hang]{footmisc}

% ===============================
% JUST AN EXAMPLE BIBLIOGRAPHY DB
% ===============================
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{book2009,
  author = "John Doe",
  title = "A friendly word to the world",
  subtitle = "A book with a subtitle",
  year = 2009,
  publisher = "Great Publisher"
}
@book{book2011,
  author = "Jane Foo",
  title = "A great book with a terrible title",
  % No subtitle
  year = 2011,
  publisher = "Awesome Inc."
}
@online{online2012,
  author = "Bar Baz",
  title = "Hang on, I'll get you",
  % No subtitle
  year = 2012,
  url = "http://example.com",
  urldate = "2014-04-21"
}
@online{online2014,
  author = "Michael Smith",
  title = "Wait for Smith",
  subtitle = "It's okay",
  year = 2014,
  url = "http://foo.example.com",
  urldate = "2014-04-21"
}
\end{filecontents}
% ===============================

\bibliography{\jobname.bib}

\begin{document}
% TOC etc.

% CONTENTS
\section{First chapter}

It\footcite[38]{book2009} was\footcite{online2014} a\footcite[234]{book2009} sunny\footcite{online2012} day\footcite{book2009} when I noticed\footcite{book2011} it.

% BIBLIOGRAPHY
\clearpage
\section{Bibliography}
\printbibliography[heading=none]

% LOF etc.
\end{document}

相关内容