我正在尝试在 tikzposter 中制作 a1 学术海报,需要使用 3 个参考文献,我已使用 bibtex 将它们放入一个块中。
有没有办法让我放置参考资料的块中的字体比其他块中的字体小一些?我使用了 20pt 大小的字体,我不想让内容变得更小,否则会很难阅读,但我的空间不够了,所以我只能用任何多余的空间!
这是我正在使用的的基本代码,我想使“参考”框中的字体大小变小:
\documentclass[20pt,a1paper, landscape,colspace=0.7cm,blockverticalspace=1cm]{tikzposter}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{multicol}
\usepackage{adjustbox}
\usepackage{capt-of}
\setlength{\columnsep}{1.5cm}
\useblockstyle{Basic}
\usecolorstyle{Sweden}
\tikzposterlatexaffectionproofoff
\title{\parbox{0.5\linewidth}{title}}
\author{author}
\institute{institution}
\begin{document}
% Introduction.
\maketitle
\begin{columns}
\column{0.7}
\block{Introduction}
{\begin{multicols}{2}
blah blah blah
\end{multicols}
}
\begin{subcolumns}
\subcolumn{0.5}
\block{test}
{test
}
\subcolumn{0.5}
\block{test}
{testtest}
\end{subcolumns}
\column{0.3}
\block{}
{\vspace{-2cm}
\begin{tikzfigure}[caption]
\includegraphics[width=0.25\textwidth]{diagram.png}
\end{tikzfigure}
}
\block{References}
{\begingroup
\renewcommand\refname{\vskip -2cm}
\bibliographystyle{abbrv}
\bibliography{references}
\endgroup
}
\end{columns}
\end{document}
答案1
将其放在\small
区块的开头对我来说是可行的。
\block{References}
{
\small
\blindtext
}