Este es un código mínimo para el problema anterior de BattlesHISTORY: lo hace para cada cita, a menos que tenga un \parencite
comando en línea. Espero que esto ayude. He pasado mucho tiempo. Gracias.
\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[style=mla]{biblatex}
\addbibresource{references.bib}
\title{ABC}
\author{XYZ}
\date{15 08 2020}
\begin{document}
American Revolutionary.\cite{BattlesHISTORY}
\begin{filecontents*}{\jobname.bib}
@misc{BattlesHISTORY,
title = {{Battles of Lexington and Concord - HISTORY}},
url = {https://www.history.com/topics/american-revolution/battles-of-lexington-and-concord}
}
\end{filecontents*}
\printbibliography
\end{document}
Respuesta1
Por lo que puedo ver en el biblatex-mla
manual, el estilo no es compatible @misc
.
Además, el argumento \addbibresource
debe contener el .bib
archivo real que desea leer, en este caso \jobname.bib
. Para su versión de producción, podría ser references.bib
el nombre que tenga.
\begin{filecontents*}{\jobname.bib}
@online{BattlesHISTORY,
title = {Battles of {Lexington} and {Concord} -- {HISTORY}},
url = {https://www.history.com/topics/american-revolution/battles-of-lexington-and-concord}
}
\end{filecontents*}
\documentclass{article}
\usepackage[style=mla]{biblatex}
\addbibresource{\jobname.bib}
\title{ABC}
\author{XYZ}
\date{15 08 2020}
\begin{document}
\maketitle
American Revolutionary~\autocite{BattlesHISTORY}.
\printbibliography
\end{document}
Solía article
obtener una sola página para la imagen.
Si agrega \usepackage{hyperref}
, “Web” se convierte en un hipervínculo que apunta al sitio solicitado.