0

Is there any way to make section-wise references in the beamer similar to the case of chapter-wise references in the thesis?

leandriis
  • 62,593

1 Answers1

0

With \newrefsection to separate the sections from each other and multiple \printbibliography[section=...] commands:

enter image description here

\documentclass{beamer}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}


\section{first} \newrefsection
\begin{frame}{first frame of section 1}
Whatever text in the first section
\cite{westfahl:space}
\end{frame}

\begin{frame}{Bibliography of section 1}
\printbibliography[section=1]
\end{frame}

\section{second} \newrefsection
\begin{frame}{first frame of section 2}
Whatever text in the first section
\cite{aksin}
\cite{doody}
\end{frame}

\begin{frame}{Bibliography of section 2}
\printbibliography[section=2]
\end{frame}
\end{document}
leandriis
  • 62,593