From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Klein Subject: Re: exporting to latex and docx not honouring carriage returns to tabbing Date: Tue, 9 Oct 2018 08:20:28 +0200 Message-ID: <20181009082023.057dcc0b@lt70.mpip-mainz.mpg.de> References: <875zycyd5z.fsf@skimble.plus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60994) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g9lNp-0006rL-Ew for emacs-orgmode@gnu.org; Tue, 09 Oct 2018 02:20:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g9lNm-0001DH-Bu for emacs-orgmode@gnu.org; Tue, 09 Oct 2018 02:20:41 -0400 Received: from mout.kundenserver.de ([212.227.126.134]:37427) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1g9lNl-0001CU-KT for emacs-orgmode@gnu.org; Tue, 09 Oct 2018 02:20:38 -0400 In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Eric S Fraga Cc: org-mode-email , Sharon Kimble On Mon, 08 Oct 2018 16:54:39 +0100 Eric S Fraga wrote: > On Monday, 8 Oct 2018 at 10:56, Sharon Kimble wrote: > > My finished output in the pdf will have every line indented/tabbed > > to 4 spaces and have a carriage-return at the end of each > > paragraph, with no spacings in between paragraphs. > > > > I can get it how I want in org-mode, but when its exported to latex > > and converted into a pdf file, the whole section comes out in one > > block of text! =20 >=20 > Both LaTeX and org define new paragraphs by a blank line. Spaces at > the start of a line only have meaning, in org, if the lines are part > of a list (and never mean anything in LaTeX). >=20 > I am not sure exactly what you want to achieve so it is difficult to > suggest anything. Try separating your paragraphs with empty lines to > see how much closer this gets you to what you want. >=20 What Eric says. Then try to add to the org-file a line #+LaTeX_Header: \parskip=3D0pt so the spacing between paragraphs is 0. Then add #+LaTeX_Header: \parindent=3D0pt so the first line of a paragraph isn't indented. If you want to get /all/ the text indented by =E2=80=9C4 spaces=E2=80=9D, p= ut a line #+LaTeX: \setlength{\leftskip}{2em} at the top of your document. If you want only parts indented, put the line before the beginning of the part to be indented and put this line after it: #+LaTeX: \setlength{\leftskip}{0em} Does this help? Best regards Robert