Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

natbraille(1) [debian man page]

NATBRAILLE(1)						      General Commands Manual						     NATBRAILLE(1)

NAME
natbraille - French braille typesetting SYNOPSIS
natbraille -g | --gui natbraille [options] -f source -t dest DESCRIPTION
NAT is braille translation engine that can translate into transcribed French braille: Text documents OpenOffice 1 and 2 documents, including equations. Microsoft Word documents saved as text, whose equations have been converted to mathml with MathType Simple HTML documents which respect norms. OPTIONS
These programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. For a complete description, see the Info files. -?, -h, --help Show summary of options. -c, --config <sourcefile> Set configuration file. -f, --from <sourcefile> Set source file. --fi-braille-table Set braille table. --fi-hyphenation true|false Use hyphenation. --fi-hyphenation-dirty true|false Use dirty hyphenation. --fi-line-length number Set line length --fi-litt-abbreg true|false Transcribe as abbreged --fi-litt-transcribe true|false Transcribe litterary contents --fi-math-transcribe true|false Transcribe math contents --fi-math-use-trigo-notation true|false Use special trigonometric notation --fi-music-transcribe true|false Transcribe musical contents. -g, --gui Loads graphical interface --ge-log-level 1|2|3 Debug verbosity --in-encoding encoding Input file encoding. --out-encoding encoding Output file encodoutg. -q, --quiet No console output -t, --to <destfile> Sets destination file. AUTHOR
natbraille was written by Bruno Mascret <bmascret@free.fr> and the Nat team. This manual page was written by Samuel Thibault <sthibault@debian.org>, for the Debian project (and may be used by others). October 18, 2009 NATBRAILLE(1)

Check Out this Related Man Page

BOOLVAL(3)								 1								BOOLVAL(3)

boolval - Get the boolean value of a variable

SYNOPSIS
boolean boolval (mixed $var) DESCRIPTION
Returns the boolean value of $var. PARAMETERS
o $var - The scalar value being converted to a boolean. RETURN VALUES
The boolean value of $var. EXAMPLES
Example #1 boolval(3) examples <?php echo '0: '.(boolval(0) ? 'true' : 'false')." "; echo '42: '.(boolval(42) ? 'true' : 'false')." "; echo '0.0: '.(boolval(0.0) ? 'true' : 'false')." "; echo '4.2: '.(boolval(4.2) ? 'true' : 'false')." "; echo '"": '.(boolval("") ? 'true' : 'false')." "; echo '"string": '.(boolval("string") ? 'true' : 'false')." "; echo '"0": '.(boolval("0") ? 'true' : 'false')." "; echo '"1": '.(boolval("1") ? 'true' : 'false')." "; echo '[1, 2]: '.(boolval([1, 2]) ? 'true' : 'false')." "; echo '[]: '.(boolval([]) ? 'true' : 'false')." "; echo 'stdClass: '.(boolval(new stdClass) ? 'true' : 'false')." "; ?> The above example will output: 0: false 42: true 0.0: false 4.2: true "": false "string": true "0": false "1": true [1, 2]: true []: false stdClass: true SEE ALSO
floatval(3), intval(3), strval(3), settype(3), is_bool(3), Type juggling. PHP Documentation Group BOOLVAL(3)
Man Page