The FoilTeX is a collection of LaTeX files for making foils. A number of features are built-in including large sans serif font as normal font, options for setting normalsize at 20pt (default), 17pt, 25pt or 30pt, new macros for starting new foils, for special environments like Theorem and Proof, simple macros to control the headline and footline. WWW: http://www.ctan.org/tex-archive/nonfree/macros/latex/contrib/foiltex/ PR: 54372 Submitted by: Stefan Walter <sw@gegenunendlich.de>
14 lines
410 B
Bash
14 lines
410 B
Bash
#!/bin/sh
|
|
|
|
[ -z "${LOCALBASE}" ] && LOCALBASE=/usr/local
|
|
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
|
echo "Updating content cache to let LaTeX know about the new style files:"
|
|
if [ -x ${LOCALBASE}/bin/mktexlsr ]; then
|
|
${LOCALBASE}/bin/mktexlsr
|
|
else
|
|
echo "Could not find mktexlsr. Please run it manually to update"
|
|
echo "LaTeX's content cache, or you won't be able to use the"
|
|
echo "new style files."
|
|
fi
|
|
fi
|