参照日とウェブページを記載して講義ノートを引用するにはどうすればいいですか?

参照日とウェブページを記載して講義ノートを引用するにはどうすればいいですか?

私は講義ノートを参照していますアンドリュー・サザーランド、名前楕円曲線関連ウェブページに記載されています。

BibTeX を使用した LaTeX ドキュメントで、「14. 通常の曲線と超特異曲線」のノートを引用する必要があります。ノートを参照した日付と Web ページへのリンクも必要です。最も適切な引用スタイルは何ですか。また、これを BibTeX ファイルで入力するにはどうすればよいですか。alphaスタイルを使用しましたが、そのスタイルでは Web ページ リンクが表示されません。

それをサポートする適切な参照スタイルもお勧めください。

答え1

などの参考文献スタイルalphaが古すぎて、 というフィールドを認識して処理するようにプログラムできない場合はurl、 URL 関連の情報をフィールドにダンプするだけです。エントリ タイプを引用管理パッケージと一緒にnote使用することをお勧めします。@miscnatbib

次のエントリは、問題のコースの講義ノート全体を参照するために使用されます。 1 つの講義のみへの参照を作成する場合は、適切な調整を行ってください。

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

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@misc{sutherland-notes,
  author = "Andrew Sutherland",
  title  = "{MIT Mathematics 18.783, Lecture Notes: Elliptic Curves}",
  note   = "URL: \url{https://math.mit.edu/classes/18.783/2015/lectures.html}. 
            Last visited on 2017/07/01",
  year   = 2015,
}
\end{filecontents}

\documentclass{article}
\usepackage[hyphens,spaces]{url}
\usepackage{natbib}
\citestyle{alpha} 
\bibliographystyle{alpha}
\usepackage{hyperref}
\hypersetup{colorlinks,urlcolor=blue,citecolor=cyan} % choose suitable colors

\begin{document}
\cite{sutherland-notes}
\bibliography{mybib}
\end{document}

答え2

biblatex と biber を使用することがオプションである場合 (cf.この郵便受け開始するには、bookletまたはreportエントリ タイプを使用することをお勧めします。

ドキュメントによると:

冊子

正式な出版社やスポンサー機関のない書籍のような作品。該当する場合は、フィールド howpublished を使用して、自由形式で出版情報を入力します。フィールド type も役立つ場合があります。

必須フィールド: 著者/編集者、タイトル、年/日

オプションフィールド: サブタイトル、タイトルアドオン、言語、公開方法、タイプ、注記、場所、章、ページ、ページ合計、補遺、出版状態、doi、eprint、eprintclass、eprinttype、URL、URL日付

報告

大学やその他の機関が発行する技術レポート、研究レポート、またはホワイト ペーパー。タイプ フィールドを使用してレポートの種類を指定します。スポンサー機関は機関フィールドに入力します。

必須フィールド: 著者、タイトル、種類、機関、年/日

オプションフィールド: サブタイトル、タイトルアドオン、言語、番号、バージョン、注記、場所、月、ISRN、章、ページ、ページ合計、補遺、pubstate、doi、eprint、eprintclass、eprinttype、URL、URLdate

エントリーの例としては、次のようなものが考えられます。

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@misc{sutherland-notes-misc,
  author = "Andrew Sutherland",
  title  = "{Elliptic Curves}",
  note   = "URL: \url{https://math.mit.edu/classes/18.783/2015/lectures.html}. 
            Last visited on 2017/07/01",
  year   = 2015,
}
@booklet{sutherland-notes-booklet,
  author = "Andrew Sutherland",
  title  = "{Elliptic Curves}",
  note   = "URL: \url{https://math.mit.edu/classes/18.783/2015/lectures.html}. 
            Last visited on 2017/07/01",
  year   = 2015,
}
@report{sutherland-notes-report,
  author = "Andrew Sutherland",
  title  = "{Elliptic Curves}",
  note   = "URL: \url{https://math.mit.edu/classes/18.783/2015/lectures.html}. 
            Last visited on 2017/07/01",
  year   = 2015,
  institution = "Massachusetts Institute of Technology, Department of Mathematics"
}
\end{filecontents}

\documentclass{article}
\usepackage{biblatex}
\bibliography{mybib}

\begin{document}
\cite[14. Ordinary and supersingular curve]{sutherland-notes-misc}, \cite[14. Ordinary and supersingular curve]{sutherland-notes-booklet}, \cite[14. Ordinary and supersingular curve]{sutherland-notes-report}
\printbibliography
\end{document}

3 つのエントリが同様に表示されることに注意してください。 ここに画像の説明を入力してください

関連情報