BattlesHISTORY-Zitierproblem

BattlesHISTORY-Zitierproblem

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 \parenciteInline-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}

Bildbeschreibung hier eingeben

Antwort1

Soweit ich das im biblatex-mlaHandbuch sehen kann, unterstützt der Stil dies nicht @misc.

Außerdem \addbibresourcesollte das Argument to die eigentliche Datei enthalten, .bibdie Sie lesen möchten, in diesem Fall \jobname.bib. Für Ihre Produktionsversion könnte es sein references.biboder 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}

articleNormalerweise bekomme ich nur eine einzelne Seite für das Bild.

Bildbeschreibung hier eingeben

Wenn Sie hinzufügen \usepackage{hyperref}, wird „Web“ zu einem Hyperlink, der auf die angeforderte Site verweist.

verwandte Informationen