I am here again with one more question.
I recently decided to switch with BibLaTeX from natbib reference management.
Therefore, I am a beginner learner with BibTe.
But as always I need some customization on the existing options.

I have attached an MWE herewith along with my concern at the end.
Code: Select all
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{enumerate}
\usepackage{enumitem}
\usepackage[
style=numeric,
url=false,
doi=false,
isbn=false
]{biblatex}
\usepackage{hyperref,url}
\usepackage{color}
\usepackage[autostyle, english = american]{csquotes}
\addbibresource{BibRef.bib}
\newcommand{\red}{\color[rgb]{1,0,0}}
\hypersetup{,colorlinks=true,allcolors=red}
\begin{document}
\begin{center}
{\LARGE
Solving NP-hard Problems
}
\vspace{15mm}
{\large\sc
Author\footnote[1]{
Author, is an Assistant Professor in the Department of XYZ,
XYZ University.
~~ {\em e-mail\/}: ~{\tt xyz@university.edu}}}
\vspace{1mm}
{\large\em XYZ University}
\vspace{15mm}
\end{center}
\vspace{3mm}
\begin{quote}
{\bf\em Abstract}.
XYZ.
\vspace{4mm}
\end{quote}
\section{Introduction}
About the paper!
\section{Main Results}
Main results!
Markov Chains \cite{n97}
\section{Some Additional Results}
A graduate text in Mathematics \cite{ds14}
\section{Something More}
Probability and Measure Theory, \cite{MR1810041}.
\section{Additional Things}
Algebra, \cite{MR1034353}.
\section{Albert Einstein}
Here we go \cite{ae05}.
\printbibliography
\newpage
\noindent
{\red But the desired reference style is as below
--
everything plain and fields are separated by comma!}
\begin{enumerate}[label={[}\arabic*{]}]
\item
R.B. Ash, Probability and Measure Theory, second ed.,
Academic Press, Burlington, MA, 2000.
\item
A. Einstein, On the electrodynamics of moving bodies,
Annalender Physik 322 (10) (1905) 891--921.
\item
T.W. Hungerford, A counterexample in Galois theory,
Amer. Math. Monthly 97 (1) (1990) 54--57.
\item
J.R. Norris, Markov Chains,
Cambridge University Press, 1997.
\item
D.W. Stroock,
An Introduction to Markov Processes,
second ed.,
Springer, Berlin, Heidelberg, 2014.
\end{enumerate}
\noindent
{\red
So, I am wondering how is it possible to achieve this customized reference style
with BibTaTeX?}
\end{document}
Code: Select all
@book {MR1810041,
AUTHOR = {Ash, Robert B.},
TITLE = {Probability and Measure Theory},
EDITION = {Second},
PUBLISHER = {Academic Press, Burlington, MA},
YEAR = {2000},
PAGES = {xii+516},
ISBN = {0-12-065202-1},
MRCLASS = {28-01 (60-01)},
MRNUMBER = {1810041},
}
@article{ae05,
AUTHOR = {Albert Einstein},
TITLE = {On the electrodynamics of moving bodies},
JOURNAL = {Annalen der Physik},
VOLUME = {322},
NUMBER = {10},
PAGES = {891--921},
YEAR = {1905},
DOI = {http://dx.doi.org/10.1002/andp.19053221004},
keywords = {physics},
}
@article {MR1034353,
AUTHOR = {Hungerford, Thomas W.},
TITLE = {A counterexample in {G}alois theory},
JOURNAL = {Amer. Math. Monthly},
FJOURNAL = {American Mathematical Monthly},
VOLUME = {97},
YEAR = {1990},
NUMBER = {1},
PAGES = {54--57},
ISSN = {0002-9890},
MRCLASS = {12F10},
MRNUMBER = {1034353},
URL = {https://doi.org/10.2307/2324007},
}
@book {n97,
AUTHOR = {Norris, J. R.},
TITLE = {Markov Chains},
PUBLISHER = {Cambridge University Press},
YEAR = {1997},
DOI = {10.1017/CBO9780511810633},
}
@book {ds14,
AUTHOR = {Stroock, Daniel W.},
TITLE = {An Introduction to Markov Processes},
PUBLISHER = {Springer, Berlin, Heidelberg},
EDITION = {Second},
YEAR = {2014},
ISBN = {978-3642405228},
PAGES = {IX+275},
DOI = {10.1007/978-3-642-40523-5},
}
[img] [/img]
But what I wanted is the following.
[img] [/img]
Any help would greatly be appreciated.