emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: basic org questions


From: TEC
Subject: Re: basic org questions
Date: Wed, 16 Sep 2020 11:46:24 +0800
User-agent: mu4e 1.4.13; emacs 27.1

Emanuel Berg via General discussions about Org-mode. <emacs-orgmode@gnu.org> 
writes:

> user-error: Unknown LaTeX class ‘korma-article’

This is just because the class has to be defined in =org-latex-classes=
(see the doctring for info).
By default it contains:
 - beamer
 - article
 - report
 - book

>> #+latex_header:  \setlength{\parindent}{0pt}
>
> Yes, that's removed the indentation but didn't insert
> a blank line...

This is getting into LaTeX, not Org, but you need to do two things:
 1. Remove indent
 2. Set parskip to the height of a line

i.e.
#+begin_src latex
\setlength{\parindent}{0pt}
\setlength{\parskip}{\baselineskip}
#+end_src

You can add a number before =\baselineskip= to 'stretch' that length.
E.g. for half a line =0.5\baselineskip=.

Hope that helps,

Timothy.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]