カスタム参考文献と脚注スタイル

カスタム参考文献と脚注スタイル

ドキュメント クラスでは次のパッケージを使用しますarticle

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

私のプロジェクト論文には、特に参考文献と脚注に関して非常に厳しいルールがあります。.bbxファイルを調整してカスタム スタイルを実現できると読みましたが、それが理解できません。

私の要件は次のとおりです:

  • 参考文献(姓順):
    • 書籍: 最後、最初。年。タイトル。サブタイトル (版)。出版社。
    • オンライン: 姓、名。年/日付。タイトル。サブタイトル。URL の日付にアクセス。
    • コレクション内: 最後、最初。年。タイトル。サブタイトル。編集者内 (ここには静的テキストがあります)、書名 (S. ページ番号)。出版社。
  • 脚注(\cite脚注内?):
    • ページ上の書籍への最初の参照: 姓、年、タイトル(、S. ページ)
    • 同じページ上の同じ項目への追加参照: Last、Year(、S. Page)

番号付きの参考文献は必要ありません。

どうすればこれを実現できるでしょうか?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}

関連情報