2015-06-10 16:44:30 +00:00
|
|
|
#+TITLE: LaTeX Layer for Spacemacs
|
|
|
|
|
|
|
|
[[file:img/latex.png]]
|
|
|
|
|
|
|
|
* Table of Contents :TOC@4:
|
|
|
|
- [[#description][Description]]
|
2015-09-28 06:05:18 +00:00
|
|
|
- [[#features][Features]]
|
2015-06-10 16:44:30 +00:00
|
|
|
- [[#install][Install]]
|
2015-09-28 06:05:18 +00:00
|
|
|
- [[#layer][Layer]]
|
|
|
|
- [[#auto-completion][Auto-completion]]
|
|
|
|
- [[#previewing][Previewing]]
|
|
|
|
- [[#build-command][Build command]]
|
|
|
|
- [[#auto-fill][Auto-fill]]
|
2015-06-10 16:44:30 +00:00
|
|
|
- [[#keybindings][Keybindings]]
|
2015-09-28 06:05:18 +00:00
|
|
|
- [[#reftex][RefTeX]]
|
2015-06-10 16:44:30 +00:00
|
|
|
- [[#maintainer][Maintainer]]
|
|
|
|
|
|
|
|
* Description
|
|
|
|
|
|
|
|
This layer adds support for LaTeX files with [[https://savannah.gnu.org/projects/auctex/][AucTeX]].
|
|
|
|
|
2015-06-10 21:16:01 +00:00
|
|
|
** Features
|
2015-07-30 07:44:46 +00:00
|
|
|
- Auto-completion with [[https://github.com/alexeyr/company-auctex][company-auctex]]
|
2015-06-10 21:16:01 +00:00
|
|
|
- Tags navigation on ~%~ with [[https://github.com/redguardtoo/evil-matchit][evil-matchit]]
|
|
|
|
- Labels, references, citations and index entries management with [[http://www.gnu.org/software/emacs/manual/html_node/reftex/index.html][RefTeX]]
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
* Install
|
|
|
|
|
|
|
|
** Layer
|
|
|
|
|
|
|
|
To use this contribution add it to your =~/.spacemacs=
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(setq-default dotspacemacs-configuration-layers '(latex))
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
** Auto-completion
|
|
|
|
|
|
|
|
Add the layer =auto-completion= to the variable
|
|
|
|
=dotspacemacs-configuration-layers= of your dotfile =~/.spacemacs=.
|
|
|
|
|
|
|
|
** Previewing
|
|
|
|
|
|
|
|
To perform full-document previews (that is, aside from the inline previewing
|
|
|
|
under ~SPC m p~), add the following to your =.spacemacs=
|
2015-09-28 06:05:18 +00:00
|
|
|
under =dotspacemacs/user-config=:
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(add-hook 'doc-view-mode-hook 'auto-revert-mode)
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
Then when you open up a compiled PDF, the preview will update automatically
|
|
|
|
when you recompile.
|
|
|
|
|
|
|
|
** Build command
|
|
|
|
|
|
|
|
A build command can be specific via the layer variable =latex-build-command=.
|
|
|
|
|
|
|
|
The default value is =LaTeX=. If =LatexMk= is specified, the appropriate
|
|
|
|
=LatexMk= configuration will be applied.
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
dotspacemacs-configuration-layers '(
|
|
|
|
(latex :variables latex-build-command "LatexMk"))
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
** Auto-fill
|
|
|
|
|
|
|
|
To enable auto-fill set the variable =latex-enable-auto-fill= to =t=.
|
|
|
|
|
|
|
|
The variable =latex-nofill-env= provide the list of environment names where
|
|
|
|
=auto-fille-mode= will be inhibited.
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
dotspacemacs-configuration-layers '(
|
|
|
|
(latex :variables latex-enable-auto-fill t))
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Keybindings
|
|
|
|
|
2015-06-12 01:23:07 +00:00
|
|
|
| Key Binding | Description |
|
|
|
|
|-------------+---------------------------------------------------------+
|
|
|
|
| ~SPC m *~ | TeX documentation, can be very slow |
|
|
|
|
| ~SPC m b~ | build |
|
|
|
|
| ~SPC m c~ | close LaTeX environment |
|
|
|
|
| ~SPC m C~ | TeX command on master file |
|
|
|
|
| ~SPC m e~ | insert LaTeX environment |
|
|
|
|
| ~SPC m f~ | insert LaTeX font - full bindings here: [[https://www.gnu.org/software/auctex/manual/auctex/Font-Specifiers.html][AUCTeX Font Doc]] |
|
|
|
|
| ~SPC m i~ | insert =\item= |
|
|
|
|
| ~SPC m p r~ | preview region |
|
|
|
|
| ~SPC m p b~ | preview buffer |
|
|
|
|
| ~SPC m p d~ | preview document |
|
|
|
|
| ~SPC m p e~ | preview environment |
|
|
|
|
| ~SPC m p s~ | preview section |
|
|
|
|
| ~SPC m p p~ | preview at point |
|
|
|
|
| ~SPC m p f~ | cache preamble for preview |
|
|
|
|
| ~SPC m p c~ | clear previews |
|
2015-07-02 07:01:24 +00:00
|
|
|
| ~SPC m v~ | view |
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
** RefTeX
|
|
|
|
|
|
|
|
| Key Binding | Description |
|
|
|
|
|---------------+---------------------------------------|
|
|
|
|
| ~SPC m r c~ | reftex-citation |
|
|
|
|
| ~SPC m r g~ | reftex-grep-document |
|
|
|
|
| ~SPC m r i~ | reftex-index-selection-or-word |
|
|
|
|
| ~SPC m r I~ | reftex-display-index |
|
|
|
|
| ~SPC m r C-i~ | reftex-index |
|
|
|
|
| ~SPC m r l~ | reftex-label |
|
|
|
|
| ~SPC m r p~ | reftex-index-phrase-selection-or-word |
|
|
|
|
| ~SPC m r P~ | reftex-index-visit-phrases-buffer |
|
|
|
|
| ~SPC m r r~ | reftex-reference |
|
|
|
|
| ~SPC m r s~ | reftex-search-document |
|
|
|
|
| ~SPC m r t~ | reftex-toc |
|
|
|
|
| ~SPC m r T~ | reftex-toc-recenter |
|
|
|
|
| ~SPC m r v~ | reftex-view-crossref |
|
|
|
|
|
|
|
|
* Maintainer
|
|
|
|
|
|
|
|
This layer was created by and is maintained by @trishume, ping me in the Gitter
|
|
|
|
chat if you have questions. Feel free to submit PRs for this layer though if
|
|
|
|
you have improvements.
|