我正在尝试使用 .bib 文件创建参考书目,但它无法以 pdf 格式打印。
我的 bib 文件具有以下结构:
@book{latexcompanion,
author = {Michel Goossens and Frank Mittelbach and Alexander Samarin},
title = {The \LaTeX\ Companion},
year = {1993},
publisher = {Addison-Wesley},
location = {Reading, Massachusetts}
}
我的文件有这个方面:
\documentclass[11pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{biblatex}
\addbibresource{report.bib}
\begin{document}
\chapter{Bibliografia}
ola \cite{latexcompanion}
\printbibliography
\chapter{Anexos}
\end{document}
我做错什么了?Cumps。
答案1
只是一个建议。使用相同的 .bib 文件,如果您尝试这样做,将会容易得多:
\documentclass[12pt,a4paper]{report}
\usepackage{cite}
\begin{document}
\chapter{Bibliografia}
ola \cite{latexcompanion}.
\chapter{Anexos}
\bibliography{report}{}
\bibliographystyle{plain}
\end{document}