ShowTexdoc
A plugin for Sublime Text which helps to show LaTeX package documents
Details
Installs
- Total 405
- Win 224
- Mac 84
- Linux 97
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Show Texdoc
by Lyu Ming [https://github.com/CareF]
Introduction
This is a Sublime Text package for showing the LaTeX package documents.
I develop and test the package under Sublime Text 3 and Windows 8 but I shall not use anything not supported by other platform. If anyone found it cannot run under Sublime Text 2 or other OS, please contact me.
I use TexLive 2014, and know nothing about other TeX distribution. This package requires the following two commands about TeX:
tlmgr list --only-installed
texdoc <package name>
Any distribution that supports these two commands should be supported by this package.
Version
v1.0.0: The first release that realize basic function of showing docs.
v1.0.4: Write log file about getting package list, helping future develop that supports other LaTeX distribution.
v2.0.0: New format of cache for better performance. Therefore you have to refresh the cache to make it run in a right way. Description of packages added in “mentioned in this document” command. Also, several bugs in multi-platform have been fixed. Unfortunately I was still told that there is some problem in support under Mac OS.
v2.1.0: Solve the multi platform path environment setting problem.
Usage
Before you use this package, you need to do the following things first:
- Configure the LaTeX path in
Preferences
-Package Setting
-Show Texdoc
-Settings - User
. You may want to copy it fromSettings - Default
to get example setting and modify it accordingly. - Refresh the installed packages list cache: press
Ctrl+Shift+P
to call the panel, run the commandShow TeXdoc: refresh the list of installed packages
and wait until task bar tells you succeeded.
Press Ctrl+Shift+P
to call the panel, input show texdoc
and choose
from the 4 items.
Show TeXdoc mentioned in this document
: This will scan the document in the active view and list all the packages mentioned.Show TeXdoc from all packages installed
: This will give all the packages installed in the local machine (acquired bytlmgr list
command).Show TeXdoc with user input
: This will allow you to input a package name, which is equivalent to the shell commandtexdoc
.Show TeXdoc: refresh the list of installed packages
: Searching for all packages installed is costly, so the list of packages is actually stored inPackages\ShowTexdoc\paclist.pcl
as pickle binary. And this command will refresh the cache.
You need to run Show TeXdoc: refresh the list of installed packages
at least
once to get the cache!
Acknowledgment
Thanks Carl-Henrik Buschmann who gave feedback and helped me on testing the package