Update documentation of recognized latex viewers

The user documentation of +latex-viewers did not keep up with changes to
the variable. This commit realigns its documentation.
This commit is contained in:
Alexander Graul 2019-09-28 18:28:48 +02:00
parent 89242f83d2
commit db2901af71
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.")