Artikel nicht in der Bibliographie abgedruckt, Handbücher jedoch ok

Artikel nicht in der Bibliographie abgedruckt, Handbücher jedoch ok

Ich habe ein Problem mit meiner Bibliographie. Sie funktioniert nur mit dem Handbuch und nicht mit dem Artikel. Ich verwende TexMaker mit BibLatex. Beim Kompilieren verwende ich pdflatex+biblatex+pdflatex(x2) und mein biblatex-Befehl ist auf biber % eingestellt. In meiner .tex-Datei verwende ich

\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}

und hier ist meine .bib-Datei

@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},
}

Kann mir jemand helfen? Danke!

Antwort1

Ich habe einige Korrekturen an den .bibEinträgen vorgenommen:

  1. Solche „Unternehmensautoren“ Smiths Metal Centressollten sich darauf einstellen,
  2. Materials & Designsollte seinMaterials \& Design
  3. ein Schlüssel für einen Eintrag fehlte, ich habe hinzugefügtcosta
  4. year={in press}ist ungültig
  5. das Format für Initialen war inkonsistent
  6. Teile, die nicht kleingeschrieben werden sollen, sollten mit Klammern versehen werden

Nach den Korrekturen bekomme ich

\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}

wobei ich filecontentsnur verwendet habe, um das Beispiel in sich geschlossen zu machen; der Dateiname wurde geändert, um meine Dateien nicht zu überschreiben. Sie können (und sollten) eine separate Datei mit dem von Ihnen bevorzugten Namen verwenden.

Wenn Sie LaTeX und Biber wie gewohnt ausführen, erhalten Sie

Bildbeschreibung hier eingeben

verwandte Informationen