내 참고문헌에 문제가 있습니다. 기사로는 작동하지 않고 매뉴얼로만 작동합니다. BibLatex와 함께 TexMaker를 사용합니다. 컴파일할 때 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
- 한 항목의 키가 누락되었습니다. 추가했습니다.
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를 실행하면 다음과 같은 결과가 나옵니다.