thebibliography
환경을 사용하여 비머 프리젠테이션에 내 참고 자료를 나열하고 싶습니다 .
책 아이콘(
\beamertemplatebookbibitems
) 및기사 아이콘(
\beamertemplatearticlebibitems
)
각 소스 앞에
웹사이트에도 아이콘이 있나요? 같은 것 \beamertemplatewebsitebibitems
? 그렇지 않다면 이를 쉽게 구현할 수 있는 방법이 있습니까?
답변1
online
템플릿 에 대한 옵션이 있습니다 bibliography item
. 사전 정의된 옵션을 보여주는 예:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{thebibliography}{9}
\setbeamertemplate{bibliography item}[online]
\bibitem{A} ItemA
\setbeamertemplate{bibliography item}[book]
\bibitem{B} ItemB
\setbeamertemplate{bibliography item}[article]
\bibitem{C} ItemC
\setbeamertemplate{bibliography item}[triangle]
\bibitem{D} ItemD
\setbeamertemplate{bibliography item}[text]
\bibitem{E} ItemE
\end{thebibliography}
\end{frame}
\end{document}
물론 자신만의 이미지를 사용할 수도 있습니다.
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{thebibliography}{9}
\setbeamertemplate{bibliography item}{\includegraphics[width=1.5em]{ctanlion}}
\bibitem{A} CTAN lion drawing by Duane Bibby.
\end{thebibliography}
\end{frame}
\end{document}
답변2
biblatex
템플릿 을 확장하여 적절한 아이콘을 자동으로 선택할 수 있습니다 bibliography item
.
\documentclass{beamer}
\usepackage[style=authoryear]{biblatex}
\usepackage{hyperref}
\setbeamertemplate{bibliography item}{%
\ifboolexpr{ test {\ifentrytype{book}} or test {\ifentrytype{mvbook}}
or test {\ifentrytype{collection}} or test {\ifentrytype{mvcollection}}
or test {\ifentrytype{reference}} or test {\ifentrytype{mvreference}} }
{\setbeamertemplate{bibliography item}[book]}
{\ifentrytype{online}
{\setbeamertemplate{bibliography item}[online]}
{\setbeamertemplate{bibliography item}[article]}}%
\usebeamertemplate{bibliography item}}
\defbibenvironment{bibliography}
{\list{}
{\settowidth{\labelwidth}{\usebeamertemplate{bibliography item}}%
\setlength{\leftmargin}{\labelwidth}%
\setlength{\labelsep}{\biblabelsep}%
\addtolength{\leftmargin}{\labelsep}%
\setlength{\itemsep}{\bibitemsep}%
\setlength{\parsep}{\bibparsep}}}
{\endlist}
{\item}
\addbibresource{biblatex-examples.bib}
\begin{document}
\nocite{glashow,markey,knuth:ct:a,knuth:ct:b,companion,bertram,ctan}
\begin{frame}[noframenumbering,plain,allowframebreaks]{References}
\printbibliography
\end{frame}
\end{document}