강의노트를 참조날짜와 웹페이지로 어떻게 인용하나요?

강의노트를 참조날짜와 웹페이지로 어떻게 인용하나요?

강의노트를 참고하고 있어요앤드류 서덜랜드, 명명 된타원 곡선관련 홈페이지에서 제공됩니다.

BibTeX를 사용하는 라텍스 문서에서 "14.Ordinary and supersingular curves" 메모를 인용한 날짜와 웹페이지 링크를 인용해야 합니다. 가장 적합한 인용 스타일은 무엇이며 이를 BibTeX 파일에 어떻게 입력할 수 있습니까? 스타일을 사용했지만 alpha해당 스타일에 대한 웹페이지 링크가 표시되지 않습니다.

이를 지원하는 좋은 참조 스타일을 추천해주세요.

답변1

참고문헌 스타일(예: alpha)이 충분히 오래되어 이라는 필드를 인식하고 처리하도록 프로그래밍할 수 없는 경우 url해당 필드에 URL 관련 정보를 덤프하면 됩니다 note. 인용 관리 패키지 @misc와 함께 항목 유형을 사용하는 것이 좋습니다 .natbib

다음 항목은 해당 강좌의 전체 강의 노트를 참조하는 데 사용됩니다. 하나의 강의에 대한 참조를 생성하려면 적절하게 조정하십시오.

여기에 이미지 설명을 입력하세요

\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를 사용하는 것이 옵션인 경우(참조.이 게시물booklet시작하려면) 또는 항목 유형을 사용하는 것이 좋습니다 report.

문서에 따르면:

작은 책자

정식 출판사나 후원기관이 없는 책 같은 작품. 해당되는 경우 공개 형식으로 게시 정보를 제공하려면 Howpublished 필드를 사용하세요. 필드 유형도 유용할 수 있습니다.

필수 입력 사항: 저자/편집자, 제목, 연도/날짜

선택 필드: 자막, titleaddon, 언어, 출판 방법, 유형, 메모, 위치, 장, 페이지, 페이지 합계, 부록, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate

보고서

대학이나 기타 기관에서 발행한 기술 보고서, 연구 보고서 또는 백서입니다. 유형 필드를 사용하여 보고서 유형을 지정합니다. 후원기관은 기관분야에 들어갑니다.

필수 입력 사항: 저자, 제목, 유형, 기관, 연도/날짜

선택 필드: 자막, titleaddon, 언어, 번호, 버전, 메모, 위치, 월, 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}

세 가지 항목이 비슷하게 표시됩니다. 여기에 이미지 설명을 입력하세요

관련 정보