私の参考文献に問題があります。マニュアルでは機能するのですが、記事では機能しません。私はTexMakerをBibLatexと一緒に使用しています。コンパイル時にpdflatex+biblatex+pdflatex(x2)を実行し、biblatexコマンドをbiber %に設定しています。私の.texファイルでは、
\documentclass[a4paper,12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
% Interline setting
\usepackage[backend=biber]{biblatex}
\addbibresource{biblio.bib}
\newpage
\printbibliography
%\begin{thebibliography}{9}
%\bibitem{BSS82}
% Smiths Metal Centre,
% \emph{BS S82 Technical Datasheet,
% 2nd Edition,
% 1994.
%\end{thebibliography}
\end{document}
これが私の.bibファイルです
@manual{datasheet,
author = {Smiths Metal Centres},
title = {BS S82 Technical Datasheet},
year = {2019},
url = {https://www.smithmetal.com/pdf/special/bar/s82.pdf},
}
@article{Ti1,
author = {Sahasrabudhe, H and Harrison, R and Carpenter, C and Bandyopadhyay, A},
title = {Stainless steel to titanium bimetallic structure using LENS},
journaltitle = {Additive Manufacturing},
year = {2015},
volume = {5},
pages = {1-8},
month = {January},
}
@article{Ti2,
author = {Reichardt, A and Dillon, R. P and Borgonia, JP and Shapiro, A A. and McEnerney, B W. and Momose, T and Hosemann, P},
title = {Development and characterization of Ti-6Al-4V to 304L stainless steel gradient components fabricated with laser deposition additive manufacturing},
journaltitle = {Materials & Design},
year = {2016},
volume = {104},
pages = {404-413},
month = {August},
}
@manual{graninox,
author = {Pometon S.p.A},
title = {GRANINOX\textsuperscript{\textcopyright} Granules for blasting},
url = {https://www.pometon.com/media/product/family-attachment/graninox3_ZxO9sB8.pdf},
}
@article{tommaso,
author = {Maurizi Enrici, T and Mertens, A and Sinnaeve, M and Tchuindjang, JT},
title = {Elucidation of the solidification sequence of a complex graphitic HSS alloy under a combined approach of DTA and EBSD analyses},
journaltitle = {Journal of Thermal analysis and Calorimetry},
year = {in press},
}
@article{,
author = {Costa, L and Vilar, R and Réti, T},
title = {Simulating the effects of substrate pre-heating on the final structure of steel parts built by laser powder deposition},
journaltitle = {Solid Freeform Fabrication Symposium},
year = {2004},
}
誰か助けてくれませんか? ありがとう!
答え1
エントリにいくつか修正を加えました.bib
:
- 「企業著者」は
Smiths Metal Centres
警戒すべき Materials & Design
すべきであるMaterials \& Design
- 1つのエントリのキーが欠落していたので、追加しました
costa
year={in press}
無効です- イニシャルの形式が一貫していなかった
- 小文字化の対象とならない部分は括弧で囲む必要がある
修正が終わった後
\begin{filecontents*}[overwrite]{\jobname.bib}
@manual{datasheet,
author = {{Smiths Metal Centres}},
title = {{BS} {S82} {Technical} Datasheet},
year = {2019},
url = {https://www.smithmetal.com/pdf/special/bar/s82.pdf},
}
@article{Ti1,
author = {Sahasrabudhe, H. and Harrison, R. and Carpenter, C. and Bandyopadhyay, A.},
title = {Stainless steel to titanium bimetallic structure using {LENS}},
journaltitle = {Additive Manufacturing},
year = {2015},
volume = {5},
pages = {1-8},
month = {1},
}
@article{Ti2,
author = {Reichardt, A. and Dillon, R. P. and Borgonia, J. P. and
Shapiro, A. A. and McEnerney, B. W. and Momose, T. and Hosemann, P.},
title = {Development and characterization of {Ti-6Al-4V} to {304L} stainless steel
gradient components fabricated with laser deposition additive manufacturing},
journaltitle = {Materials \& Design},
year = {2016},
volume = {104},
pages = {404-413},
month = {8},
}
@manual{graninox,
author = {{Pometon S.p.A}},
title = {{GRANINOX}\textsuperscript{\normalfont\textcopyright} Granules for blasting},
url = {https://www.pometon.com/media/product/family-attachment/graninox3_ZxO9sB8.pdf},
}
@article{tommaso,
author = {Maurizi Enrici, T. and Mertens, A. and Sinnaeve, M. and Tchuindjang, J. T.},
title = {Elucidation of the solidification sequence of a complex graphitic {HSS}
alloy under a combined approach of {DTA} and {EBSD} analyses},
journaltitle = {Journal of Thermal analysis and Calorimetry},
year = 2020,
note = {In press},
}
@article{costa,
author = {Costa, L. and Vilar, R. and Réti, T.},
title = {Simulating the effects of substrate pre-heating on the final
structure of steel parts built by laser powder deposition},
journaltitle = {Solid Freeform Fabrication Symposium},
year = {2004},
}
\end{filecontents*}
\documentclass[a4paper,12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
ここでは、例を自己完結型にするためだけに使用しましたfilecontents
。ファイル名は、ファイルを上書きしないように変更されています。好みの名前の別のファイルを使用することもできます (また、使用する必要があります)。
LaTeXとBiberを通常の方法で実行すると、