alex-ball / beamerswitch

Convenient mode selection in Beamer documents
22 stars 0 forks source link

Using beamerswitch seems to impose 11pt font size #1

Closed nplatis closed 8 years ago

nplatis commented 8 years ago

I have a presentation with \documentclass[10pt]{beamer}. Simply switching to beamerswitch seems to impose [11pt] (and I also checked with 12pt).

alex-ball commented 8 years ago

All that is happening here is that beamer is not seeing your font size selection, and therefore it uses the default. beamerswitch does not automatically pass on class options to beamer, or indeed article, to avoid potential confusion when switching between the two. I am happy to be swayed by popular opinion if people think it should.

As explained under ‘Tips for further customization’, the way to convert a document from beamer to beamerswitch is to convert your original \documentclass command into a \PassOptionsToClass one (note the change from square brackets to braces):

\PassOptionsToClass{10pt}{beamer}
\documentclass{beamerswitch}
nplatis commented 8 years ago

...and a relevant warning was issued which I had not noticed.

Maybe you should make it clearer in the documentation that extra beamer options are not passed on.

alex-ball commented 8 years ago

Agreed. I'll reopen and tag this as a documentation issue.

Thank you for your feedback, and for using the class.