Add LaTeX export settings for work
This commit is contained in:
parent
adf3fb27fa
commit
64d6179e0d
3 changed files with 90 additions and 13 deletions
40
config.org
40
config.org
|
@ -505,20 +505,29 @@ In =emacs27= and above, I can set certain headlines not to be exported. I haven
|
|||
Add the =memoir= class for LaTeX export.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(unless (version< emacs-version "27")
|
||||
(add-to-list 'org-latex-classes
|
||||
'("memoir"
|
||||
"\\documentclass[9pt,b6paper]{memoir}
|
||||
[NO-DEFAULT-PACKAGES]
|
||||
\\usepackage[namechapters]{optional}
|
||||
\\input{$HOME/.emacs.d/fic-export-files/header.tex} %$"
|
||||
("\\chapter{%s}" . "\\chapter*{%s}")
|
||||
("\\section{%s}" . "\\section*{%s}")
|
||||
("\\subsection{%s}" . "\\subsection*{%s}")
|
||||
("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))
|
||||
(if (version< emacs-version "27")
|
||||
(with-eval-after-load 'ox-latex
|
||||
(add-to-list 'org-latex-classes
|
||||
'("article-std"
|
||||
"\\documentclass{article}
|
||||
[NO-DEFAULT-PACKAGES]
|
||||
\\input{$HOME/.emacs.d/header.tex} %$"
|
||||
("\\section{%s}" . "\\section*{%s}")
|
||||
("\\subsection{%s}" . "\\subsection*{%s}")
|
||||
("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))
|
||||
(add-to-list 'org-latex-classes
|
||||
'("memoir"
|
||||
"\\documentclass[9pt,b6paper]{memoir}
|
||||
[NO-DEFAULT-PACKAGES]
|
||||
\\usepackage[namechapters]{optional}
|
||||
\\input{$HOME/.emacs.d/fic-export-files/header.tex} %$"
|
||||
("\\chapter{%s}" . "\\chapter*{%s}")
|
||||
("\\section{%s}" . "\\section*{%s}")
|
||||
("\\subsection{%s}" . "\\subsection*{%s}")
|
||||
("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))
|
||||
#+END_SRC
|
||||
|
||||
Settings for export, mostly for DW post previews but also fic??
|
||||
Settings for export, mostly for DW post previews but also fic?? And work I guess, I do that sometimes.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(setq org-export-headline-levels 6)
|
||||
|
@ -528,7 +537,12 @@ Settings for export, mostly for DW post previews but also fic??
|
|||
(setq org-export-with-creator nil)
|
||||
(setq org-export-with-toc nil)
|
||||
(setq org-export-time-stamp-file nil)
|
||||
(setq org-latex-default-class "memoir")
|
||||
(if (atwork)
|
||||
(progn
|
||||
(setq org-export-with-author nil)
|
||||
(setq org-latex-default-class "article-std"))
|
||||
(unless (version< emacs-version "27")
|
||||
(setq org-latex-default-class "memoir")))
|
||||
(setq org-latex-compiler "xelatex")
|
||||
(setq org-html-validation-link nil)
|
||||
(setq org-html-doctype "html5")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue