다음 BibTex 참조 출력을 고려하십시오(소스는 아래에서 찾을 수 있음).
\bibliographystyle{plain}
출력이 제가 작성 중인 논문의 요구 사항에 맞기 때문에 사용하고 있습니다 . 을 시도했지만 natbib
스타일을 사용할 때에도 모든 참고문헌 스타일이 변경되었기 때문에 따라오지 못했습니다 plainnat
. 제대로 작동하지 않는 것은 액세스한 날짜를 포함해야 하는 참조 URL을 인용하는 것입니다. 다른 모든 인용(저는 책, 논문 등도 인용합니다)은 정상적으로 작동합니다.
1) 날짜 앞에 '액세스됨:'이라는 접두사를 추가할 수 있는 방법이 있습니까(그리고 해당 날짜가 있는 경우에만 해당됩니까?) 첫 번째 항목은 다음과 같습니다.
[1] Wikipedia, https://en.wikipedia.org, Accessed: March 2014
2) URL 분리를 방지하는 방식으로 URL 분리를 제어할 수 있는 방법이 있습니까(예제 [3] 및 [4]에서 URL 앞에 줄바꿈을 삽입하면 URL이 함께 유지될 수 있지만 URL은 예 [5]는 너무 길어서 한 줄 안에 머물 수 없나요?
3) 저보다 URL 항목을 정의하는 더 쉬운 방법이 있습니까(아래 참조)?
LaTex 소스는 다음과 같습니다.
\documentclass[a4paper]{scrartcl}
\bibliographystyle{plain}
\usepackage{url}
\usepackage{cite}
\begin{document}
\nocite{wiki-web1,wiki-web2,wiki-web3,wiki-web4,wiki-web5}
\bibliography{bibtex}
\end{document}
BibTex 소스:
@Other{wiki-web1,
Title = {Wikipedia},
HowPublished = {\url{https://en.wikipedia.org}},
Month = mar,
Timestamp = {2014.03.16},
Year = {2014}
},
@Other{wiki-web2,
Title = {Wikipedia},
Author = {Wikipedia Foundation},
HowPublished = {\url{https://en.wikipedia.org/wiki/Main_Page}},
Month = mar,
Year = {2014}
},
@Other{wiki-web3,
Title = {Wikipedia},
Author = {Wikipedia Foundation (SF)},
HowPublished = {\url{https://en.wikipedia.org/wiki/Main_Page}},
Month = mar,
Year = {2014}
},
@Other{wiki-web4,
Title = {Wikipedia},
Author = {Wikipedia Foundation (SF)},
HowPublished = {\url{https://en.wikipedia.org/wiki/Main_Page}},
Month = mar,
Year = {2014}
},
@Other{wiki-web5,
Title = {Wikipedia},
Author = {Wikipedia Foundation (SF)},
HowPublished = {\url{https://en.wikipedia.org/wiki/File:Camborne_Redruth_Community_Hospital_-_geograph.org.uk_-_716833.jpg#filehistory}},
Month = mar,
Year = {2014}
}
답변1
웹 문서와 관련된 날짜에는 두 가지 가능한 역할이 있습니다. year
및 필드 month
는 일반적으로 다음을 나타냅니다.언제문서가 작성되었거나 게시되었습니다. 문서에 (마지막으로) 액세스한 시간에 대한 정보를 제공하려면 note
다음과 같이 각 항목에 대한 필드를 설정할 수 있습니다.
note = "Last accessed 16 March 2014",
필드를 추가하는 전체 MWE는 note
다음과 같은 출력을 생성합니다.
\RequirePackage{filecontents}
\documentclass[a4paper]{scrartcl}
\bibliographystyle{plainnat}
\usepackage[hyphens]{url}
\usepackage[numbers]{natbib}
\begin{filecontents*}{\jobname.bib}
@misc{wiki-web1,
Title = {Wikipedia},
howpublished = "\url{https://en.wikipedia.org}",
Month = mar,
Timestamp = {2014.03.16},
Year = {2014},
note = "Last accessed 16 March 2014",
}
@misc{wiki-web2,
Title = {Wikipedia},
Author = {Wikipedia Foundation},
howpublished = "\url{https://en.wikipedia.org/wiki/Main_Page}",
Month = mar,
Year = {2014},
note = "Last accessed 16 March 2014",
}
@misc{wiki-web3,
Title = {Wikipedia},
Author = {Wikipedia Foundation (SF)},
howpublished = "\url{https://en.wikipedia.org/wiki/Main_Page}",
Month = mar,
Year = {2014},
note = "Last accessed 16 March 2014",
}
@misc{wiki-web4,
Title = {Wikipedia},
Author = {Wikipedia Foundation (SF)},
howpublished = "\url{https://en.wikipedia.org/wiki/Main_Page}",
Month = mar,
Year = {2014},
note = "Last accessed 16 March 2014",
}
@misc{wiki-web5,
Title = {Wikipedia},
Author = {Wikipedia Foundation (SF)},
howpublished = "\url{https://en.wikipedia.org/wiki/File:Camborne_Redruth_Community_Hospital_-_geograph.org.uk_-_716833.jpg#filehistory}",
Month = mar,
Year = {2014},
note = "Last accessed 16 March 2014",
}
\end{filecontents*}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
\nocite{wiki-web1,wiki-web2,wiki-web3,wiki-web4,wiki-web5}
\bibliography{\jobname}
\end{document}
귀하의 다른 문의 사항을 해결하기 위해. 예, 필드 앞에 줄바꿈을 자동으로 삽입하는 특정 참고문헌 스타일이 있습니다 url
. 귀하의 항목 url
에는 이라는 필드가 제공되지 않았습니다 howpublished
.