I am looking for a possibility to use the MISQ style for my references, which looks like this:
Baskerville, R. L. and Myers, M. D. 2009. “Fashion Waves in Information Systems Research and Practice,” in MIS Quarterly (33:4), p. 647 (doi: 10.2307/20650319).
Currently my reference style looks like this:
This is how my code in LaTeX looks like:
\usepackage[
backend=biber,
style=authoryear,
firstinits=true,
natbib=true,
url=true,
doi=true,
eprint=false,
maxbibnames=99,
maxcitenames=2
]{biblatex}
\addbibresource{mybib.bib}
So basically, I need to use "," instead of ".". I also need to get rid of the brackets around the year. And I need to display all other authors besides the first author in the same way as the first author: Last name, First names abbreviated. Also, I need brackets around the journal number and issue, and around the DOI.
Has anyone got an idea how to achieve this? Maybe someone trying to use the MISQ style found a way to use it in LaTeX?

