컨텐츠로 건너뛰기

How can I use BibTeX to cite a website in LaTeX?

이 내용은 아직 번역본이 없습니다.

There are several ways to cite a website in LaTeX. In this short answer to the question, we give three, the easiest being BibLaTeX via the CiteDrive browser extension in the last example.

BibTeX 항목을 관리할 간단한 솔루션이 필요하신가요? CiteDrive를 탐색해보세요!

  • 웹 기반 현대적인 참고 문헌 관리
  • 동료 연구자들과 협업하고 공유하기
  • Overleaf와의 통합
  • BibTeX/BibLaTeX에 대한 포괄적인 지원
  • 브라우저에서 직접 문서와 웹사이트 저장
  • 수천만 개의 참조가 있는 데이터베이스에서 새로운 기사 검색
CiteDrive 사용해보기 ► 데모 보기

Using BibTeX

In BibTeX we use @misc as a workaround and make use of the note field to specify the URl and usually an access date. In this example, url (or hyperref) is required using usepackage{url}.

@misc{CiteDrive2022,
title = {CiteDrive brings reference management to Overleaf},
author = {CiteDrive, Inc},
year = 2022,
note = {\url{https://www.citedrive.com/overleaf} [Accessed: (Use the date of access)]}
}

Alternatively, the howpublished field can be used:

@misc{CiteDrive2022,
title = {CiteDrive brings reference management to Overleaf},
author = {CiteDrive, Inc},
year = 2022,
note = {Accessed: (Use the date of access)},
howpublished = {\url{https://www.citedrive.com/overleaf}}
}

Using BibLaTeX

If you use BibLaTeX, which we recommend, the @online entry type is inherently supported and works without a further tweak. You can enter the URL and access date in the fields url and urldate, respectively.

@online{CiteDrive2022,
title = {CiteDrive brings reference management to Overleaf},
author = {CiteDrive, Inc},
year = 2022,
url = {https://www.citedrive.com/overleaf},
urldate = {Use the date of access}
}

Using natbib

People frequently inquire about how to cite web pages using natbib. We emphasize that it works in the same way as BibTeX. Natbib is a tool for styling in-text citations, and it depends on BibTeX as a backend.