我正在使用带有样式包 apacite 的 BibTex 来处理我的参考文献。在文档中,我使用的字体大小为 12pt,但我想只使用 11pt 字体大小来处理参考文献。抱歉,但我的文档指南要求这样做。我知道一些帖子已经讨论过这个问题,但所有提出的解决方案对我的情况都不起作用。我使用的是 Tex Live 2012。
这是一个简短的代码示例:
\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}
以下是文件 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}
}
提前感谢你的帮助。你的!
答案1
你有两个选择。
第一选择:apacite
无natbib
书目环境根据 排版\bibliographytypesize
,默认为\normalsize
;因此更改此宏就足够了。
\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}
第二选择apacite
:natbib
参考书目是按照 排版的\bibfont
;但是natbib
重新定义了标题制作程序,因此我们需要发出将参考文献部分放入目录中的命令。
\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}
答案2
尝试
\begingroup
\def\bibfont{\small}
\bibliographystyle{apacite}
%\clearpage %if it should start on a new page
\addcontentsline{toc}{section}{References}
\bibliography{Biblio_Perso}
\endgroup