Questions tagged [bold]

{bold} is specifically about making document elements bold (or removing this font attribute). For general questions about formatting document elements, use {formatting} instead.

is specifically about making document elements bold (or removing this font attribute). For general questions about formatting document elements, use instead. For blackboard bold letters or symbols in mathematics, use .

There are several different ways to get bold text in LaTeX; see this question for discussion on when to use the different bold commands.

Frequently Asked Questions

  1. How can I get bold math symbols?
  2. What's the "correct" way to bold text?
  3. How can I get bold small caps?
928 questions
21
votes
5 answers

Is it possible to have certain words in the document always in bold?

I am writing an AWK programming book and when I explain things, I refer to special AWK variables all the time, such as ORS. Is it possible to set LaTeX up in such a way that these words are always in bold in the text, so I don't have to write…
user5177
6
votes
1 answer

I am not able to write bold text. Please help!

I am a beginner in LaTeX and I have been using Textstudio as my main LaTeX editor for several weeks. My problem is that i am not able to write any bold characters. \textbf will not work in this case. I am sure there must be something in my code…
alex108
  • 161
6
votes
3 answers

why textbf doesn't work when writing between dollar signs between the curly brackets?

I'm trying to write the following but in bold: $M_s$ so that the "s" becomes next to "M" but low and i have the following…
user148199
6
votes
2 answers

Which package is needed for \boldsymbol{}?

I am using \boldsymbol{} and \textit{}, but they are not recognized. The document preamble is the…
Alfie González
  • 163
  • 1
  • 2
  • 4
6
votes
3 answers

How can I automatically boldify formulas that include text?

I have some simple formulas that I would like to have in bold and non-bold versions. Because retyping a formula is error-prone, I'd like to have a macro that takes the non-bold formula (which is wrapped in a macro) and emits a copy of the macro, but…
Reid
  • 1,468
  • 2
  • 14
  • 20
5
votes
1 answer

Cannot stop Latin character being emboldened after Greek character emboldened

I am using the following code. \documentclass[]{article} \usepackage{amssymb} \usepackage{amsmath} \begin{document} \begin{eqnarray} \label{eq:linearInterpolant} \boldsymbol{\beta}(\bf{s^*}) = \normalfont{c} \end{eqnarray} …
5
votes
3 answers

How to make font 'semibold'?

How do I change the boldness of my font to semibold ? Below is the initialization of the code that I copied online for my CV. I am very new to latex so I understand close to nothing as of now. I hope someone can give me a short and simple solution…
RuiQi
  • 419
4
votes
1 answer

\bf in the first argument of \cdot; causes the whole expression to become bold

I want just the first argument in bold, but when i try to select just the first argument using the \bf command it modified the whole expression. This is what I had \[ a = \frac12 \cdot \frac13 + \frac14 \\ \] I just wanted \frac12 in bold so I…
JuanMuñoz
  • 1,454
4
votes
1 answer

Bold emphasize parts of text

I have a pdf document made in latex. I have to make a new document following the same template but I only have the pdf, not the source .tex file. Some important words/sentences are "boldly emphasized" but I don't know which command I have to use to…
3
votes
2 answers

Looking for semibold version of erewhon

I am looking for defining a semibold Erewhon font for text mode. If there is none I'd be willing to fake it in the same manner as https://tex.stackexchange.com/a/290036/194729 but I don't how I can adapt that snippet.
3
votes
1 answer

Bold subscripts

I would like my subscript y_{ij} in bold. I used: \usepackage[fleqn]{amsmath} \begin{document} \bf{y}_{ij} \end{document} or \mathbf{y}_{ij} but really nothing happens. Only y is in bold. Can anyone help me please? Best
2
votes
1 answer

Is using the \bf command for bolding text OK?

I see many questions where the macro \bf is used to generate a bold output. Is this a good use of \bf?
Peter Wilson
  • 28,066
2
votes
0 answers

Latex Bold a specific word without type every times \textbf{...}

I wish to know is possible to set in bold a specific word without type every times \textbf{bold}. For example \documentclass{article} \begin{document} \textbf{dog}, cat,\textbf{dog}, cat, \textbf{dog}, cat, \textbf{dog}, cat \end{document} Is it…
2
votes
2 answers

Fake Semibold (bold without increasing the length of the text)

The font I am using doesn't have a semibold weights. I would like to fake a bold font that has a similar width to the regular font. I tried using this approach from…
Mil
  • 1,197
2
votes
1 answer

How to make a symbol more boldface within a boldface section heading

I have the following section heading: \section{The system M of Minimal Logic} which of course is all rendered in boldface in the pdf. How can I make the "M" even more boldface within this heading?
1
2 3