웹페이지의 일부를 인용하고 싶습니다. 책의 한 장과 비슷한 것입니다. 그러나선적 서류 비치, 항목에는 관련성이 있어 보이는 필드 만 @online
있지만 제가 이해한 바에 따르면 기사의 일부가 아닌 전체 기사를 참조하는 제목을 표시하는 역할을 합니다.subtitle
titleaddon
(참고하고 싶은 사이트.) 제가 현재 하고 있는 일은 다음과 같습니다.
@online{parallel-computing,
author = "Blaise Barney",
title = "Introduction to Parallel Computing",
url = "https://computing.llnl.gov/tutorials/parallel_comp/#Whatis"
}
그리고 그 부분을 구체적으로 언급하고 싶습니다.병렬 컴퓨팅이란 무엇입니까?, 현재 URL을 참조하고 있습니다(적절한지 모르겠습니다).
답변1
이 특정 예의 경우(그리고 자체 URL이 있는 대부분의 웹사이트에 대해) @online
전체 웹사이트를 참조하고 특정 부분을 참조하기 위해 인용 후주에 '섹션'을 제공하는 데 사용합니다. 일반적으로 @book
참고문헌에 전체 내용을 추가하지만 특정 페이지만 인용하는 것과 비슷합니다 .
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@online{parallel-computing,
author = {Blaise Barney},
title = {Introduction to Parallel Computing},
url = {https://computing.llnl.gov/tutorials/parallel_comp},
urldate = {2019-08-06},
organization = {Lawrence Livermore National Laboratory},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem ipsum \autocite[section \enquote{What is Parallel Computing?}]{parallel-computing}.
\printbibliography
\end{document}
나에게 있어서 이 경우 가장 자연스럽고 독립적인 단위는 완전한 웹사이트인 것 같습니다.
참고문헌에서 특정 섹션을 참조해야 한다고 주장하는 경우 다음을 수행할 수 있습니다. 데이비드 퍼튼'에스댓글의 조언(ab) @inbook
항목 유형을 사용하십시오.
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@inbook{barney:whatis,
author = {Blaise Barney},
booktitle = {Introduction to Parallel Computing},
title = {What is Parallel Computing?},
url = {https://computing.llnl.gov/tutorials/parallel_comp/#Whatis},
urldate = {2019-08-06},
publisher = {Lawrence Livermore National Laboratory},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem ipsum \autocite{barney:whatis}.
\printbibliography
\end{document}
물론 다음 과 @inonline
관련된 항목 유형을 정의하는 것이 가능합니다.@online
@inbook
@book
. 현재로서는 이것이 노력할 가치가 있는지 의심스럽습니다. 그러나 가장 확실하게 실행 가능합니다. 보다BibLaTeX/Biber를 사용하여 완전히 새로운 데이터 유형을 만들려면 어떻게 해야 합니까?우선.
대안적으로,턱받이 서식 질문다음과 같은 항목을 가질 수 있도록 항목 maintitle
에 추가하는 방법을 보여줍니다.@online
@online{barney:whatis,
author = {Blaise Barney},
maintitle = {Introduction to Parallel Computing},
title = {What is Parallel Computing?},
url = {https://computing.llnl.gov/tutorials/parallel_comp/#Whatis},
urldate = {2019-08-06},
organization = {Lawrence Livermore National Laboratory},
}