below for the allowed forms of @var{dimension} Default: @code{0.5in}.
@item @option{-O prop-font=@var{font-name}}
-@itemx @option{-O emph-font=@var{font-name}}
@itemx @option{-O fixed-font=@var{font-name}}
-Sets the font used for proportional, emphasized, or fixed-pitch text.
-Most systems support CSS-like font names such as ``serif'' and
+Sets the font used for proportional, or fixed-pitch text. Most
+systems support CSS-like font names such as ``serif'' and
``monospace'', but a wide range of system-specific font are likely to
be supported as well.
-Default: proportional font @code{serif}, emphasis font @code{serif
-italic}, fixed-pitch font @code{monospace}.
+Default: proportional font @code{serif}, fixed-pitch font @code{monospace}.
@item @option{-O font-size=@var{font-size}}
Sets the size of the default fonts, in thousandths of a point. Default:
enum xr_font_type
{
XR_FONT_PROPORTIONAL,
- XR_FONT_EMPHASIS,
XR_FONT_FIXED,
XR_N_FONTS
};
(d, o, "fixed-font", "monospace", font_size, false, false);
xr->fonts[XR_FONT_PROPORTIONAL].desc = parse_font_option (
d, o, "prop-font", "sans serif", font_size, false, false);
- xr->fonts[XR_FONT_EMPHASIS].desc = parse_font_option (
- d, o, "emph-font", "sans serif", font_size, false, true);
xr->fg = parse_color (opt (d, o, "foreground-color", "#000000000000"));
xr->bg = parse_color (opt (d, o, "background-color", "#FFFFFFFFFFFF"));