Necesito configurar biblatex
para obtener el siguiente estilo de cita:
Libro: 1. Doe, J.: Título del libro. Editorial, ubicación (fecha)
Artículo: 1. Doe, J.: Título. Diario. Número (Número), pp. páginas (año)
Capítulo: 1. Doe, J.: Título del capítulo. En: DoeEditor, J. (eds.) Título del libro, págs. Editorial, ubicación (año)
en Actas: 1. Doe, J.: Título. En: Título de las actas, págs. Ubicación (año)
Hasta aquí he podido llegar:
\documentclass{article}
\usepackage[style=numeric,
backend=biber,
firstinits=true]{biblatex}
\addbibresource{references.bib}
\DeclareFieldFormat{labelnumberwidth}{#1\adddot}
\renewcommand*{\labelnamepunct}{\addcolon\space}
\DeclareNameAlias{default}{last-first}
\DeclareFieldFormat[article, book, incollection, report]{title}{#1}
\DeclareFieldFormat[proceedings, inproceedings]{maintitle}{#1}
\DeclareFieldFormat[article]{journaltitle}{#1\adddot}
\DeclareFieldFormat[inproceedings, incollection]{booktitle}{#1\adddot}
\renewbibmacro{in:}{%
\ifentrytype{article}{}{\printtext{\bibstring{in}\intitlepunct}}}
\renewbibmacro*{volume+number+eid}{%
\printfield{volume}%
\setunit*{\addspace}%
\printfield[parens]{number}%
\setunit{\addcomma\space}%
}
\begin{document}
Examples \cite{Doe2014} \cite{Doe2016} \cite{Doe2017} \cite{Doe32015}
\printbibliography
\end{document}
Mis preguntas son:
- ¿Cómo puedo poner el año como campo y usar ( ) en todos los tipos de entrada?
- ¿Cómo puedo eliminar las páginas del campo de páginas?
- ¿Cómo puedo eliminar el " " del título de InProceedings?
- ¿Cómo puedo reformatear el campo de editores en el capítulo del libro para acercarlo a lo que necesito?
Muestra de archivo babero:
@Book{Doe2017,
author = {Doe, Jhon},
title = {A Book Title},
year = {2017},
publisher = {Some Publisher},
location = {Some Location},
}
@Article{Doe2016,
author = {Doe, Jhon and Doe2, Jhon2},
title = {Some journal article},
journal = {Fancy Journal},
year = {2016},
volume = {56},
number = {3},
pages = {1-99},
}
@InCollection{Doe32015,
author = {Doe3, Jhon3},
title = {A book chapter},
booktitle = {A book title},
year = {2015},
editor = {Editor1, Name and Editor2, Name2},
publisher = {Some publisher},
location = {Some location},
pages = {54-82},
}
@InProceedings{Doe2014,
author = {Doe, Martha},
title = {A conference paper},
booktitle = {Fancy Conference Proceedings},
year = {2014},
location = {Touristy Location},
pages = {1-10},
}
Respuesta1
Intentar
\documentclass{article}
\usepackage[style=numeric,
backend=biber,
firstinits=true]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Book{Doe2017,
author = {Doe, Jhon},
title = {A Book Title},
year = {2017},
publisher = {Some Publisher},
location = {Some Location},
}
@Article{Doe2016,
author = {Doe, Jhon and Doe2, Jhon2},
title = {Some journal article},
journal = {Fancy Journal},
year = {2016},
volume = {56},
number = {3},
pages = {1-99},
}
@InCollection{Doe32015,
author = {Doe3, Jhon3},
title = {A book chapter},
booktitle = {A book title},
year = {2015},
editor = {Editor1, Name and Editor2, Name2},
publisher = {Some publisher},
location = {Some location},
pages = {54-82},
}
@InProceedings{Doe2014,
author = {Doe, Martha},
title = {A conference paper},
booktitle = {Fancy Conference Proceedings},
year = {2014},
location = {Touristy Location},
pages = {1-10},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\DeclareFieldFormat{labelnumberwidth}{#1\adddot}
\renewcommand*{\labelnamepunct}{\addcolon\space}
\DeclareNameAlias{default}{family-given}
\DeclareFieldFormat*{title}{#1}
\DeclareFieldFormat*{maintitle}{#1}
\DeclareFieldFormat{journaltitle}{#1}
\DeclareFieldFormat*{booktitle}{#1}
\DeclareFieldFormat[article,periodical]{number}{\mkbibparens{#1}}
\renewbibmacro{in:}{%
\ifentrytype{article}{}{\printtext{\bibstring{in}\intitlepunct}}}
\renewbibmacro*{volume+number+eid}{%
\printfield{volume}%
\setunit*{\addspace}%
\printfield{number}%
\setunit{\addcomma\space}%
\printfield{eid}}
\DeclareFieldFormat*{date}{\mkbibparens{#1}}
\newbibmacro*{pubinstorg+location}[1]{%
\printlist{location}%
\iflistundef{#1}
{\setunit*{\addcomma\space}}
{\setunit*{\addcolon\space}}%
\printlist{#1}%
\newunit}
\renewbibmacro*{publisher+location+date}{\usebibmacro{pubinstorg+location}{publisher}}
\renewbibmacro*{institution+location+date}{\usebibmacro{pubinstorg+location}{institution}}
\renewbibmacro*{organization+location+date}{\usebibmacro{pubinstorg+location}{organization}}
\renewbibmacro*{issue+date}{%
\iffieldundef{issue}
{}
{\printtext[parens]{\printfield{issue}}}%
\newunit}
\newbibmacro*{addendum+pubstate}{%
\printfield{addendum}%
\newunit\newblock
\printfield{pubstate}}
\newbibmacro*{addendum+pubstate}{%
\printfield{addendum}%
\newunit\newblock
\printfield{pubstate}%
\setunit{\addspace}%
\printdate}
\begin{document}
Examples \cite{Doe2014} \cite{Doe2016} \cite{Doe2017} \cite{Doe32015}
\printbibliography
\end{document}
Y echa un vistazo aCitando @inbook con biblatex: ¿cómo poner autores/editores antes del título del libro?yMueva los nombres de los editores seguidos de (Ed./Eds.) y una coma antes del título en biblatexpara el orden del editor.