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.
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
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}{}
\begin{itemize}
\item<1-> Allow very complex experiments with maximum clarity and minimum effort
\item<2-> Allow very simple experiments with minimum overhead
\item<3-> A model is a script (there is no other reasonable way)
\item<4-> Object oriented neural model design
\item<5-> Integrated modeling, experimentation, analysis
\item<6-> Container for standard, reusable component libraries.
\end{itemize}
\end{block}
\end{frame}
\section{Theory}
\begin{frame}
On their way to the anode they will acquire a kinetic energy
\[
E_{k}=\frac{1}{2}mv^{2}=eV
\]
\end{frame}
\end{document}
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.
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