Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

coqide(1) [debian man page]

COQIDE(1)						      General Commands Manual							 COQIDE(1)

NAME
coqide - The Coq Proof Assistant graphical interface SYNOPSIS
coqide [ options ] DESCRIPTION
coqtop is a gtk graphical interface for the Coq proof assistant. For command-line-oriented use of Coq, see coqide(1) ; for batch-oriented use of Coq, see coqc(1). OPTIONS
-h Show the complete list of options accepted by coqide. -I dir, -include dir Add directory dir in the include path. -R dir coqdir Recursively map physical dir to logical coqdir. -src Add source directories in the include path. -is f, -inputstate f Read state from f.coq. -nois Start with an empty state. -outputstate f Write state in file f.coq. -load-ml-object f Load ML object file f. -load-ml-source f Load ML file f. -l f, -load-vernac-source f Load Coq file f.v (Load f.). -lv f, -load-vernac-source-verbose f Load Coq file f.v (Load Verbose f.). -load-vernac-object f Load Coq object file f.vo. -require f Load Coq object file f.vo and import it (Require f.). -compile f Compile Coq file f.v (implies -batch). -compile-verbose f Verbosely compile Coq file f.v (implies -batch). -opt Run the native-code version of Coq or Coq_SearchIsos. -byte Run the bytecode version of Coq or Coq_SearchIsos. -where Print Coq's standard library location and exit. -v Print Coq version and exit. -q Skip loading of rcfile. -init-file f Set the rcfile to f. -user u Use the rcfile of user u. -batch Batch mode (exits just after arguments parsing). -boot Boot mode (implies -q and -batch). -emacs Tells Coq it is executed under Emacs. -dump-glob f Dump globalizations in file f (to be used by coqdoc(1)). -impredicative-set Set sort Set impredicative. -dont-load-proofs Don't load opaque proofs in memory. -xml Export XML files either to the hierarchy rooted in the directory COQ_XML_LIBRARY_ROOT (if set) or to stdout (if unset). SEE ALSO
coqc(1), coqtop(1), coq-tex(1), coqdep(1). The Coq Reference Manual, The Coq web site: http://coq.inria.fr, /usr/share/doc/coqide/FAQ. AUTHOR
This manual page was written by Samuel Mimram <samuel.mimram@ens-lyon.org>, for the Debian project (but may be used by others). July 16, 2004 COQIDE(1)

Check Out this Related Man Page

COQ-TEX(1)						      General Commands Manual							COQ-TEX(1)

NAME
coq-tex - Process Coq phrases embedded in LaTeX files SYNOPSIS
coq-tex [ -o output-file ] [ -n line-width ] [ -image coq-image ] [ -w ] [ -v ] [ -sl ] [ -hrule ] [ -small ] input-file ... DESCRIPTION
The coq-tex filter extracts Coq phrases embedded in LaTeX files, evaluates them, and insert the outcome of the evaluation after each phrase. Three LaTeX environments are provided to include Coq code in the input files: coq_example The phrases between egin{coq_example} and end{coq_example} are evaluated and copied into the output file. Each phrase is followed by the response of the toplevel loop. coq_example* The phrases between egin{coq_example*} and end{coq_example*} are evaluated and copied into the output file. The responses of the toplevel loop are discarded. coq_eval The phrases between egin{coq_eval} and end{coq_eval} are silently evaluated. They are not copied into the output file, and the responses of the toplevel loop are discarded. The resulting LaTeX code is stored in the file file.v.tex if the input file has a name of the form file.tex, otherwise the name of the out- put file is the name of the input file with `.v.tex' appended. The files produced by coq-tex can be directly processed by LaTeX. Both the Coq phrases and the toplevel output are typeset in typewriter font. OPTIONS
-o output-file Specify the name of a file where the LaTeX output is to be stored. A dash `-' causes the LaTeX output to be printed on standard out- put. -n line-width Set the line width. The default is 72 characters. The responses of the toplevel loop are folded if they are longer than the line width. No folding is performed on the Coq input text. -image coq-image Cause the file coq-image to be executed to evaluate the Coq phrases. By default, this is the command coqtop without specifying any path which is used to evaluate the Coq phrases. -w Cause lines to be folded on a space character whenever possible, avoiding word cuts in the output. By default, folding occurs at the line width, regardless of word cuts. -v Verbose mode. Prints the Coq answers on the standard output. Useful to detect errors in Coq phrases. -sl Slanted mode. The Coq answers are written in a slanted font. -hrule Horizontal lines mode. The Coq parts are written between two horizontal lines. -small Small font mode. The Coq parts are written in a smaller font. CAVEATS
The egin... and end... phrases must sit on a line by themselves, with no characters before the backslash or after the closing brace. Each Coq phrase must be terminated by `.' at the end of a line. Blank space is accepted between `.' and the newline, but any other charac- ter will cause coq-tex to ignore the end of the phrase, resulting in an incorrect shuffling of the responses into the phrases. (The responses ``lag behind''.) SEE ALSO
coqtop (1). 29 March 1995 COQ-TEX(1)
Man Page