Artículos no impresos en bibliografía mientras que los manuales están bien.

Artículos no impresos en bibliografía mientras que los manuales están bien.

Tengo un problema con mi bibliografía. Funciona solo con manual y no con artículo. Yo uso TexMaker con BibLatex. Cuando compilo hago pdflatex+biblatex+pdflatex(x2) y mi comando biblatex está configurado en biber%. En mi archivo .tex uso

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

y aquí está mi archivo .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},
}

¿Alguien me puede ayudar? ¡Gracias!

Respuesta1

Hice algunas correcciones en las .bibentradas:

  1. “Autores corporativos” como los que Smiths Metal Centresdeberían ir entre llaves
  2. Materials & Designdebiera serMaterials \& Design
  3. faltaba una clave para una entrada, agreguécosta
  4. year={in press}es inválido
  5. el formato de las iniciales era inconsistente
  6. Las partes que no deben estar sujetas a minúsculas deben estar reforzadas.

Después de las correcciones que obtengo

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

donde lo usé filecontentssolo para que el ejemplo fuera autónomo; el nombre del archivo se cambia para no dañar mis archivos. Puedes (y debes) usar un archivo separado con el nombre que prefieras.

Ejecutar LaTeX y Biber de la forma habitual produce

ingrese la descripción de la imagen aquí

información relacionada