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 669 times
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
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.
