On Friday, 9 Mar 2018 at 17:30, Samuel Wales wrote: > On 3/9/18, Eric S Fraga <[email protected]> wrote: >> Type C-h v org-latex-classes RET for the full description. The >> header-string can include those particular indent and skip settings >> along with other bits. > > i consulted the docstring and the manual. the description was greek > to me and there was no reference to qa term you used afaict.
Apologies for this. Try the following (after loading org):
#+begin_src emacs-lisp
(add-to-list 'org-latex-classes
'("article" "\\documentclass{scrartcl}
\[DEFAULT-PACKAGES]
\[PACKAGES]
\[EXTRA]
\\setlength{\\parindent}{0pt}
\\setlength{\\parskip}{6pt}
"
("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}")
("\\paragraph{%s}" . "\\paragraph*{%s}")
("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
#+end_src
This should then work for default LaTeX export.
--
Eric S Fraga via Emacs 27.0.50, Org release_9.1.6-191-g90607d
signature.asc
Description: PGP signature
