This tutorial explains how to add basic text formatting to a Latex document. It is a short succinct video explaining to the point with examples. The code and the video both are available here.
After watching this video you will be able to do the following tasks in Latex:
Here is the video for this tutorial
The code used in this tutorial can be found below:
After watching this video you will be able to do the following tasks in Latex:
- How to make text Bold
- How to make text Italicized
- How to use subscript in text
- How to use superscript in text
- A little of math mode using "$" symbol
Here is the video for this tutorial
\documentclass[8pt,letterpaper]{article}
\begin{document}
\title{A sample \LaTeX{} article by 5 minutes of Latex}
\maketitle
\section{Introduction}
\huge This \normalsize is a \textbf{\textit{sample} introduction} section.\\
This is a \textit{second line} in the introduction.\\
This is a {\it third} line. $X_i$=$Y_{i^2}$
\section{Motivation}
This is an example of how to use a new section
\end{document}
How do I apply (different) fonts? And how do you determin the size of your title and section headings? Say I want a title of 20pt big, my section headings about 14pt big and any normal text 10pt big?
ReplyDeleteThank you!