reformatted a few things
This commit is contained in:
parent
4890a885d8
commit
91bf8ba5f8
9
conf.org
9
conf.org
|
@ -736,7 +736,8 @@ AUCTeX can launch external viewers to show compiled documents. I use Okular for
|
||||||
(output-pdf "Okular")
|
(output-pdf "Okular")
|
||||||
(output-html "xdg-open")))
|
(output-html "xdg-open")))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
**** folding and outlining
|
**** outline mode
|
||||||
|
***** folding
|
||||||
I like how =org-mode= folds with the TAB key, so bring the same thing to AUCTeX here with =outline-magic=.
|
I like how =org-mode= folds with the TAB key, so bring the same thing to AUCTeX here with =outline-magic=.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(add-hook 'LaTeX-mode-hook (lambda () (outline-minor-mode 1)))
|
(add-hook 'LaTeX-mode-hook (lambda () (outline-minor-mode 1)))
|
||||||
|
@ -746,8 +747,8 @@ I like how =org-mode= folds with the TAB key, so bring the same thing to AUCTeX
|
||||||
:ensure t
|
:ensure t
|
||||||
:after outline)
|
:after outline)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
***** fonts
|
||||||
Also, the section fonts are too big by default. Now the sizes are all kept equal with hatchet, axe, and saw :)
|
The section fonts are too big by default. Now the fonts are all kept equal with hatchet, axe, and saw :)
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq font-latex-fontify-sectioning 'color)
|
(setq font-latex-fontify-sectioning 'color)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
@ -3532,7 +3533,7 @@ Filtering is useful for obvious reasons
|
||||||
(use-package dired-narrow
|
(use-package dired-narrow
|
||||||
:ensure t)
|
:ensure t)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** pdftools
|
** pdf-tools
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package pdf-tools
|
(use-package pdf-tools
|
||||||
:ensure t
|
:ensure t
|
||||||
|
|
Loading…
Reference in New Issue