Мне нужно настроить biblatex
следующий стиль цитирования:
Книга: 1. Доу, Дж.: Название книги. Издатель, Место (дата)
Статья: 1. Доу, Дж.: Название. Журнал. Номер (выпуск), стр. страниц (год)
Глава: 1. Doe, J.: Название главы. В: DoeEditor, J. (ред.) Название книги, стр. страниц. Издатель, Местонахождение (год)
inProceedings: 1. Doe, J.: Название. В: Название Proceedings, стр. страниц. Местоположение (год)
Вот все, что мне удалось узнать:
\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}
У меня есть вопросы:
- Как мне указать год в качестве поля и использовать ( ) во всех типах записей?
- Как удалить стр. из поля страниц?
- Как удалить « » из заголовка inProceedings?
- Как мне переформатировать поле «Редакторы» в главе книги, чтобы оно соответствовало моим потребностям?
Образец файла 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},
}
решение1
Пытаться
\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}
И посмотрите наСсылка на @inbook с помощью biblatex: как указать авторов/редакторов перед названием книги?иПереместить имена редакторов, за которыми следует (ред./ред.) и запятая перед заголовком в biblatexдля редакторского заказа.