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...}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
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
\upshapeCode: Select all
{\itshape your italic text} other textCode: Select all
\begingroup
\itshape
your italic text
\endgroup
other textLearn 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