phd-thesis/.dir-locals.el
Charlotte Van Petegem 40fa81e6a2
Write more
2024-01-03 10:04:49 +01:00

39 lines
2.5 KiB
EmacsLisp
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

((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-src-block-backend . listings)
(org-latex-listings-options . (("backgroundcolor" "\\color{white}")
("commentstyle" "\\color{green}")
("keywordstyle" "\\color{magenta}")
("numberstyle" "\\color{gray}")
("stringstyle" "\\color{purple}")
("basicstyle" "\\ttfamily")
("breakatwhitespace" "false")
("breaklines" "true")
("captionpos" "b")
("keepspaces" "true")
("numbers" "left")
("numbersep" "5pt")
("showspaces" "false")
("showstringspaces" "false")
("showtabs" "false")
("tabsize" "2")))
(org-latex-prefer-user-labels . t)
(org-html-prefer-user-labels . t)
(org-latex-toc-command . "\\frontmatter\n\\addchap{Table of Contents}\n\\label{chap:toc}\n\\listoftoc*{toc}\n\n")
(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 "’"))))))))