Page Layout ⇒ Paragraph indentation....
Paragraph indentation....
The attached file shows what I want and that what I get...
Could somebody help me?
- Attachments
-
- Documento1.pdf
- (18.09 KiB) Downloaded 651 times
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
Paragraph indentation....
you could use the \parshape TeX primitive, as the following example suggests:
Code: Select all
\documentclass{book}\usepackage{calc}\usepackage{lipsum}%just to automatically generate some text\newlength\mylen\setlength\mylen{\linewidth}\addtolength\mylen{-3.8em}%this value is the additive inverse of the second one%used in \parshape below\begin{document}\section{Dummy section}\parshape 1 3.8em \mylen\noindent text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text\end{document}
Re: Paragraph indentation....
But, what if I have a long document, I would like not to write this line each praragraph, is there then any other way to indicate LaTeX to format each paragraph of the document that way??

Paragraph indentation....
Code: Select all
\everypar={\parshape 1 3.8em \mylen}
It should be a way to define this for the whole document...
Re: Paragraph indentation....
I think maybe you could try looking at it differently. Instead of indenting the paragraphs to the right of the title, try 'outdenting' the title to the left of the paragraphs by using a negative spacing.
James
Re: Paragraph indentation....
I haven´t read the forum till today, but casually I had yesterday the this same idea. I guess this would be pretty easier and I will try this.
