LaTeXTutorials 3 : text and document formatting
Notice
-
斜体:
\textit{}
-
加粗:
\textbf{}
-
小型大写:
\textsc{}
-
打字机字体(常用来显示链接):
\texttt{URL}
-
加大字号:
\begin{large}...\end{large}
\begin{Large}...\end{Large}
\begin{huge}...\end{huge}
\begin{Huge}...\end{Huge}
-
缩小字号:
\begin{small}...\end{small}
\begin{tiny}...\end{tiny}
-
居中对齐:
\begin{center}...\end{center}
-
左对齐:
\begin{flushleft}...\end{flushleft}
-
右对齐:
\begin{flushright}...\end{flushright}
Professional term
- quadratic::二次的
- slope intercept form :截距式
- point slope form:点斜式
- vertex:顶点
- factored form:分式形式
Source code
\documentclass[12pt]{article}
\title{\LaTeX{}\quad text \& document formatting}
\author{Yunlong Wang}
\date{\today}
\begin{document}
\maketitle
\newpage
\tableofcontents
\newpage
This will produce \textit{italicized} text.
This will produce \textbf{bold-faced} text.
This will produce \textsc{small caps} text.
This will produce \texttt{typewriter} font.
Please visit Mrs.Krummel's website at \texttt{http://mrskrummel.com}.
Please excuse my dear aunt Sally.
Please excuse my \begin{large} dear aunt Sally \end{large}.
Please excuse my \begin{Large} dear aunt Sally \end{Large}.
Please excuse my \begin{huge} dear aunt Sally \end{huge}.
Please excuse my \begin{Huge} dear aunt Sally \end{Huge}.
Please excuse my \begin{small} dear aunt Sally \end{small}.
Please excuse my \begin{tiny} dear aunt Sally \end{tiny}.
\begin{center}
This is centered.
\end{center}
\begin{flushleft}
This is left-justified.
\end{flushleft}
\begin{flushright}
This is right-justified.
\end{flushright}
\section{Linear Functions}
\subsection{Slope-Intercept Form}
\subsection{Standard Form}
\subsection{Point-Slope Form}
\section{Quadratic Functions}
\subsection{Vertex Form}
\subsection{Standard Form}
\subsection{Factored Form}
\end{document}