戦闘の歴史の引用問題

戦闘の歴史の引用問題

これは、以前の BattlesHISTORY の問題に対する最小限のコードです。インライン コマンドがない限り、すべての引用に対してこれを実行します\parencite。これが役立つことを願っています。多くの時間を費やしました。ありがとうございます。

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

ここに画像の説明を入力してください

答え1

マニュアルで見る限りbiblatex-mla、このスタイルは をサポートしていません@misc

また、 の引数には、実際に読み取るファイル (この場合は )\addbibresourceを含める必要があります。製品版では、または任意の名前になります。.bib\jobname.bibreferences.bib

\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以前は、画像のページを 1 つだけ取得していました。

ここに画像の説明を入力してください

を追加すると\usepackage{hyperref}、「Web」は要求されたサイトを指すハイパーリンクになります。

関連情報