特定の形式の bbl ファイルが必要ですか?

特定の形式の bbl ファイルが必要ですか?

私は論文に LaTeX テンプレートを使用しています。テンプレートには次の形式の BBL ファイルがあります。

\begin{thebibliography}{3}
\expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi

\bibitem[{Knuth(1984)}]{texbook}
{\sc Knuth, D.E.} (1984). {\em The {{\TeX}book}\/}. Addison-Wesley.

\bibitem[{Lamport(1986)}]{latex}
{\sc Mohsen, L.} (1986). {\em {\LaTeX:} {A} Document Preparation System\/}.
Addison-Wesley.

\bibitem[{Rudin(1973)}]{Rud73}
{\sc Rudin, W.} (1973). {\em Functional {Analysis}\/}. McGraw-Hill, New York.

\bibitem[{Taylor R.L(1991)}]{Zienkiewicz}
Zienkiewicz, O.C, Taylor R.L(1991) The Finite Element Method, Vol 2: Solid and Fluid Mechanics, Dynamics and Non-Linearity. McGraw-Hill 

\end{thebibliography}

Mendeley から参考文献リストを取得しようとしていますが、2 つの問題に直面しています。

1.Mendeleyはbblファイルではなくbibファイルを作成します

2. 上記の形式にする必要がありますが、次のような結果になります。

@article{,
file = {:C$\backslash$:/Users/mohsen/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Unknown - 1991 - Rheologica Acta Calculation of residual stresses in injection molded products.pdf:pdf},
keywords = {\_flow-,\_numerical analysis,\_thermally-induced residual stresses,amorphous,c\_ompressible l\_eonov model,induced residual s\_tresses,injection \_molding,notation and symbols,polymers,viscoelasticity},
pages = {284--299},
title = {{Rheologica Acta Calculation of residual stresses in injection molded products}},
volume = {299},
year = {1991}
}

問題を解決する方法を誰か教えてくれないかと思っています。

答え1

このようなカスタムフォーマットを作成することは、最近の酒好きプロジェクトはよく適合しています。BibTeX を Bibulous に置き換える場合、OP が希望する参考文献リスト形式は、次のスタイル テンプレート ファイルを使用して作成できます。

TEMPLATES:
book = \textsc{<au>} (<year>). \textit{<title>}. <publisher>[, <address>].
OPTIONS:
namelist_format = last_name_first

(上記は全体ファイルで、bookOPは書籍のみをリストしているので、エントリのテンプレートのみを定義しました。このテンプレートでは、著者リスト<au>、年<year>、書籍タイトル<title>、出版社の<publisher>フィールドが次のように表示されます。必須フィールド、および<address>フィールドをオプションとして指定します。

関連情報