fc-list.sgml revision 2c393a42
1<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ 2 3<!-- Process this file with docbook-to-man to generate an nroff manual 4 page: `docbook-to-man manpage.sgml > manpage.1'. You may view 5 the manual page with: `docbook-to-man manpage.sgml | nroff -man | 6 less'. A typical entry in a Makefile or Makefile.am is: 7 8manpage.1: manpage.sgml 9 docbook-to-man $< > $@ 10 11 12 The docbook-to-man binary is found in the docbook-to-man package. 13 Please remember that if you create the nroff version in one of the 14 debian/rules file targets (such as build), you will need to include 15 docbook-to-man in your Build-Depends control field. 16 17 --> 18 19 <!-- Fill in your name for FIRSTNAME and SURNAME. --> 20 <!ENTITY dhfirstname "<firstname>Josselin</firstname>"> 21 <!ENTITY dhsurname "<surname>Mouette</surname>"> 22 <!-- Please adjust the date whenever revising the manpage. --> 23 <!ENTITY dhdate "<date>Sep 16, 2003</date>"> 24 <!-- SECTION should be 1-8, maybe w/ subsection other parameters are 25 allowed: see man(7), man(1). --> 26 <!ENTITY dhsection "<manvolnum>1</manvolnum>"> 27 <!ENTITY dhemail "<email>joss@debian.org</email>"> 28 <!ENTITY dhusername "Josselin Mouette"> 29 <!ENTITY dhucpackage "<refentrytitle>fc-list</refentrytitle>"> 30 <!ENTITY dhpackage "fc-list"> 31 32 <!ENTITY debian "<productname>Debian</productname>"> 33 <!ENTITY gnu "<acronym>GNU</acronym>"> 34 <!ENTITY gpl "&gnu; <acronym>GPL</acronym>"> 35]> 36 37<refentry> 38 <refentryinfo> 39 <address> 40 &dhemail; 41 </address> 42 <author> 43 &dhfirstname; 44 &dhsurname; 45 </author> 46 <copyright> 47 <year>2003</year> 48 <holder>&dhusername;</holder> 49 </copyright> 50 &dhdate; 51 </refentryinfo> 52 <refmeta> 53 &dhucpackage; 54 55 &dhsection; 56 </refmeta> 57 <refnamediv> 58 <refname>&dhpackage;</refname> 59 60 <refpurpose>list available fonts</refpurpose> 61 </refnamediv> 62 <refsynopsisdiv> 63 <cmdsynopsis> 64 <command>&dhpackage;</command> 65 66 <arg><option>-vV?</option></arg> 67 <arg><option>--verbose</option></arg> 68 <arg><option>--version</option></arg> 69 <arg><option>--help</option></arg> 70 <arg><option><replaceable>pattern</replaceable></option></arg> 71 <arg><option><replaceable>element</replaceable></option></arg> 72 73 </cmdsynopsis> 74 </refsynopsisdiv> 75 <refsect1> 76 <title>DESCRIPTION</title> 77 78 <para><command>&dhpackage;</command> lists fonts and styles 79 available on the system for applications using fontconfig.</para> 80 81 </refsect1> 82 <refsect1> 83 <title>OPTIONS</title> 84 85 <para>This program follows the usual &gnu; command line syntax, 86 with long options starting with two dashes (`-'). A summary of 87 options is included below.</para> 88 89 <variablelist> 90 <varlistentry> 91 <term><option>-v</option> 92 <option>--verbose</option> 93 </term> 94 <listitem> 95 <para>Display status information while busy.</para> 96 </listitem> 97 </varlistentry> 98 <varlistentry> 99 <term><option>-?</option> 100 <option>--help</option> 101 </term> 102 <listitem> 103 <para>Show summary of options.</para> 104 </listitem> 105 </varlistentry> 106 <varlistentry> 107 <term><option>-V</option> 108 <option>--version</option> 109 </term> 110 <listitem> 111 <para>Show version of the program and exit.</para> 112 </listitem> 113 </varlistentry> 114 <varlistentry> 115 <term><option><replaceable>pattern</replaceable></option> 116 </term> 117 <listitem> 118 <para>If this argument is set, only fonts matching 119 <replaceable>pattern</replaceable> are displayed.</para> 120 </listitem> 121 </varlistentry> 122 <varlistentry> 123 <term><option><replaceable>element</replaceable></option> 124 </term> 125 <listitem> 126 <para>If set, the <replaceable>element</replaceable> property 127 is displayed for matching fonts.</para> 128 </listitem> 129 </varlistentry> 130 </variablelist> 131 </refsect1> 132 133 <refsect1> 134 <title>EXAMPLES</title> 135 136 <variablelist> 137 <varlistentry> 138 <term>fc-list</term> 139 <listitem><para>Lists all font faces.</para></listitem> 140 </varlistentry> 141 <varlistentry> 142 <term>fc-list :lang=hi</term> 143 <listitem><para>Lists font faces that cover Hindi.</para></listitem> 144 </varlistentry> 145 <varlistentry> 146 <term>fc-list : family style file spacing </term> 147 <listitem><para>Lists the filename and spacing value for each font 148 face. <quote>:</quote> is an empty pattern that matches all 149 fonts.</para></listitem> 150 </varlistentry> 151 </variablelist> 152 153 </refsect1> 154 155 <refsect1> 156 <title>SEE ALSO</title> 157 158 <para><command>fc-cache</command> (1).</para> 159 160 <para>The fontconfig user's guide, in HTML format: 161 <filename>/usr/share/doc/fontconfig/fontconfig-user.html</filename>.</para> 162 163 </refsect1> 164 <refsect1> 165 <title>AUTHOR</title> 166 167 <para>This manual page was written by Keith Packard 168 <email>keithp@keithp.com</email> and &dhusername; &dhemail;.</para> 169 170 </refsect1> 171</refentry> 172 173<!-- Keep this comment at the end of the file 174Local variables: 175mode: sgml 176sgml-omittag:t 177sgml-shorttag:t 178sgml-minimize-attributes:nil 179sgml-always-quote-attributes:t 180sgml-indent-step:2 181sgml-indent-data:t 182sgml-parent-document:nil 183sgml-default-dtd-file:nil 184sgml-exposed-tags:nil 185sgml-local-catalogs:nil 186sgml-local-ecat-files:nil 187End: 188--> 189