Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I would like to specify a background color in the alert environment. I can, for example, use

\setbeamercolor{alerted text}{fg=blue} 

to change the colour of the alterted text to blue, but this

\setbeamercolor{alerted text}{bg=blue} 

does not work. Is there a way to get around this?

I find that the font colours that the alert environment makes are too subtle and I'd like to add a coloured highlight box around my text in addition to changing the fg colour.

share|improve this question

1 Answer

Since (La)TeX doesn't have a “background color” for text, you would have to put your text inside a box which you can then color. Consider the following example using \colorbox.

\documentclass{beamer}

\setbeamercolor{alerted text}{fg=white,bg=red}
\newcommand{\boxalert}[1]{{%
  \usebeamercolor{alerted text}\colorbox{bg}{\alert{#1}}%
}}

\begin{document}
\begin{frame}
Hello \boxalert{World}!
\end{frame}
\end{document}

Which renders

Hello World

Edit: I'm no expert in beamer internals, so the following is nothing more than a hack. However, if you would like \boxalert to work with overlays, something like the following “seems” to work:

\newenvironment{boxalertenv}{\begin{altenv}%
      {\usebeamertemplate{alerted text begin}\usebeamercolor[fg]{alerted text}\usebeamerfont{alerted text}\colorbox{bg}}
      {\usebeamertemplate{alerted text end}}{\color{.}}{}}{\end{altenv}}

\newcommand<>{\boxalert}[1]{{%
  \begin{boxalertenv}#2{#1}\end{boxalertenv}%
}}

...

Hello \boxalert<2>{World}!
share|improve this answer
This breaks if you use overlays with alert, like so: \alert<+->{Text} – Seamus Feb 17 '11 at 17:55
Thanks for pointing that out! I changed the answer defining a new command instead of trying to redefine \alert, I've also provided some sort of hack to get the new command working with overlays. – Juan A. Navarro Feb 18 '11 at 10:46
1  
Navarro's solution changes the text position. There must be a way to tell latex to draw a white background when non-alerted... – dividebyzero Aug 2 '12 at 21:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.