Document Classes ⇒ beamer | Different Font Size for a specific Line
beamer | Different Font Size for a specific Line
I am using the beamer class and quite happy about it. But now there is a little problem: can I change the font size of a specific sentence which is different from the font size of the rest of text? Thanks very much!
Shva
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
beamer | Different Font Size for a specific Line
welcome to the board!
There are standard LaTeX commands for different font sizes. In increasing order: \tiny, \scriptsize, \footnotesize, \small, \normalsize (default), \large, \Large, \LARGE, \huge and \Huge.
They switch the size, but their effect can be limited by grouping with braces. So you could write, for example:
Code: Select all
normal text
{\Large Large sentence }
normal text
For arbitrary sizes, have a look at Increase font size, standard sizes are explained here: LaTeX font sizes.
Note, inter line spacing depends on the font size, so I usually don't mix different font sizes in the same paragraph.
Stefan
beamer | Different Font Size for a specific Line
Shva
Stefan_K wrote:Hi Shva,
welcome to the board!
There are standard LaTeX commands for different font sizes. In increasing order: \tiny, \scriptsize, \footnotesize, \small, \normalsize (default), \large, \Large, \LARGE, \huge and \Huge.
They switch the size, but their effect can be limited by grouping with braces. So you could write, for example:
StefanCode: Select all
normal text {\Large Large sentence } normal text
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
beamer | Different Font Size for a specific Line
Code: Select all
{\small sentence}
Code: Select all
\small sentence \normalsize
Code: Select all
\fontsize{9}{11}\selectfont
Stefan