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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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