精炼哈佛参考文献格式

精炼哈佛参考文献格式

我需要一种哈佛参考文献风格,它应该如下所示,但有两点除外:

1)两位作者之间的‘and’应该是‘&’,并且

2)年份不应带括号。 在此处输入图片描述

下面是我的简单代码,它创建了上述结果。

\documentclass[12pt,a4paper]{article}
\usepackage{natbib}

\begin{document}
    \citet{grupp1999patent} said this.

    \bibliographystyle{MyStyle}
    \bibliography{Test}
\end{document}

我尝试创建并使用自己的参考样式“MyStyle.bst”。MyStyle.dbj 文件如下所示:

%--------------------
%STYLE OF CITATIONS:
%   %: (def) Numerical
  ay,%: Author-year
% alph,%: Alpha style, Jon90 or JWB90
% alph,alf-1,%: Alpha style, Jon90
% alph,alf-f,%: Alpha style, Jones90
% cite,%: Cite key

%--------------------
%DATE FORMAT (if non author-year citations)
   %: (def) Plain month and year
% yr-par,%: Date in parentheses
% yr-brk,%: Date in brackets
% yr-col,%: Date preceded by colon
% yr-per,%: Date preceded by period
% yr-com,%: Date preceded by comma
% yr-blk,%: Date preceded by space

%--------------------
%AMPERSAND:
%    %: (def) Use word `and'
  amper,%: Use ampersand
% varand,%: Use \BIBand

我找不到其他东西来让它看起来像我想要的那样。有人能帮忙吗?

相关内容