[第一著者の姓]˽(年)-˽タイトルの形式のbibライブラリから引用を生成するか、単にリストする

[第一著者の姓]˽(年)-˽タイトルの形式のbibライブラリから引用を生成するか、単にリストする

100 件を超えるエントリを含む bib ライブラリがあるので、参考文献の引用スタイルを次の形式に変更したいと思います [最初の著者の姓]˽(年)-˽ タイトル。

ここで˽はスペースです。

あるいは、bib ライブラリからテキスト ファイルでその形式のリストを何らかの方法で生成できれば問題ありません。

.bibこのようなエントリを持つファイル

@article{guo2010three,
  title={Three-dimensional thermal finite element modeling of lithium-ion battery in thermal abuse application},
  author={Guo, Guifang and Long, Bo and Cheng, Bo and Zhou, Shiqiong and Xu, Peng and Cao, Binggang},
  journal={Journal of Power Sources},
  volume={195},
  number={8},
  pages={2393--2398},
  year={2010},
  publisher={Elsevier}
}

そして記事では次のように引用されている。

\cite{guo2010three}

私は を使用していますbiblatex。私の引用は現在このようになっています

[68] G. Guo, B. Long, B. Cheng, S. Zhou, P. Xu, B. Cao. 「熱的負荷用途におけるリチウムイオン電池の3次元熱有限要素モデリング」 Journal of PowerSources195.8 (2010)、pp. 2393–2398 (p. 16より引用)。

でも私は

[68] Guo 2010 熱的負荷を受けるリチウムイオン電池の3次元熱有限要素モデリング

または、この形式のエントリを含むテキストファイル出力を用意するだけです

ファイルは.tex次のようになります

\documentclass[]{report}


\setdate{\today}
%\setkeywords{LaTeX, Formatierung, EES-Vorlage}

\bibliography{LIST/literature} % Include literature

%%%----- Document ------------------------------------
\begin{document}

    %\listoftodos % Show list of todo's
    \maketitle % Show titlepage


    \tableofcontents % Show list of contents


    \begin{mainpart}

\chapter{Introduction}
,,,,

    \end{mainpart}

    \printbibliography 

    \listoffigures 

\end{document}

答え1

すべてのエントリ タイプに同じ出力が必要なので、新しいドライバーを定義し、その新しいドライバーを使用するようにすべてのエントリ タイプを再マップできます。

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

\usepackage[style=numeric, labeldateparts, backend=biber, maxnames=1, minnames=1]{biblatex}

\addbibresource{biblatex-examples.bib}

\DeclareFieldFormat*{labeldate}{\mkbibparens{#1}}
\DeclareFieldFormat*{title}{#1}

\DeclareBibliographyDriver{onlythree}{%
  \usebibmacro{bibindex}%
  \usebibmacro{begentry}%
  \printnames{labelname}%
  \setunit{\addspace}\newblock
  \printlabeldate
  \setunit{\addspace}\newblock
  \usebibmacro{title}%
  \setunit{\bibpagerefpunct}\newblock
  \usebibmacro{pageref}%
  \usebibmacro{finentry}}

\makeatletter
\def\do#1{\DeclareBibliographyAlias{#1}{onlythree}}
\abx@doentrytypes
\DeclareBibliographyAlias{*}{onlythree}
\makeatother

\begin{document}
\cite{sigfridsson,worman,geer,vizedom:related}
\printbibliography
\end{document}

ここに画像の説明を入力してください

関連情報