
Utilizo los siguientes paquetes con la clase de documento article
:
\usepackage[utf8]{inputenc}
\usepackage{tocloft}
\usepackage[citestyle=authortitle,bibstyle=numeric,url=true,isbn=false,backend=biber,sorting=nyt]{biblatex}
\usepackage[hang]{footmisc}
Tengo reglas muy estrictas para mi proyecto de tesis, especialmente en lo que respecta a la bibliografía y las notas a pie de página. Leí que puedo adaptar los .bbx
archivos para lograr estilos personalizados, sin embargo, no los entiendo.
Estos son mis requisitos:
- Bibliografía (ordenada por apellido):
- Libros: último, primero. Año. Título. Subtítulo (edición). Editor.
- En línea: último, primero. Año/Fecha. Título. Subtitular. Consultado el día en la URL.
- Incolección: último, primero. Año. Título. Subtitular. En Editor (algo de texto estático aquí), Título del libro (S. Números de página). Editor.
- Notas a pie de página (¿y
\cite
en notas a pie de página?):- Primera referencia al libro en la página: Apellido, Año, Título(, S. Página)
- Referencias adicionales al mismo artículo en la misma página: Último, Año(, S. Página)
No se requiere bibliografía numerada.
¿Cómo podría lograr esto? El numeric
estilo bib se acerca a lo que quiero, excepto en detalles como el orden de la información y los puntos de separación.
Actualizar: Aquí hay un MWE (no demasiado pequeño para cubrir todos los requisitos):
\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}