文章未印在參考書目中,而手冊可以

文章未印在參考書目中,而手冊可以

我的參考書目有問題。它僅適用於手冊,不適用於文章。我將 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

  1. 諸如此類的「企業作者」Smiths Metal Centres應該要做好準備
  2. Materials & Design應該Materials \& Design
  3. 我補充說,一個條目的鑰匙丟失了costa
  4. year={in press}是無效的
  5. 縮寫的格式不一致
  6. 不應小寫的部分應加支撐

修復後我得到

\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 會產生

在此輸入影像描述

相關內容