これは、以前の 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.bib
references.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」は要求されたサイトを指すハイパーリンクになります。