I have a section in a manuscript that requires that all the paragraphs be italicized. Do I have to write add \textit e.g. at the beginning of each paragraph
Code: Select all
\textit{paragraph1}
\textit{pargraph2}
\textit{and so on...}
Thank you
Code: Select all
\textit{paragraph1}
\textit{pargraph2}
\textit{and so on...}
NEW: TikZ book now 40% off at Amazon.com for a short time.
I triedIn this case the \itshape command should do.
Code: Select all
\itshape{paragraph1
paragraph2}
and so on...
Code: Select all
\itshape
% Text passage to be italicized
\upshape
Code: Select all
{\itshape your italic text} other text
Code: Select all
\begingroup
\itshape
your italic text
\endgroup
other text
NEW: TikZ book now 40% off at Amazon.com for a short time.