I want to demonstrate in a presentation different fonts. In the beamer talk the fonts Courier and Bera Sans are used, but for the demonstration I also want to use Latin Modern Roman as well.
This is what I do to print the text:
\usefont{T1}{lmr}{m}{n}
\small Latin Modern Roman \\
\tiny\sampletext
which gives me a comparable HUGE text size. Doing the same for courier font looks correct:
\usefont{T1}{bch}{m}{n}
\small Charter \\
\tiny\sampletext
I assume that the wrong font is scaled to tiny, but how do I select the correct font?

