Math & ScienceGreek letter won't come out bold?

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
bazman
Posts: 78
Joined: Mon Jan 26, 2009 3:24 am

Greek letter won't come out bold?

Post by bazman »

Hi there,

Got kind of a weird problem:

when I type

Code: Select all

\frac{df_t^i}{f_t^i}= \mu^i(\{\textbf{f}_{t}\},\{ {\sigma}_t\}) 
I have no problem and the text displays as you would expect:

however when I try:

Code: Select all

\frac{df_t^i}{f_t^i}= \mu^i(\{\textbf{f}_{t}\},\{ \textbf{\sigma}_t\}) 
It outouts the sigma as a series of sigmas gradually getting smaller?

If I want to make a greek letter bold I assume I should be using some other function?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Greek letter won't come out bold?

Post by frabjous »

You might want to try the bm (bold math) package.

And if you don't, you should use \mathbf to make letters bold in math mode, not \textbf.
bazman
Posts: 78
Joined: Mon Jan 26, 2009 3:24 am

Re: Greek letter won't come out bold?

Post by bazman »

that is prefect thank you
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Greek letter won't come out bold?

Post by localghost »

With the preferably to use amsmath package you can get also bols math symbols (and even whole math expressions).

Code: Select all

\[
  \frac{df_t^i}{f_t^i}= \mu^i(\{\textbf{f}_{t}\},\{\boldsymbol{\sigma}_t\})
\]
Further explanations can be taken from the manual.


Best regards
Thorsten
Post Reply