ORG Mode: Export Exclud Tag
This commit is contained in:
parent
142ee5c5a9
commit
140222d74b
1 changed files with 6 additions and 1 deletions
|
@ -100,6 +100,7 @@
|
||||||
;; Setup a beautiful export
|
;; Setup a beautiful export
|
||||||
(setq org-export-default-language "de")
|
(setq org-export-default-language "de")
|
||||||
(setq org-export-with-toc nil)
|
(setq org-export-with-toc nil)
|
||||||
|
(setq org-export-exclude-tags '("noexport" "tCLOSED"))
|
||||||
(setq org-export-with-tasks '("TODO" "DONE" "BACKLOG"))
|
(setq org-export-with-tasks '("TODO" "DONE" "BACKLOG"))
|
||||||
(setq org-latex-default-class "je-article")
|
(setq org-latex-default-class "je-article")
|
||||||
(add-to-list 'org-latex-packages-alist '("AUTO" "babel" nil))
|
(add-to-list 'org-latex-packages-alist '("AUTO" "babel" nil))
|
||||||
|
@ -142,7 +143,11 @@
|
||||||
('done "teal"))
|
('done "teal"))
|
||||||
todo))
|
todo))
|
||||||
text
|
text
|
||||||
))
|
(and tags
|
||||||
|
(format "\\hfill{}\\textsc{%s}"
|
||||||
|
(mapconcat #'org-latex--protect-text tags ":")
|
||||||
|
|
||||||
|
))))
|
||||||
(setq org-latex-format-headline-function 'je-org-latex-format-headline-function))
|
(setq org-latex-format-headline-function 'je-org-latex-format-headline-function))
|
||||||
|
|
||||||
;; Use the internal latex viewer
|
;; Use the internal latex viewer
|
||||||
|
|
Reference in a new issue