Answers for "how to bold latex text"

C++
12

bold text latex

textbf{accident}
Posted by: Guest on October-18-2020
0

bold italic text in latex

textbf{textit{text}}
Posted by: Guest on March-31-2021
1

bold italic text in latex

documentclass{article}

makeatletter
DeclareRobustCommandbfseriesitshape{%
  not@math@alphabetitshapebfseriesrelax
  fontseriesbfdefault
  fontshapeitdefault
  selectfont
}
makeatother

DeclareTextFontCommand{textbfit}{bfseriesitshape}

begin{document}

scshape % now the current font shape is small caps

textit{textbf{f}}f

textbf{textit{f}}f %% causes LaTeX Font Warning

{fontseriesbfdefaulttextit{f}f}

textbfit{f}f

end{document}
Posted by: Guest on March-31-2021

Browse Popular Code Answers by Language