I want a beamer presentation with my bibliography at the end. It should have a two-columns layout and a page number that, preferably, is inexistant (or that follows the page numbering from the last slide before the bibliography, even if a long bibliography is written over several slides).
I can get the bibliography to be written over several slides in the desired layout only if the \bibliography argument is written outside of a \frame (or \begin{frame}) argument.
The problem is that I obtain a bibliography with a page number that is repeated all along the bibliography and is all the same (i.e., is blocked) since the last \frame. I have unsuccessfully tried several commands (e.g., \nopagenumbering or \pagenumbering{gobble} or \pagestyle{empty} or \renewcommand{\thepage}{}
).
Does someone has a solution or an idea ? Many thanks in advance !!
SkyR
Here is a reproducible example: First the file called "refs.bib":
@article{a,
author = { Anat Freund PhD },
title = {Commitment and Job Satisfaction as Predictors of Turnover Intentions Among Welfare Workers},
journal = {Administration in Social Work},
volume = {29},
number = {2},
pages = {5-21},
year = {2005},
publisher = {Routledge}
}
@article{b,
author = { Louis A. Penner and Alison R. Midili and Jill Kegelmeyer },
title = {Beyond Job Attitudes: A Personality and Social Psychology Perspective on the Causes of Organizational Citizenship Behavior},
journal = {Human Performance},
volume = {10},
number = {2},
pages = {111-131},
year = {1997},
publisher = {Routledge}
}
@article{c,
title = "The influence of job satisfaction on child welfare worker's desire to stay: An examination of the interaction effect of self-efficacy and supportive supervision",
journal = "Children and Youth Services Review",
volume = "32",
number = "4",
pages = "482 - 486",
year = "2010",
issn = "0190-7409",
author = "Szu-Yu Chen and Maria Scannapieco",
keywords = "Child welfare, Worker retention, Job satisfaction, Supervisor's support, Work related self-efficacy"
}
@article{d,
title = "Job conditions, unmet expectations, and burnout in public child welfare workers: How different from other social workers?",
journal = "Children and Youth Services Review",
volume = "33",
number = "2",
pages = "358 - 367",
year = "2011",
issn = "0190-7409",
author = "Hansung Kim",
keywords = "Child welfare, Job stress, Depersonalization, Social workers"
}
@article{e,
author = {Petersen, Michael Bang and Sznycer, Daniel and Cosmides, Leda and Tooby, John},
title = {Who Deserves Help? Evolutionary Psychology, Social Emotions, and Public Opinion about Welfare},
journal = {Political Psychology}}
Second, the main file:
\documentclass[12pt]{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{color}
\usepackage{multicol}
\usepackage{natbib}
\usepackage{pstricks}
\usepackage[absolute,overlay]{textpos}
\usepackage{tikz}
\usepackage{array}
\usepackage{amsmath}
\usepackage{xcolor}
\usepackage{graphics}
\setbeamertemplate{items}[ball]
\usepackage{appendixnumberbeamer}
\mode<presentation>{}
\usetheme{Warsaw}
\addtocontents{toc}{\protect\thispagestyle{empty}}
\pagenumbering{gobble}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\vspace*{0.6cm}
\title[small title]{{\large{Big title}}}
\author[J. Deuf]{John Deuf}
\vspace{1cm}
\institute{ \Large{National center of research}
}
\date{1st of january 2043}
\setbeamertemplate{navigation symbols}{}
\addtobeamertemplate{footline} {\hfill\insertframenumber/\inserttotalframenumber\hspace{2em}\null}
\begin{document}
{
\setbeamertemplate{headline}{}
\begin{frame}[plain]
\vspace{-1cm}
\maketitle
\end{frame}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}
\section{Part1}
\frametitle{Title1}
\nocite{ a,b,c,d,e}
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}
\section{Part2}
\frametitle{Title2}
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}
\section{Part3}
\frametitle{Title3}
\end{frame}
{
\begin{multicols}{2}
\color{black}
\frametitle{}
\bibliographystyle{alpha}
\small
\bibliography{refs}
\end{multicols}
}
\end{document}

