[Tex/LaTex] How to change font size in Bibliography using BibTex with apacite package

bibliographiesfontsize

I am using BibTex for my references with the style package apacite. Within the document I am using the font size 12pt, but would like to use only 11pt fontsize for the references. Sorry, but my document guidelines ask for this. I know it has been discussed in some threads, but all the proposed solutions didn't work in my case. I am using Tex Live 2012.

Here a short code example:

   \documentclass[12pt,a4paper,headings=normal]{scrartcl}
   \usepackage{apacite}
   \begin{document}
   \section{Assignment}
   In this short paper, an analytical overview on the structure of two 
   scientific papers \cite{Kaplanidou2010, Humphreys2011} is provided.
   The analytical focus is taken on research paradigms, research types,
   research designs and methods of the mentioned articles.
  \bibliographystyle{apacite}
  \bibliography{Biblio_Perso}
  \end{document}

Here is the content of the file Biblio_Perso.bib:

@article{Humphreys2011,
title={{Who cares where I play? Linking reputation with the golfing capital
and the implication for golf destinations}},
author={Humphreys, C.},
journal={Journal of Sport \& Tourism},
volume={16},
number={2},
pages={105--128},
year={2011},
publisher={Taylor \& Francis}
}


@article{Kaplanidou2010,
title={Predicting behavioral intentions of active event sport tourists: The    
case of a small-scale recurring sports event},
author={Kyriaki Kaplanidou and Gibson, H.J.},
journal={Journal of Sport \& Tourism},
volume={15},
number={2},
pages={163--179},
year={2010},
publisher={Taylor \& Francis}
}

Thanks in advance for any help. Yours!

Best Answer

You have two choices.

First choice: apacite without natbib

The bibliography environment is typeset according to \bibliographytypesize, which defaults to \normalsize; so it's sufficient to change this macro.

\documentclass[12pt,a4paper,headings=normal]{scrartcl}

\usepackage{apacite}
% \small is 11pt if the base font is 12pt
\renewcommand\bibliographytypesize{\small}

\begin{document}

\tableofcontents
\section{Assignment}
In this short paper, an analytical overview on the structure of two 
scientific papers \cite{Kaplanidou2010, Humphreys2011} is provided.
The analytical focus is taken on research paradigms, research types,
research designs and methods of the mentioned articles.

\bibliographystyle{apacite}
\bibliography{Biblio_Perso}
\end{document}

Second choice: apacite with natbib

The bibliography is typeset according to \bibfont; however natbib redefines the title making procedure, so we need to issue the command that puts the reference section in the table of contents.

\documentclass[12pt,a4paper,headings=normal]{scrartcl}

\usepackage[natbibapa]{apacite}
\renewcommand{\bibfont}{\small}
\renewcommand\bibsection{%
  \section*{\refname\markboth{\MakeUppercase{\refname}}{\MakeUppercase{\refname}}}%
  \addcontentsline{toc}{section}{\refname}%
}

\begin{document}
\tableofcontents
\section{Assignment}
In this short paper, an analytical overview on the structure of two 
scientific papers \cite{Kaplanidou2010, Humphreys2011} is provided.
The analytical focus is taken on research paradigms, research types,
research designs and methods of the mentioned articles.

\bibliographystyle{apacite}
\bibliography{Biblio_Perso}
\end{document}
Related Question