Computer Science, asked by Nabeela9980, 1 year ago

How to type bold letters in latex command and basic use package command for bold letters?

Answers

Answered by rk5717691
0

LATEX bold

On the subject of LATEX bold immediately occur to me that people who use the section or subsection command to , for example to write Task 1:. As cursive writing also bold letters are available in LATEX. The counterpart of \textit{\ldots} is \textbf{\ldots} and \itshape is \bfseries.

input:

In this sentence the final word is \textbf{bold}.

output:

In this sentence the final word is bold.

input:

\textbf{This sentence is bold.}

output:

This sentence is bold.

input:

\textbf{This sentence should be too long as it could be complete within a

standard line, so that it could show what happens if a bold

sentence comes to a new line.}

output:

This sentence should be too long as it could be complete within a standard line, so that it could show what happens if a bold sentence comes to a new line.

input:

\begin{bfseries}

This set is also very bold but this time as an environment.

\end{bfseries}

output:

This set is also very bold but this time as an environment.

\bfseries

From here, the whole text is bold, until the end of the document,

or there is a \textit{ normalfont } as a switch \normalfont

from there the text is back to normal. \\

Similar questions