Latex Tips: Bold Letters and Larger Fonts

  • Context: LaTeX 
  • Thread starter Thread starter tgt
  • Start date Start date
  • Tags Tags
    Latex Tips
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 26K views
tgt
Messages
519
Reaction score
2
How to do bold letters and larger font with certain words in Latex?
 
Physics news on Phys.org
\textbf (<-- use for a good reason)
\mathbf
\scriptsize \tiny \large \Large \huge \Huge \HUGE (<-- use for a very good reason -- the farther to the right you go, the better the reason should be :smile:)
 
CompuChip said:
\textbf (<-- use for a good reason)
\mathbf
\scriptsize \tiny \large \Large \huge \Huge \HUGE (<-- use for a very good reason -- the farther to the right you go, the better the reason should be :smile:)
When I do \Large for example, it makes everything large. But I just want a line to be large.
 
These size commands act within the group. To make only a part of the text a different size, just put it in its own group:
this is an example of {\Large a piece of large text while} this is small.