Dies ist ein minimaler Code für das frühere BattlesHISTORY-Problem: Es wird für jedes Zitat ausgeführt, es sei denn, ich habe einen \parencite
Inline-Befehl. Ich hoffe, das hilft. Ich habe viel Zeit investiert. Danke.
\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}
Antwort1
Soweit ich das im biblatex-mla
Handbuch sehen kann, unterstützt der Stil dies nicht @misc
.
Außerdem \addbibresource
sollte das Argument to die eigentliche Datei enthalten, .bib
die Sie lesen möchten, in diesem Fall \jobname.bib
. Für Ihre Produktionsversion könnte es sein references.bib
oder ein beliebiger anderer Name.
\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}
article
Normalerweise bekomme ich nur eine einzelne Seite für das Bild.
Wenn Sie hinzufügen \usepackage{hyperref}
, wird „Web“ zu einem Hyperlink, der auf die angeforderte Site verweist.