Latex Execution on this Site: No Bold Fonts?

  • Context: LaTeX 
  • Thread starter Thread starter ehrenfest
  • Start date Start date
  • Tags Tags
    Latex
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
6 replies · 199K views
ehrenfest
Messages
2,001
Reaction score
1
[tex]\mathbf{\mu}[/tex]

What is used to execute latex on this website? When I type that into TeXnic center and compile it without MikTex, it is not bold on my computer.
 
Physics news on Phys.org
For some reason, latex doesn't really like making greek letters bold. A workaround I found (which is a little annoying, but at least it works) is to use something like \mbox{\boldmath${\pi}$} if in a math environment.

I don't know what is used on the website.
 
Use \mathbf in math mode.

\mu versus \mathbf\mu [tex]\mu\;\mathbf\mu[/tex]One drawback of mathbf: Its not in italics.

a versus \mathbf a [tex]a\;\mathbf a[/tex]If you have the AMS math package (\usepackage{amssymb,amsmath}), \boldsymbol puts things in bold italics.

\mu versus \mathbf\mu versus \boldsymbol\mu [tex]\mu\;\mathbf\mu\;\boldsymbol\mu[/tex]
a versus \mathbf a versus \boldsymbol a [tex]a\;\mathbf a\;\boldsymbol a[/tex]
 
Last edited:
D H said:
Use \mathbf in math mode.

\mu versus \mathbf\mu [tex]\mu\;\mathbf\mu[/tex]
Whilst that seems to work on the forum, it doesn't work for me (or, it seems, for the OP) hence why I had to find a workaround. The method you list below works fine!

If you have the AMS math package (\usepackage{amssymb,amsmath}), \boldsymbol puts things in bold italics.

\mu versus \mathbf\mu versus \boldsymbol\mu [tex]\mu\;\mathbf\mu\;\boldsymbol\mu[/tex]
a versus \mathbf a versus \boldsymbol a [tex]a\;\boldsymbol a\;\boldsymbol a[/tex]
 
you have to use the package{bm}. Then inside math environment type Greek letters as {\bm \alpha}, {\bm \beta}, etc...

usepackege{bm}

then,

$ {\bm beta} = {\bm \ alpha} {\bf \gamma} $
 
thanks...DH post was very useful!