Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 407 Bytes

latex_task_1.md

File metadata and controls

23 lines (14 loc) · 407 Bytes

General Information about LaTeX Text Formatting

  • Bold text: \textbf{}
  • Italic text: \textit{}
  • Underlined text: \underline{}
  • Emphasized text: \emph{}

LaTeX source code:

\documentclass{article}

\begin{document}

\textbf{This is bold text.}

\textit{This is italic text.}

\underline{This is underlined text.}

\emph{This is emphasized text.}

\end{document}