General ⇒ Simple question
-
- Posts: 11
- Joined: Wed Nov 21, 2007 1:43 am
Simple question
I have a simple question. What is the difference between \emph and textit{}? I cannot notice the difference.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Simple question
Code: Select all
\documentclass{article}
\begin{document}
\noindent
\emph{slanted text}\\
\textit{slanted text}\\
{\itshape slanted text}\\
{\itshape \emph{slanted} text?}\\
\textit{\emph{slanted} text?}\\
{\slshape Now with this shape}\\
{\slshape Now with \textit{this} shape}\\
{\slshape Now with \emph{this} shape}
\end{document}
-
- Posts: 11
- Joined: Wed Nov 21, 2007 1:43 am