AMA 参考文献付きのその他の記事

AMA 参考文献付きのその他の記事

テンプレートとして、AMA 引用を生成するにはどうすればよいでしょうか?論文の作業ディレクトリに参考文献スタイルelsarticleを追加しました。MikTeX2.9 を使用します。ama.bst

紙:

\documentclass[preprint,authoryear,12pt]{elsarticle}
\usepackage{amssymb}
\usepackage[margin=0.7in]{geometry}
\usepackage{textcomp}
\begin{document}
\title{ \textbf{All the Cats}}
\section*{Citing cats author}

All the cats in the world as eloquently explained in reference \cite{Cat19}. 
This should have printed as [1]!\\

In References, the citation should appear as: \textbf{Catty CT, Katin KK, 
and Kitty MM. An amazing account of cats around the world.}\textit{ J. Cats. 
Life} \textbf{2019; 19:290-299.}

\nocite{*} 
\bibliographystyle{ama} 
\bibliography{catsbib}

\end{document}

猫ビブ

@article{Cat19,
  author = "Catty, CT and Katin, KK and Kitty, MM",
   title = "An amazing Account of cats around the world",
    year = "2019",
 journal = "J {C}ats {L}ife",
  volume = "19",
  number = "9",
   pages = "290--299"
  }

pdfLatex+MakeIndex+Bibtex でコンパイルすると、LaTeX が次のエラーでハングします:

! Package natbib Error: Bibliography not compatible with author-year citations.[![enter image description here][1]][1]

望ましい出力は以下のとおりです。

望ましい結果

関連情報