Am Di, den 14.09.2004 schrieb ciro um 04:16:
Is there a set of commands to know what fonts I have in my installation of context? and How do I show them all together without going one by one in the subdirectories... thank you
Dear Ciro, I used the following shell skript, which was one and a half years ago on http://www.educat.hu-berlin.de/~voss/lyx/fonts/fonts.phtml fontdemo.sh ------------- find `kpsewhich -expand-var='$TEXMFMAIN'`/fonts/tfm -name '*.tfm' -print | \ sed 's@.*/@@; s@\.tfm$@@' | \ xargs sh -c 'for i in "$@"; do (echo $i; echo \\\sample\\\bye) | \ tex testfont; mv testfont.dvi $i.dvi; echo $i.dvi; done' sh ------------- It gives you one dvi-file per installed font in your TeX-System - that is usually a lot. Yours sincerely Tobias Hilbricht