![[第一著者の姓]˽(年)-˽タイトルの形式のbibライブラリから引用を生成するか、単にリストする](https://rvso.com/image/348038/%5B%E7%AC%AC%E4%B8%80%E8%91%97%E8%80%85%E3%81%AE%E5%A7%93%5D%CB%BD(%E5%B9%B4)-%CB%BD%E3%82%BF%E3%82%A4%E3%83%88%E3%83%AB%E3%81%AE%E5%BD%A2%E5%BC%8F%E3%81%AEbib%E3%83%A9%E3%82%A4%E3%83%96%E3%83%A9%E3%83%AA%E3%81%8B%E3%82%89%E5%BC%95%E7%94%A8%E3%82%92%E7%94%9F%E6%88%90%E3%81%99%E3%82%8B%E3%81%8B%E3%80%81%E5%8D%98%E3%81%AB%E3%83%AA%E3%82%B9%E3%83%88%E3%81%99%E3%82%8B.png)
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}