Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Making LaTeX Beamer Black & White

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.

like image 937
Gabriel Avatar asked Mar 12 '09 15:03

Gabriel


People also ask

How do I change the background color in Beamer?

Here's a suggestion to add a bg option to the frame environment, such that background color can be invoked simply by adding the [bg] option to frame .

How do I add a blank slide in Beamer?

1. Create an empty slide in Beamer. Creating blank slides in beamer can be achieved by providing the option [plain] to the frame environment. Moreover, to remove the navigation bar, we should add the command \setbeamertemplate{navigation symbols}{} to the preamble.


2 Answers

You can also just add gray option to documentclass declaration:

\documentclass[gray]{beamer}
...
like image 99
dajam Avatar answered Oct 17 '22 17:10

dajam


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

\setbeamercolor{frametitle}{fg=black}
like image 28
Gabriel Avatar answered Oct 17 '22 15:10

Gabriel