TeX Live and MacTeX ⇒ GUI for the TeX Documentation Browser
GUI for the TeX Documentation Browser
I used TeX Live on Windows for a while now, and it seems awesome. Especially I really like the TeX documentation browser GUI which helps searching in its database for documentation for LaTeX packages.
However, recently I have moved to Ubuntu. And now, I am surprised that there is no GUI for TeX Live (like the tray GUI in Windows) in Linux! I suppose TeX Live was created for Linux first. Is there any GUI for TeX Live, especially for the TeX documentation browser?
By the way, I tried to use texdoctk, but I get an error:
"Couldn't open system-wide default config file texdocrc.defaults"
I would appreciate any help guys.
thanks.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
GUI for the TeX Documentation Browser
Code: Select all
# defaults: unix values
my $qq="'";
my $HomeEnv=$ENV{HOME};
my $TeXDocRcDefaults="texdocrc.defaults";
my $TempDir; $TempDir=$ENV{TMPDIR} or $TempDir="/tmp";
my $CmdConsole="xterm -e ";
if ($IsWin32) {
$qq = "\"";
$HomeEnv = $ENV{'USERPROFILE'};
chomp $HomeEnv;
$TeXDocRcDefaults = "texdocrc-win32.defaults";
$TempDir = &GetTempPath;
$CmdConsole = "cmd /c ";
}
my $myrc="${HomeEnv}/.texdocrc"; # optional personal settings file
my ($line,@dummy);
my @tmpfiles;
# read system-wide defaults from texdocrc.defaults
my $sysrc=`kpsewhich --progname=texdoctk --format=${qq}other text files${qq} ${TeXDocRcDefaults}`;
my $database=`kpsewhich --progname=texdoctk --format=${qq}other text files${qq} texdoctk.dat`;
my $locdatabase=`kpsewhich --progname=texdoctk --format=${qq}other text files${qq} texdoctk-local.dat`;
my $homedatabase=`kpsewhich --progname=texdoctk --format=${qq}other text files${qq} texdoctk-pers.dat`;
Re: GUI for the TeX Documentation Browser
There's also an administration gui: tlmgr -gui