Merge pull request #1850 from alexandergraul/fix-latex-documentation

lang/latex: update docs wrt latex viewers
This commit is contained in:
Henrik Lissner 2019-10-03 12:10:43 -04:00 committed by GitHub
commit 921e36decd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 10 deletions

View file

@ -4,13 +4,13 @@
#+STARTUP: inlineimages #+STARTUP: inlineimages
* Table of Contents :TOC_3:noexport: * Table of Contents :TOC_3:noexport:
- [[Description][Description]] - [[#description][Description]]
- [[Module Flags][Module Flags]] - [[#module-flags][Module Flags]]
- [[Plugins][Plugins]] - [[#plugins][Plugins]]
- [[Features][Features]] - [[#features][Features]]
- [[Customization][Customization]] - [[#customization][Customization]]
- [[Specifying the location of a bibtex file & corresponding PDFs][Specifying the location of a bibtex file & corresponding PDFs]] - [[#specifying-the-location-of-a-bibtex-file--corresponding-pdfs][Specifying the location of a bibtex file & corresponding PDFs]]
- [[Changing the PDFs viewer][Changing the PDFs viewer]] - [[#changing-the-pdfs-viewer][Changing the PDFs viewer]]
* Description * Description
Provide a helping hand when working with LaTeX documents. Provide a helping hand when working with LaTeX documents.
@ -56,8 +56,10 @@ PDFs:
This module provides integration for four supported pdf viewers. They are This module provides integration for four supported pdf viewers. They are
+ [[https://skim-app.sourceforge.io/][Skim.app]] (MacOS only) + [[https://skim-app.sourceforge.io/][Skim.app]] (MacOS only)
+ Okular + Evince
+ Sumatra PDF
+ Zathura + Zathura
+ Okular
+ pdf-tools (requires =:tools pdf= module) + pdf-tools (requires =:tools pdf= module)
They are searched for in this order. See ~+latex-viewers~ to change the order, They are searched for in this order. See ~+latex-viewers~ to change the order,

View file

@ -13,8 +13,8 @@ package to be installed.")
(defvar +latex-viewers '(skim evince sumatrapdf zathura okular pdf-tools) (defvar +latex-viewers '(skim evince sumatrapdf zathura okular pdf-tools)
"A list of enabled latex viewers to use, in this order. If they don't exist, "A list of enabled latex viewers to use, in this order. If they don't exist,
they will be ignored. Recognized viewers are skim, zathura, okular and they will be ignored. Recognized viewers are skim, evince, sumatrapdf, zathura,
pdf-tools. okular and pdf-tools.
If no viewers are found, `latex-preview-pane' is used.") If no viewers are found, `latex-preview-pane' is used.")