97 lines
3.8 KiB
Org Mode
97 lines
3.8 KiB
Org Mode
|
#+TITLE: Nano Active Stabilization System - Conclusion
|
||
|
:DRAWER:
|
||
|
#+LANGUAGE: en
|
||
|
#+EMAIL: dehaeze.thomas@gmail.com
|
||
|
#+AUTHOR: Dehaeze Thomas
|
||
|
|
||
|
#+BIND: org-latex-image-default-option "scale=1"
|
||
|
#+BIND: org-latex-image-default-width ""
|
||
|
|
||
|
#+LATEX_CLASS: scrreprt
|
||
|
#+LATEX_CLASS_OPTIONS: [a4paper, 10pt, DIV=12, parskip=full, bibliography=totoc]
|
||
|
#+LATEX_HEADER: \input{preamble.tex}
|
||
|
#+LATEX_HEADER_EXTRA: \input{preamble_extra.tex}
|
||
|
#+LATEX_HEADER_EXTRA: \bibliography{nass-introduction.bib}
|
||
|
|
||
|
#+BIND: org-latex-bib-compiler "biber"
|
||
|
|
||
|
#+PROPERTY: header-args:matlab :session *MATLAB*
|
||
|
#+PROPERTY: header-args:matlab+ :comments org
|
||
|
#+PROPERTY: header-args:matlab+ :exports none
|
||
|
#+PROPERTY: header-args:matlab+ :results none
|
||
|
#+PROPERTY: header-args:matlab+ :eval no-export
|
||
|
#+PROPERTY: header-args:matlab+ :noweb yes
|
||
|
#+PROPERTY: header-args:matlab+ :mkdirp yes
|
||
|
#+PROPERTY: header-args:matlab+ :output-dir figs
|
||
|
#+PROPERTY: header-args:matlab+ :tangle no
|
||
|
|
||
|
#+PROPERTY: header-args:latex :headers '("\\usepackage{tikz}" "\\usepackage{import}" "\\import{$HOME/Cloud/tikz/org/}{config.tex}")
|
||
|
#+PROPERTY: header-args:latex+ :imagemagick t :fit yes
|
||
|
#+PROPERTY: header-args:latex+ :iminoptions -scale 100% -density 150
|
||
|
#+PROPERTY: header-args:latex+ :imoutoptions -quality 100
|
||
|
#+PROPERTY: header-args:latex+ :results file raw replace
|
||
|
#+PROPERTY: header-args:latex+ :buffer no
|
||
|
#+PROPERTY: header-args:latex+ :tangle no
|
||
|
#+PROPERTY: header-args:latex+ :eval no-export
|
||
|
#+PROPERTY: header-args:latex+ :exports results
|
||
|
#+PROPERTY: header-args:latex+ :mkdirp yes
|
||
|
#+PROPERTY: header-args:latex+ :output-dir figs
|
||
|
#+PROPERTY: header-args:latex+ :post pdf2svg(file=*this*, ext="png")
|
||
|
:END:
|
||
|
|
||
|
#+latex: \clearpage
|
||
|
|
||
|
* Build :noexport:
|
||
|
#+NAME: startblock
|
||
|
#+BEGIN_SRC emacs-lisp :results none :tangle no
|
||
|
(add-to-list 'org-latex-classes
|
||
|
'("scrreprt"
|
||
|
"\\documentclass{scrreprt}"
|
||
|
("\\chapter{%s}" . "\\chapter*{%s}")
|
||
|
("\\section{%s}" . "\\section*{%s}")
|
||
|
("\\subsection{%s}" . "\\subsection*{%s}")
|
||
|
("\\paragraph{%s}" . "\\paragraph*{%s}")
|
||
|
))
|
||
|
|
||
|
|
||
|
;; Remove automatic org heading labels
|
||
|
(defun my-latex-filter-removeOrgAutoLabels (text backend info)
|
||
|
"Org-mode automatically generates labels for headings despite explicit use of `#+LABEL`. This filter forcibly removes all automatically generated org-labels in headings."
|
||
|
(when (org-export-derived-backend-p backend 'latex)
|
||
|
(replace-regexp-in-string "\\\\label{sec:org[a-f0-9]+}\n" "" text)))
|
||
|
(add-to-list 'org-export-filter-headline-functions
|
||
|
'my-latex-filter-removeOrgAutoLabels)
|
||
|
|
||
|
;; Remove all org comments in the output LaTeX file
|
||
|
(defun delete-org-comments (backend)
|
||
|
(loop for comment in (reverse (org-element-map (org-element-parse-buffer)
|
||
|
'comment 'identity))
|
||
|
do
|
||
|
(setf (buffer-substring (org-element-property :begin comment)
|
||
|
(org-element-property :end comment))
|
||
|
"")))
|
||
|
(add-hook 'org-export-before-processing-hook 'delete-org-comments)
|
||
|
|
||
|
;; Use no package by default
|
||
|
(setq org-latex-packages-alist nil)
|
||
|
(setq org-latex-default-packages-alist nil)
|
||
|
|
||
|
;; Do not include the subtitle inside the title
|
||
|
(setq org-latex-subtitle-separate t)
|
||
|
(setq org-latex-subtitle-format "\\subtitle{%s}")
|
||
|
|
||
|
(setq org-export-before-parsing-hook '(org-ref-glossary-before-parsing
|
||
|
org-ref-acronyms-before-parsing))
|
||
|
#+END_SRC
|
||
|
|
||
|
* Notes :noexport:
|
||
|
|
||
|
Prefix is =conclusion=
|
||
|
|
||
|
* Conclusion
|
||
|
* Recommendation for further research
|
||
|
* Bibliography :ignore:
|
||
|
#+latex: \printbibliography[heading=bibintoc,title={Bibliography}]
|
||
|
|
||
|
* Footnotes
|