Making LaTeX Beamer Black & White
Asked Answered
D

4

6

Is there a way to make LaTeX Beamer output black & white? I need it for paper printing purposes. I'm using the default color theme, and for contrast reasons I need the title and everything to be black. If there is a black&white color scheme, I could use it, but otherwise I don't want other color schemes, with colored backgrounds. Maybe there are some commands which I can redefine?

Thanks.

Dunseath answered 12/3, 2009 at 15:50 Comment(0)
L
5

In fact, you can change the color of all elements of your beamer theme using \setbeamercolor. You can use fg for changing the foreground and bg for the background. The problem of this is that you cannot use the traditional rbg scheme and you have to make very strange combinations of colors with a not-very-friendly way of giving the shares of each color you want to combine

Lui answered 17/3, 2009 at 18:59 Comment(0)
D
10

You can also just add gray option to documentclass declaration:

\documentclass[gray]{beamer}
...
Departmentalize answered 28/3, 2011 at 11:26 Comment(0)
D
6

OK, found it after some more search. The answer is:

\setbeamercolor{frametitle}{fg=black}
Dunseath answered 12/3, 2009 at 16:25 Comment(0)
L
5

In fact, you can change the color of all elements of your beamer theme using \setbeamercolor. You can use fg for changing the foreground and bg for the background. The problem of this is that you cannot use the traditional rbg scheme and you have to make very strange combinations of colors with a not-very-friendly way of giving the shares of each color you want to combine

Lui answered 17/3, 2009 at 18:59 Comment(0)
C
1

Another possibility is to use \selectcolormodel{gray}

\documentclass{beamer}
\usetheme{CambridgeUS}

\selectcolormodel{gray}

\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}
Cerf answered 27/2, 2019 at 15:50 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.