我想将我的参考书目部分调整为特定字体大小(包括部分名称),因此我想知道如何使用 来实现\scalebox{scale}{object}
。
以下是我在手稿中对参考书目的称呼:
\bibliographystyle{abbrv} \bibliography{ref1}
答案1
文档cuposter
类基于article
。要更改参考书目中的字体,可以使用etoolbox
包并\AtBeginEnvironment
使用不同的字体(或者只是在命令之前切换字体大小\bibliography
);但是,这不会影响章节标题;要更改这一点,可以使用例如sectsty
在命令之前打包并调用\sectionfont
所需的修改\bibliography
;类似这样的操作:
\documentclass[noback]{cuposter}
\usepackage{etoolbox}
\usepackage{sectsty}
\AtBeginEnvironment{thebibliography}{\tiny}{}{}
\begin{document}
\section{A regular Section}
...
\sectionfont{\tiny}%just before the \bibliographystyle command
\bibliographystyle{abbrv}
\bibliography{biblio}
\end{document}
当然,\tiny
您也可以使用任何其他字体大小开关,甚至\fontsize{...}{...}\selectfont
进行更精细的控制。