Here's the minimal working example, including a sample graphic. When I include the graphic in this .tex doc and attempt to view it in Reader 8, the shade of green used in the table becomes a brighter green and the colors in the graphic shift. I'll have to attach the .png file so you can include it. Oh...and the font I'm currently using is Monospace.
Code: Select all
\documentclass[openany,10pt]{book}
\usepackage{verbatim,textcomp}
\usepackage[pdftex]{color,graphicx}
\usepackage[table]{xcolor}
\usepackage{calc}
\usepackage{fixltx2e}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{array,booktabs,color}
\usepackage{multirow}
\usepackage{float}
%Starting header and footer information
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{\tiny\bfseries Test\textsuperscript{\textregistered}}
\fancyfoot{}
\fancyfoot[LE,RO]{\tiny\thepage}
\fancyfoot[LO,RE]{\tiny\bfseries Technical Test Guide}
\fancyfoot[C]{\tiny\copyright 2008 Test Inc.}
\renewcommand{\headrulewidth}{0cm}
\renewcommand{\footrulewidth}{0.01cm}
%finishing header and footer information
\usepackage{wrapfig}
%improves font quality
\usepackage[T1]{fontenc}
\usepackage{makeidx}
%Renders cross-reference links black and URL links blue
\usepackage[pdftex,colorlinks=true,linkcolor=black,urlcolor=blue]{hyperref}
\usepackage{caption}
%Creates customized color tags
\definecolor{olivegreen}{rgb}{0.419608 0.556863 0.137255}
\definecolor{webred}{rgb}{0.75,0,0}
\usepackage{titlesec}
%Modifies section heads
\titleformat{\chapter}
{\color{olivegreen}\normalfont\huge\bfseries}{}{}{\hspace*{-10pt}}
\titleformat{\section}
{\color{olivegreen}\normalfont\huge\bfseries}{}{}{\hspace*{-10pt}}
%Modifies subsection heads
\titleformat{\subsection}
{\color{olivegreen}\normalfont\Large\bfseries}{}{}{\hspace*{-10pt}}
%Modifies subsubsection heads
\titleformat{\subsubsection}
{\normalfont\normalsize\bfseries}{}{}{\hspace*{10pt}}
%Makes second level items in an itemized list bullets instead of dashes
\renewcommand{\labelitemii}{$\circ$}
%Suppresses numbering of sections
\setcounter{secnumdepth}{-2}
\makeindex
\fancypagestyle{plain}{%
\fancyhf{} % clear all header and footer fields
\fancyhead{}
\fancyhead[RO,LE]{\tiny\bfseries Test\textsuperscript{\textregistered}}
\fancyfoot{}
\fancyfoot[LE,RO]{\tiny\bfseries\thepage}
\fancyfoot[LO,RE]{\tiny Technical Test Guide}
\fancyfoot[C]{\tiny\copyright 2008 Test Inc.}
\renewcommand{\headrulewidth}{0cm}
\renewcommand{\footrulewidth}{0.01cm}}
\begin{document}
\newpage
\subsection{Test Table}
\begingroup
\centering
\setlength\extrarowheight{4pt}
\begin{tabular}{ |>{\small}p{2cm} |>{\small}p{2cm} |>{\small}p{1cm} |>{\small}p{7cm} | } \hline
\rowcolor{olivegreen}\textcolor{white}{\bfseries Test} & \textcolor{white}{\bfseries Test} & \textcolor{white}{\bfseries Test} & \textcolor{white}{\bfseries Test} \\ \hline
\textbf{TEST} & T & 00 & Test \\ \hline
\rowcolor{olivegreen!25} \textbf{TEST} & T & 00 & T = Test \\
\rowcolor{olivegreen!25} & & & T = Test \\
\rowcolor{olivegreen!25} & & & T = Test \\ \hline
\textbf{TEST} & T & 00 & Test \\ \hline
\rowcolor{olivegreen!25} \textbf{TEST} & T & 00 & Test \\ \hline
\textbf{TEST} & T & 00 & Test \\ \hline
\rowcolor{olivegreen!25} \textbf{TEST} & & 00 & Test \\ \hline
\textbf{TEST} & & 00 & Test \\
\hline
\end{tabular}
\endgroup
\begin{center}
\begingroup
\includegraphics[scale=0.55]{test.png}
\endgroup
\end{center}
\end{document}