-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dir-locals.el
27 lines (27 loc) · 1.67 KB
/
.dir-locals.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
((nil . ((org-latex-classes .
(("book"
"\\documentclass[]{scrbook}"
("\\chapter{%s}" . "\\addchap{%s}")
("\\section{%s}" . "\\addsec{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))
(org-latex-caption-above . nil)
(org-latex-src-block-backend . minted)
(org-latex-minted-options . (("linenos" . "true")))
(org-latex-subtitle-format . "\\subtitle{%s}")
(org-latex-subtitle-separate . t)
(org-latex-prefer-user-labels . t)
(org-latex-pdf-process . ("latexmk -f -pdf -%latex -shell-escape -interaction=nonstopmode -output-directory=%o %f"))
(org-html-prefer-user-labels . t)
(flycheck-languagetool-language . "en-GB")
(fill-column . 200)))
(org-mode . ((eval . (progn (visual-line-mode)
(org-toggle-link-display)
(require 'ox)
(add-to-list
'org-export-smart-quotes-alist
'("en-gb" (primary-opening :utf-8 "“" :html "“" :latex "``" :texinfo "``")
(primary-closing :utf-8 "”" :html "”" :latex "''" :texinfo "''")
(secondary-opening :utf-8 "‘" :html "‘" :latex "`" :texinfo "`")
(secondary-closing :utf-8 "’" :html "’" :latex "'" :texinfo "'")
(apostrophe :utf-8 "’" :html "’"))))))))