
4시간 동안 답변을 검색하고 할 수 있는 모든 노력을 다한 후에는 구체적인 도움이 필요합니다. 보고서를 작성하는데 참고문헌을 포함하고 싶습니다. 여전히 다음과 같은 오류 메시지가 나타납니다.
- 빈 참고문헌
- 정의되지 않은 참조가 있습니다.
- 파일:(biblatex) "Filename"(biblatex)에서 BibTeX를 (재)실행하고 나중에 LaTeX를 다시 실행하세요.
- 3페이지의 '예제 인용' 인용 undefed*
내 코드는 다음과 같습니다
\documentclass[12pt, twoside]{report}
%Standard Packages
\usepackage[utf8]{inputenc}
\usepackage{caption}
\usepackage{graphicx}
\usepackage[english]{babel}
\usepackage{fancyhdr}
\usepackage{lmodern}
\usepackage{amsmath}
\usepackage{emptypage}
%\usepackage[round, authoryear]{natbib}
%\usepackage[nottoc]{tocbibind}
\usepackage{makeidx}
\usepackage{csquotes}
\usepackage{booktabs}
\usepackage{adjustbox}
\usepackage{comment}
\usepackage{color}
\graphicspath{{Pictures/}}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
% zusätzliche Schriftzeichen der American Mathematical Society
\usepackage{amsfonts}
\usepackage{amsmath}
%Library
\usepackage[backend=bibtex,bibencoding=ascii,style=authoryear,sorting=none]{biblatex}
\addbibresource{bibfile.bib}
\begin{document}
%\bibliography{bibfile.bib}
\newpage
\thispagestyle{empty}
\include{01_abstract}
\setcounter{page}{1}
\pagenumbering{roman}
\include{02_dedication}
\include{03_declaration}
\include{04_acknowledges}
\newpage
\tableofcontents{}
\listoffigures{}
\listoftables{}
\newpage
\setcounter{page}{1}
\pagenumbering{arabic}
\Include{Chapter1}
\printbibliography
\end{document}
내 bibfile의 일부도 있습니다.
@book{Fluid Mechanics Seventh Edition,
author = {Frank M. White},
title = {Fluid Mechanics, Seventh Edition},
year = {2011,
publisher = {McGraw-Hill}
}
Quick Build를 사용하여 문서를 제출할 때 latex + Bibtex + 2x Latex + Viewpdf가 실행됩니다. 참고문헌을 인쇄하려면 어떻게 해야 합니까? 도와주셔서 정말 감사합니다!
답변1
.bib 키에는 공백이 포함되어서는 안 되며, .bib 파일에서 연도의 여는 중괄호 뒤에 닫는 중괄호가 오지 않았습니다. 이 파일로
@book{Fluid_Mechanics_Seventh_Edition,
author = {Frank M. White},
title = {Fluid Mechanics, Seventh Edition},
year = {2011},
publisher = {McGraw-Hill}
}
그리고
\cite{Fluid_Mechanics_Seventh_Edition}
LaTeX 소스에서는 내 상자의 모든 것이 잘 작동합니다.