[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
Misc.
smart-documents.org
@@ -388,7 +388,6 @@
388
388
#+NAME: delete-frame-or-kill-emacs
389
389
#+BEGIN_SRC emacs-lisp :tangle yes
390
390
(global-set-key (kbd "C-q") 'sd-delete-frame-or-kill-emacs)
391
Removed:
(setq confirm-kill-emacs 'y-or-n-p)
392
391
#+END_SRC
393
392
394
393
*** Open sidebar
@@ -1041,7 +1040,8 @@
1041
1040
*** Pretty LaTeX symbols
1042
1041
1043
1042
We display LaTeX entities as UTF8 symbols \rArr this is a slick idea to
1044
Removed:
further make Emacs look like the exported PDF.
1043
Added:
further make Emacs look like the exported PDF. Using symbols in tables
1044
Added:
is discouraged?
1045
1045
1046
1046
#+BEGIN_SRC emacs-lisp :tangle yes
1047
1047
(setq org-pretty-entities t)
@@ -1247,15 +1247,15 @@
1247
1247
(setq org-agenda-insert-diary-strategy 'date-tree-last)
1248
1248
#+END_SRC
1249
1249
1250
Removed:
*** Extra LaTeX classes
1250
Added:
*** Extra LaTeX class
1251
1251
1252
Removed:
What follows is an additional document class structures that can be
1253
Removed:
exported in LaTeX.
1252
Added:
This /letter/ template completes the other default LaTeX classes.
1254
1253
1255
1254
#+BEGIN_SRC emacs-lisp :tangle yes
1255
Added:
(require 'ox-publish)
1256
1256
(add-to-list 'org-latex-classes
1257
Removed:
'("book-blendoit"
1258
Removed:
"\\documentclass[12pt]{book}"
1257
Added:
'("letter"
1258
Added:
"\\documentclass[11pt]{letter}"
1259
1259
("\\chapter{%s}" . "\\chapter*{%s}")
1260
1260
("\\section{%s}" . "\\section*{%s}")
1261
1261
("\\subsection*{%s}" . "\\subsection*{%s}")