Beamer 슬라이드에 참고 문헌 목록 올리기
bibtex 파일 만들기
ref.bib
라는 파일에 참고 문헌 bibtex 목록을 만드는 것으로 가정합니다.
Google Scholar에서 논문 이름이나 책 이름을 검색하고 인용 마크 """에서 bibtex를 얻습니다.
Step1:
Step2:
Step3:
이 코드를 ref.bib
에 붙여 넣습니다.
인용하려는 문헌에 대해 위의 단계를 반복하여 ref.bib
를 완성하십시오.
(예)
ref.bib@book{boyd2004convex,
title={Convex optimization},
author={Boyd, Stephen and Vandenberghe, Lieven},
year={2004},
publisher={Cambridge university press}
}
@inproceedings{yoshida2018safe,
author = {Yoshida, Tomoki and Takeuchi, Ichiro and Karasuyama, Masayuki},
title = {Safe Triplet Screening for Distance Metric Learning},
booktitle = {Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining},
year = {2018},
pages = {2653--2662},
numpages = {10},
}
슬라이드에 올리기
슬라이드 템플릿은 여기을 참조하십시오.
slide.tex\begin{frame}[allowframebreaks]{Reference}
\scriptsize
\beamertemplatetextbibitems
\bibliographystyle{junsrt}
\bibliography{ref}
\end{frame}
이것을 문헌 목록을 넣고 싶은 곳에 쓰면, 앞의 예에서는 본문에서 \cite{boyd2004convex}
또는 \cite{yoshida2018safe}
에서 인용 할 수있다.
@book{boyd2004convex,
title={Convex optimization},
author={Boyd, Stephen and Vandenberghe, Lieven},
year={2004},
publisher={Cambridge university press}
}
@inproceedings{yoshida2018safe,
author = {Yoshida, Tomoki and Takeuchi, Ichiro and Karasuyama, Masayuki},
title = {Safe Triplet Screening for Distance Metric Learning},
booktitle = {Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining},
year = {2018},
pages = {2653--2662},
numpages = {10},
}
슬라이드 템플릿은 여기을 참조하십시오.
slide.tex
\begin{frame}[allowframebreaks]{Reference}
\scriptsize
\beamertemplatetextbibitems
\bibliographystyle{junsrt}
\bibliography{ref}
\end{frame}
이것을 문헌 목록을 넣고 싶은 곳에 쓰면, 앞의 예에서는 본문에서
\cite{boyd2004convex}
또는 \cite{yoshida2018safe}
에서 인용 할 수있다.\beamertemplatetextbibitems
: 참고 문헌 목록에 인용 번호 ([1], [2] 등)를 표시하는 데 필요. 쓰지 않으면 문서 마크가 되어 버린다.\bibliographystyle{}
: 인용 스타일.\bibliography{}
: .bib
파일 이름 쓰기 allowframebreaks
: 슬라이드에서 튀어 나오면 자동으로 페이지를 만드는 옵션 (예)
여기
컴파일
pbibtex 슬라이드
bibtex 슬라이드
또는
bibtex 슬라이드
컴파일은 최소 3 번 정도 필요합니다.
컴파일 용 Makefile은 에서 공개 중입니다.
pbibtex
또는 bibtex
를 사용하여 여기이 변경됩니다.기본적으로 pbibtex 스타일은 j로 시작합니다 (jplain, junsrt 등).
※사용하는 커멘드가 스타일에 대응하고 있지 않으면 에러가 나오므로 주의!!
natbib를 사용하는 경우
tex 프리앰블에 \usepackage{natbib}
를 씁니다.
본문에서 인용 할 때 \citet{}
또는 \citep{}
를 사용하십시오.
\citet{}
출력 예: Boyd and Vandenberghe (2004)
\citep{}
출력 예: (Boyd and Vandenberghe, 2004)
slide.tex
\begin{frame}[allowframebreaks]{Reference}
\scriptsize
\bibliographystyle{apalike}
\bibliography{ref}
\end{frame}
스타일은 natbib에 대한 스타일을 사용해야합니다.
예를 들어, 사용할 수 있는 스타일을 참조하십시오.
요약
bibtex를 사용하여 효율적인 자료 작성을 목표로합니다.
논문에서는 필수 사항.
Reference
이 문제에 관하여(Beamer 슬라이드에 참고 문헌 목록 올리기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/birdwatcher/items/0dd3fe2e8ff5685cc3f7
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Beamer 슬라이드에 참고 문헌 목록 올리기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/birdwatcher/items/0dd3fe2e8ff5685cc3f7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)