사용자 정의 참고문헌 및 각주 스타일

사용자 정의 참고문헌 및 각주 스타일

문서 클래스와 함께 다음 패키지를 사용합니다 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의 날짜에 액세스되었습니다.
    • 수집: 마지막, 첫 번째. 년도. 제목. 부제. Editor(여기에는 일부 정적 텍스트), Booktitle(S. 페이지 번호). 발행자.
  • 각주( \cite각주에도?):
    • 페이지에서 책에 대한 첫 번째 참조: 성, 연도, 제목(, S. 페이지)
    • 같은 페이지에 있는 같은 항목에 대한 추가 참조: Last, Year(, S. Page)

번호가 매겨진 참고문헌은 필요하지 않습니다.

어떻게 이것을 달성할 수 있습니까? 빕스 numeric타일은 정보의 순서나 점의 구분 등 디테일한 부분을 제외하면 제가 원하는 스타일에 가깝습니다.

업데이트: 다음은 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}

관련 정보