2014-04-30 20:13:57 +00:00
|
|
|
#
|
|
|
|
# This script will advise the user of the needed TeXLive packages
|
|
|
|
# that are needed to make Lyx working out of the box in a smooth
|
|
|
|
# way
|
|
|
|
#
|
|
|
|
case "${ACTION}" in
|
|
|
|
post)
|
|
|
|
|
|
|
|
cat << _EOF
|
|
|
|
=====================================================================
|
|
|
|
|
|
|
|
LyX the document processor need a set of TeXLive packages present
|
2014-05-02 15:14:59 +00:00
|
|
|
to deploy his power.
|
2014-04-30 20:13:57 +00:00
|
|
|
|
2014-05-02 15:14:59 +00:00
|
|
|
To check if some of theese packages are missing go to:
|
|
|
|
menu "Help" and choose "Latex Configuration" this (long) page give
|
|
|
|
you some help on what is missing and where to found it.
|
|
|
|
|
|
|
|
If you have the installed TeXLive with the voidlinux installer,
|
|
|
|
by default it install the small scheme of installation, you have
|
|
|
|
to install the missing packages, the quickiest way is to run as
|
|
|
|
root:
|
2014-04-30 20:13:57 +00:00
|
|
|
|
|
|
|
'tlmgr install algorithm2e algorithms apacite bbding besoz
|
|
|
|
bibtopic breakurl covington csquotes diagbox endnotes enumitem
|
|
|
|
epstopdf esint eurosym feyn fragments framed frankenstein
|
|
|
|
harvard hyphenat jurabib lettrine luainputenc marginnote
|
|
|
|
mathdesign mathdots mhchem multirow nicefrac nomencl picinpar
|
2014-05-02 15:14:59 +00:00
|
|
|
pict2e prettyref preview rotfloat rsfs shapepar sidecap
|
2014-04-30 20:13:57 +00:00
|
|
|
splitindex symbol tex-gyre ulem undertilde units wasy wasysym
|
|
|
|
wrapfig xargs'
|
|
|
|
|
|
|
|
|
2014-05-02 15:14:59 +00:00
|
|
|
As there are many flavour of your preferred applications, I didn't
|
2014-04-30 20:13:57 +00:00
|
|
|
force you to use any in particular so you must have at least:
|
2014-05-02 15:14:59 +00:00
|
|
|
a text editor, a PS and/or PDF viewer, an internet browser.
|
2014-04-30 20:13:57 +00:00
|
|
|
|
2014-05-02 15:14:59 +00:00
|
|
|
If LyX appear on your screen a looking in the file:
|
2014-04-30 20:13:57 +00:00
|
|
|
'~/.lyx/configure.log'
|
|
|
|
may give you an idea of what is supported by LyX.
|
|
|
|
|
|
|
|
Happy LyXing
|
|
|
|
|
|
|
|
The VoidLinux mantainers
|
|
|
|
|
|
|
|
=====================================================================
|
|
|
|
_EOF
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|