Is it possible to use the amsplain bibliographic style with the biblatex package?
After processing the source file below, I get error: "Package biblatex Error: Style 'amsplain' not found."
%% source.tex
\documentclass{article}
\usepackage[style=amsplain]{biblatex}
\bibliography{referencesdb}
\begin{document}
Refer to \cite{thebook} for more information.
\printbibliography
\end{document}
Here's the .bib file used:
@book{
thebook,
author = {John Doe},
title = {The book without a Name},
publisher = {Mystery Books},
year = {2016},
}
The amsplain.bst file really is available in my TeXLive 2016 installation, because if I change the source to the following, then processing completes as expected.
%% source-no-biblatex.tex
\documentclass{article}
\begin{document}
Refer to \cite{thebook} for more information.
\bibliographystyle{amsplain}
\bibliography{referencesdb}
\end{document}
amsplainwithbiblatex.amsplainis a.bststyle and is thus used as you show in your second bit of code.biblatexneeds.bbxand.cbxstyles. Since there is noamsplain.bbxand noamsplain.cbxyou can't use that style withbiblatex. – moewe Sep 13 '16 at 20:27biblatexin order to recreate essentially the sameamsplainstyle? – murray Sep 13 '16 at 20:29biblatexif you have a style you can work with right now? AFAIK there is nobiblateximplementation ofamsplainso you would have to make do withnumericits derivatives ortrad-plainof thebiblatex-tradpackage. Whilebiblatexhas many superior features, you don't have to switch especially if you have a.bststyle that works for you (it's unlikely you need the advanced features then). – moewe Sep 13 '16 at 20:31biblatexwould give more control with additional field types. I strongly prefer most aspects of theamsplainstyle -- especially no quote marks around titles -- but actually want the bibliography list itself to have the item numbers enclosed in brackets; is it possible to achieve that? – murray Sep 13 '16 at 20:48biblatexis often (for me at least) easier to modify than.bststyles. The question is: How much do you need that? And how far is the output you get fromstyle=numericinbiblatexaway from what you want to see? You can easily get rid of quotation marks around the titles, if that is all you need. But if you need much more, things might become a bit more involved. – moewe Sep 13 '16 at 20:54amsplainstyle formatting of the references list -- except to put the numbers there in square brackets. (I am referring here to the actual printed bibliography; with `amsplain, already citations in the document will appear in square brackets.) – murray Sep 13 '16 at 20:57numeric? That will tell you how much work you'd need to do (roughly) to customise the style according to your desiderata. If you want to include additional fields, you are already moving away from that style, of course. Part of what a style defines is what information, exactly, gets shown and what not. – cfr Sep 14 '16 at 02:23