Build PDF without ugly hyperref stuff

This commit is contained in:
Charlotte Van Petegem 2024-05-29 20:45:48 +02:00
parent 18f15a8468
commit 98409b7fcc
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 23 additions and 0 deletions

View file

@ -5,6 +5,18 @@
("\\section{%s}" . "\\addsec{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))
(org-latex-default-packages-alist . (("AUTO" "inputenc" t ("pdflatex"))
("T1" "fontenc" t ("pdflatex"))
("" "graphicx" t)
("" "longtable" nil)
("" "wrapfig" nil)
("" "rotating" nil)
("normalem" "ulem" t)
("" "amsmath" t)
("" "amssymb" t)
("" "capt-of" nil)
("hidelinks" "hyperref" nil)))
(org-latex-caption-above . nil)
(org-latex-src-block-backend . minted)
(org-latex-minted-options . (("linenos" . "true")))

View file

@ -14,6 +14,17 @@
("\\section{%s}" . "\\addsec{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
org-latex-default-packages-alist '(("AUTO" "inputenc" t ("pdflatex"))
("T1" "fontenc" t ("pdflatex"))
("" "graphicx" t)
("" "longtable" nil)
("" "wrapfig" nil)
("" "rotating" nil)
("normalem" "ulem" t)
("" "amsmath" t)
("" "amssymb" t)
("" "capt-of" nil)
("hidelinks" "hyperref" nil))
org-latex-caption-above nil
org-latex-src-block-backend 'minted
org-latex-minted-options '(("linenos" . "true")