With biblatex I want to imitate the amsplain style for article entries in the bibliography. Specifically, I still need to make the volume, number, and year parts to appear in the form
vv (yr), no. n
— with the "number" field following the (parenthesized) year — as in the following amsplain example:
Here's how far I've gotten with biblatex. The source is:
\documentclass[12pt]{memoir}
\usepackage[style=numeric,backend=bibtex]{biblatex}
\begin{filecontents}{ref.bib}
@article{EulerE1776,
Author = {Euler, Leonhard},Title = {All about E},
Journal = {Math.\ Psychol.},
Year = {1776},Volume = {4},number={1},
pages={1--2718}
}
\end{filecontents}
\addbibresource{ref.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
And my biblatex.cfg is:
% BIBLATEX.CFG
% mimic amsplain
%
\ProvidesFile{biblatex.cfg}
%
\renewcommand*{\newunitpunct}{\addcomma\space}
%
\DeclareNameAlias{sortname}{last-first}
%
\DeclareFieldFormat
[article,inbook,incollection,inproceedings,patent,thesis,unpublished]
{title}{\mkbibemph{#1}}% no quote marks
\DeclareFieldFormat{journaltitle}{#1}
%
\DeclareFieldFormat
[article,inbook,incollection,inproceedings,patent,thesis,unpublished]
{volume}{\mkbibbold{#1}}
\DeclareFieldFormat{pages}{#1}% no prefix for the `pages` field in the bibliography
%
\renewbibmacro{in:}{%
\ifentrytype{article}{}{\printtext{\bibstring{in}\intitlepunct}}}
The output with that biblatex configuration is:
I presume I have to at least modify the definition of \DeclareBibliographyDriver{article} and perhaps modify some bibmacro, but I've been unable to penetrate the documentation to see how to do that.
Note: Owing to other reasons, I must use biblatex rather than just the amsplain style with bibtex.


standard.bbxI just don't find any mention of ayearmacro, so I don't know what to modify how. – murray Oct 25 '16 at 20:24yearmacro, did I? I said something about\mkbibemphinstead of\emphetc. – moewe Oct 25 '16 at 20:31numberfield after theyearfield, that's why I mentioned the latter. – murray Oct 25 '16 at 20:33