diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-06-25 18:25:44 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-06-25 18:25:44 +0200 |
commit | 0cf2e9765e8b9b977f45cc56b0d35df0b7335a96 (patch) | |
tree | 9ad2a1bb213a84e70675c147d5bdb8a6ddc37b1b | |
parent | f61e64740b13341624f1e9a52f3336a7eda6e3eb (diff) | |
download | luaotfload-0cf2e9765e8b9b977f45cc56b0d35df0b7335a96.tar.gz |
[doc] describe -I and -w in manpage
-rwxr-xr-x | luaotfload-tool.lua | 6 | ||||
-rw-r--r-- | luaotfload-tool.rst | 14 |
2 files changed, 17 insertions, 3 deletions
diff --git a/luaotfload-tool.lua b/luaotfload-tool.lua index 31ea5c0..02ca3a0 100755 --- a/luaotfload-tool.lua +++ b/luaotfload-tool.lua @@ -184,7 +184,11 @@ This tool is part of the luaotfload package. Valid options are: -F --fuzzy look for approximate matches if --find fails --limit=n limit display of fuzzy matches to <n> (default: n = 1) - -i --info display font metadata + + -i --info display basic font metadata + -I --inspect display detailed font metadata + -w --warnings display warnings generated by the + fontloader library --list=<criterion> output list of entries by field <criterion> --list=<criterion>:<value> restrict to entries with <criterion>=<value> diff --git a/luaotfload-tool.rst b/luaotfload-tool.rst index 9b03b37..7b75367 100644 --- a/luaotfload-tool.rst +++ b/luaotfload-tool.rst @@ -15,11 +15,11 @@ SYNOPSIS ======================================================================= -**luaotfload** [ -bDcfFipquvVh ] +**luaotfload** [ -bDcfFiIpquvVwh ] **luaotfload** --update [ --force ] [ --quiet ] [ --verbose ] [ --prefer-texmf ] [ --dry-run ] -**luaotfload** --find=FONTNAME [ --fuzzy ] [ --info ] +**luaotfload** --find=FONTNAME [ --fuzzy ] [ --info ] [ --inspect ] **luaotfload** --flush-lookups @@ -71,8 +71,18 @@ query mode --fuzzy, -F Show approximate matches to the file name if the lookup was unsuccessful (requires ``--find``). + --info, -i Display basic information to a resolved font file (requires ``--find``). +--inspect, -I Display detailed information by loading the + font and analyzing the font table; very slow! + For the meaning of the returned fields see + the LuaTeX documentation. + (requires ``--find``). +--warnings, -w Print the warnings generated by the fontloader + library (assumes ``-I``). Automatically enabled + if the verbosity level exceeds 2. + --show-blacklist, -b Show blacklisted files (not directories). --list=CRITERION Show entries, where *CRITERION* is one of the following: |