参考样式“MISQ”

参考样式“MISQ”

我正在寻找使用 MISQ 样式作为我的参考文献的可能性,它看起来像这样:

Baskerville, RL 和 Myers, MD 2009。“信息系统研究与实践中的时尚浪潮”,载于 MIS Quarterly (33:4),第 647 页(doi:10.2307/20650319)。

目前我的参考风格如下:

在此处输入图片描述

我的 LaTeX 代码如下所示:

\usepackage[
backend=biber,
style=authoryear,
firstinits=true,
natbib=true,
url=true, 
doi=true,
eprint=false,
maxbibnames=99,
maxcitenames=2
]{biblatex}
\addbibresource{mybib.bib}

因此,基本上,我需要使用“,”而不是“。”。我还需要删除年份周围的括号。我需要以与第一作者相同的方式显示除第一作者之外的所有其他作者:姓氏,名字缩写。此外,我需要在期刊编号和期刊周围以及 DOI 周围使用括号。

有人知道如何实现这一点吗?也许有人试图使用 MISQ 样式,找到了在 LaTeX 中使用它的方法?

答案1

谷歌搜索后发现https://github.com/pcbouman-eur/misq-latex-style非官方的 LaTeX 课程。README 中指出

由于 MISQ 正式只接受 Word 文档,因此使用它需要您自担风险。不过,据传,当您联系编辑时,实际上有方法可以提交 PDF 文件以供审阅。

因此,如果您希望提交给 MISQ,使用 LaTeX 可能不太走运。如果您只喜欢 MISQ 风格,或者有信心让他们接受 TeX 排版的 PDF,那么您可以先使用

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[
  backend=biber,
  style=authoryear,
  giveninits=true,
  eprint=false,
  maxbibnames=99,
  maxcitenames=2
]{biblatex}
\addbibresource{biblatex-examples.bib}

\renewcommand*{\newunitpunct}{\addcomma\space}

\DeclareNameAlias{sortname}{family-given}
\DeclareDelimFormat[bib,biblist]{nametitledelim}{\addperiod\space}

\renewcommand*{\intitlepunct}{\addspace}

\renewbibmacro*{volume+number+eid}{%
  \setunit{\addspace}%
  \printtext[parens]{%
    \printfield{volume}%
    \setunit*{\addcolon}%
    \printfield{number}}%
  \setunit{\addcomma\space}%
  \printfield{eid}}

\DeclareFieldFormat{doi}{%
  \mkbibparens{%
    doi\addcolon\space
    \ifhyperref
      {\href{https://doi.org/#1}{\nolinkurl{#1}}}
      {\nolinkurl{#1}}}}

\renewbibmacro*{doi+eprint+url}{%
  \setunit{\addspace}%
  \iftoggle{bbx:doi}
    {\printfield{doi}}
    {}%
  \newunit\newblock
  \iftoggle{bbx:eprint}
    {\usebibmacro{eprint}}
    {}%
  \newunit\newblock
  \iftoggle{bbx:url}
    {\usebibmacro{url+urldate}}
    {}}

\begin{document}
\cite{sigfridsson}
\printbibliography
\end{document}

在此处输入图片描述

相关内容