Document Classessciposter colors

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
daviddoria
Posts: 60
Joined: Tue Sep 30, 2008 9:24 pm

sciposter colors

Post by daviddoria »

In the documentation for sciposter, it says you can set the background color with:
\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}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

sciposter colors

Post by localghost »

Looks to me like there are some bugs in this class which should be reported to the maintainer. Moreover it seems that the author hasn't provided according commands to customize the settings you listed. An interesting alternative could be the beamerposter package which provides the capabilities of the beamer class with similar options for customization.


Best regards
Thorsten
ImaConundrum
Posts: 1
Joined: Thu Aug 26, 2010 3:54 pm

Re: sciposter colors

Post by ImaConundrum »

I was able to change the colors in \maketitle like this:

\title{\color{Blue}This is the Title of my Poster}
\author{\color{Blue}Jane Doe, John Doe}
User avatar
Juanjo
Posts: 657
Joined: Sat Jan 27, 2007 12:46 am

sciposter colors

Post by Juanjo »

There is a bug in the sciposter class (at least in v. 1.18) in such a way that TextCol has no effect. To fix it, just copy \color{TextCol} after \begin{document}. Concerning the color of the lines that separate the columns, that is a feature of the multicol package. It suffices to redefine \columnseprulecolor. For example,

Code: Select all

\renewcommand\columnseprulecolor{\color{yellow}}
The CTAN lion is an artwork by Duane Bibby. Courtesy of www.ctan.org.
Post Reply