|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 458 (0x1ca) Types: TextFile Names: »picfonts.h«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« └─⟦036c765ac⟧ └─⟦this⟧ »TeX3.0/TeXgraphics/transfig/fig2dev/dev/picfonts.h«
/* The selection of font names may be site dependent */ char *fontnames[] = { "R", "R", /* default */ "R", /* roman */ "B", /* bold */ "I", /* italic */ "H", /* sans serif */ "C" /* typewriter */ }; #define MAXFONT 5 #define MAXFONTSIZE 108 #define PICFONT(F) (fontnames[((F) <= MAXFONT) ? (F)+1 : MAXFONT]) #define PICFONTSIZE(S) ((S) > 0 ? \ ((S) <= MAXFONTSIZE ? \ (S) : \ MAXFONTSIZE) : \ font_size)