\definecolor{mainCol}{rgb}{0.0,0.0,0.396} %dark blue
The normal text color with:
\definecolor{TextCol}{rgb}{1.0,1.0,1.0} %white
The section title color with:
\definecolor{SectionCol}{rgb}{1.0,0.6,0.0} %orange
And the section block color with:
\definecolor{BoxCol}{rgb}{1.0,1.0,1.0} %white
However, after doing this demo (the code is below), it seems like the subsection text has turned white, but the normal text is still black.
My other questions are:
1) how do you change the title color?
2) how do you change the color of the lines that separate the columns?
Can anyone shed some light?
Thanks!
Dave
Code: Select all
\documentclass{sciposter}
\usepackage[pdftex]{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{multicol}
\usepackage[landscape]{geometry}
\usepackage{subfig}
\usepackage{verbatim}
\usepackage{algorithmic}
\newtheorem{Def}{Definition}
\renewcommand{\titlesize}{\Huge}
\definecolor{mainCol}{rgb}{0.0,0.0,0.396} %dark blue
\definecolor{TextCol}{rgb}{1.0,1.0,1.0} %white
\definecolor{SectionCol}{rgb}{1.0,0.6,0.0} %orange
\definecolor{BoxCol}{rgb}{1.0,1.0,1.0} %white
\title{Test title}
\author{Test authors}
\institute{Test institute}
\setmargins[3cm]
\setlength{\columnseprule}{1pt}
\begin{document}
\maketitle
\begin{multicols}{5}
%%%%%%%%%%%%%%%%%%%%%%
\section{Goals}
do something like in slides - block diagram but with images
\subsection{Input}
\begin{itemize}
\item Model - triangulated mesh
\item One or more LiDAR scans of a scene
\item An estimated transformation of the model into the scene
\end{itemize}
\end{multicols}
\end{document}