phd-thesis/build.el
Charlotte Van Petegem eaebe31b27
Build changes
2024-02-01 16:53:49 +01:00

36 lines
1.3 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.

;;; build.el --- Build book.pdf non-interactively -*- lexical-binding: t -*-
;;; Commentary:
;;; This is used to build my PhD thesis from scripts (e.g. to create a diffed version).
;;; Code:
(package-initialize)
(require 'org)
(require 'oc-csl)
(require 'ox)
(setq 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-prefer-user-labels t
org-latex-subtitle-format "\\subtitle{%s}"
org-latex-subtitle-separate t)
(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 "’")))
(find-file "book.org")
(org-latex-export-to-latex)
(provide 'build)
;;; build.el ends here