I want to create bibliography by Bibtex which is exactly the following format:
[1] Author: \textit{title} journal abbreviations
\textbf{vol}, pages (year)
Output
[1] Author: title, J. Ab, 70, 100-200 (2017)
Is there an appropriate style file?
Update: (after Johannes_B comment)
The format of bibliography for book is as follow:
[1] Author: \textit{title} Book series,
vol. 25, publisher, pages (year)
Example:
\documentclass{birkjour}
\begin{document}
In \cite{1} and \cite{2} we have:
$$a^2+b^2=c^2$$
\bibliographystyle{siam} %must be changed to a benefit style
\bibliography{biblio}
\end{document}
where biblio.bib is:
@article{1,
title={first article},
author={Name},
journal={journal of geometry},
volume={18},
number={1},
pages={229--238},
year={2010}
}
@article{2,
title={second article},
author={Name},
journal={journal of geometry},
volume={18},
number={2},
pages={239--248},
year={2010}
}
Thanks.
plainI think. It's the default withbiblatex. – Bernard Aug 30 '17 at 11:21biblatex. – Bernard Aug 30 '17 at 13:33@articleand@book, what about the following types:@misc,@techreport,@unpublished-- and a few others more? – Mico Aug 30 '17 at 13:52