As the attachment shows, I want to change the color of the text located on the left upper corner from red to green.
My use color theme is
Code: Select all
\usecolortheme{crane}
Code: Select all
\setbeamercolor{alerted text}{fg=green}
Code: Select all
\usecolortheme{crane}
Code: Select all
\setbeamercolor{alerted text}{fg=green}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\setbeamercolor{palette primary}{fg=green}\setbeamercolor{palette secondary}{fg=green}\setbeamercolor{palette tertiary}{fg=green}\setbeamercolor{palette quaternary}{fg=green}
Code: Select all
\documentclass[11pt]{beamer}\usepackage[latin9]{inputenc}\usepackage[english]{babel}\usepackage[T1]{fontenc}\usepackage{lmodern}\usetheme{Dresden}\usecolortheme{crane}\setbeamercolor{background canvas}{bg=}\setbeamercolor{alerted text}{fg=green}\setbeamercovered{transparent}\AtBeginSubsection[]{\frame<beamer>{\frametitle{Outline}\tableofcontents[currentsection,currentsubsection]}}\title{Demon Hunter}\author{Adam \and Eve}\institute{Department of Hell\\University of Heaven}\date{February 2, 2012}\begin{document}\begin{frame}\titlepage\end{frame}\begin{frame}{Outline}\tableofcontents\end{frame}\section{Introduction}\subsection{History}\begin{frame}{History}\begin{block}{}
Code: Select all
\usepackage{babel}\usepackage[T1]{fontenc}\usepackage{float}\usepackage{graphics}\usepackage{color}\usepackage[absolute,overlay]{textpos}\usepackage{calligra}\usepackage{listings}\usepackage{ae,aecompl}
Code: Select all
\usepackage[latin9]{inputenc}\usepackage[english]{babel}\usepackage[T1]{fontenc}\usepackage{lmodern}
However the following way works:\usepackage
[T1]{fontenc}
The package babel has already been loaded with options:
[]
There has now been an attempt to load it with options
[english]
Adding the global options:
,english
to your \documentclass declaration may fix this.
Try typing <return> to proceed.
Code: Select all
\usepackage[latin9]{inputenc}\usepackage[T1]{fontenc}\usepackage{lmodern}
NEW: TikZ book now 40% off at Amazon.com for a short time.