Re: [O] How to make the 4 level heading '****' to 'subsubsection' in latex export

2017-05-10 Thread XP Chen
Thanks, That's the key, Also set "#+OPTIONS: H:4" is ok 在2017年05月11 00时15分, "Nicolas Goaziou"写道: Hello, "XP Chen" writes: > I add follow lines in .emacs: > > (add-to-list 'org-latex-classes > '("thesis1" >

Re: [O] How to make the 4 level heading '****' to 'subsubsection' in latex export

2017-05-10 Thread Nicolas Goaziou
Hello, "XP Chen" writes: > I add follow lines in .emacs: > > (add-to-list 'org-latex-classes > '("thesis1" >"\\documentclass{thesis1}" > ("\\chapter{%s}" . "\\chapter*{%s}") > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" .

[O] How to make the 4 level heading '****' to 'subsubsection' in latex export

2017-05-10 Thread XP Chen
I add follow lines in .emacs: (add-to-list 'org-latex-classes '("thesis1" "\\documentclass{thesis1}" ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")