我想改变海报的背景颜色,但无论我尝试什么命令,都没有任何变化。
我正在使用这张海报:http://www.latextemplates.com/template/baposter-landscape-poster。
海报模板中包含以下内容:
\newcommand{\baposter@backgroundCmd}{\error{No background command defined. Use \background{...} to define background}}
\newcommand{\background}[1]{\renewcommand{\baposter@backgroundCmd}{#1}}
所以我认为\background
它可能会起作用,但并没有。
这些是相关的包:
\documentclass[landscape,a0paper,fontscale=0.285]{baposter} % Adjust the font scale/size here
\usepackage{graphicx} % Required for including images
\graphicspath{{figures/}} % Directory in which figures are stored
\usepackage{xcolor}
\usepackage{colortbl}
\begin{document}
\begin{poster}
如果有人有任何想法,那就超出了理想范围。
答案1
如果您对单色背景感到满意,那么很简单:
\definecolor{BGcolour}{RGB}{40,40,40} % Define the colour named BGcolour
\begin{document}
\begin{poster}{
% other options
bgColorOne=BGcolour, % declare background colour
background=plain, % set background to be plain colour
% other options}
% Poster code
\end{document}
个人附注:
注意图形的透明度!
注意文本和图形与背景的颜色匹配!
我认为在大多数情况下,纯白色(background=none
)背景和哑光纸是最佳选择。