(*:maxLineLen=78:*) theory Presentation imports Base begin chapter ‹Presenting theories \label{ch:present}› text ‹ Isabelle provides several ways to present the outcome of formal developments, including WWW-based browsable libraries or actual printable documents. Presentation is centered around the concept of ∗‹sessions› (\chref{ch:session}). The global session structure is that of a tree, with Isabelle Pure at its root, further object-logics derived (e.g.\ HOLCF from HOL, and HOL from Pure), and application sessions further on in the hierarchy. The command-line tools @{tool_ref mkroot} and @{tool_ref build} provide the primary means for managing Isabelle sessions, including options for presentation: ``▩‹document=pdf›'' generates PDF output from the theory session, and ``▩‹document_output=dir›'' emits a copy of the document sources with the PDF into the given directory (relative to the session directory). Alternatively, @{tool_ref document} may be used to turn the generated {\LaTeX} sources of a session (exports from its build database) into PDF, using suitable invocations of @{tool_ref latex}. › section ‹Generating HTML browser information \label{sec:info}› text ‹ As a side-effect of building sessions, Isabelle is able to generate theory browsing information, including HTML documents that show the theory sources and the relationship with its ancestors and descendants. Besides the HTML file that is generated for every theory, Isabelle stores links to all theories of a session in an index file. As a second hierarchy, groups of sessions are organized as ∗‹chapters›, with a separate index. Note that the implicit tree structure of the session build hierarchy is ∗‹not› relevant for the presentation. ┉ To generate theory browsing information for an existing session, just invoke @{tool build} with suitable options: @{verbatim [display] ‹isabelle build -o browser_info -v -c FOL›} The presentation output will appear in ▩‹$ISABELLE_BROWSER_INFO/FOL/FOL› as reported by the above verbose invocation of the build process. Many Isabelle sessions (such as \<^session>‹HOL-Library› in 🗀‹~~/src/HOL/Library›) also provide printable documents in PDF. These are prepared automatically as well if enabled like this: @{verbatim [display] ‹isabelle build -o browser_info -o document=pdf -v -c HOL-Library›} Enabling both browser info and document preparation simultaneously causes an appropriate ``document'' link to be included in the HTML index. Documents may be generated independently of browser information as well, see \secref{sec:tool-document} for further details. ━ The theory browsing information is stored in a sub-directory directory determined by the @{setting_ref ISABELLE_BROWSER_INFO} setting plus a prefix corresponding to the session chapter and identifier. In order to present Isabelle applications on the web, the corresponding subdirectory from @{setting ISABELLE_BROWSER_INFO} can be put on a WWW server. › section ‹Preparing session root directories \label{sec:tool-mkroot}› text ‹ The @{tool_def mkroot} tool configures a given directory as session root, with some ▩‹ROOT› file and optional document source directory. Its usage is: @{verbatim [display] ‹Usage: isabelle mkroot [OPTIONS] [DIRECTORY] Options are: -A LATEX provide author in LaTeX notation (default: user name) -I init Mercurial repository and add generated files -T LATEX provide title in LaTeX notation (default: session name) -n NAME alternative session name (default: directory base name) Prepare session root directory (default: current directory). ›} The results are placed in the given directory ‹dir›, which refers to the current directory by default. The @{tool mkroot} tool is conservative in the sense that it does not overwrite existing files or directories. Earlier attempts to generate a session root need to be deleted manually. The generated session template will be accompanied by a formal document, with ‹DIRECTORY›▩‹/document/root.tex› as its {\LaTeX} entry point (see also \chref{ch:present}). Options ▩‹-T› and ▩‹-A› specify the document title and author explicitly, using {\LaTeX} source notation. Option ▩‹-I› initializes a Mercurial repository in the target directory, and adds all generated files (without commit). Option ▩‹-n› specifies an alternative session name; otherwise the base name of the given directory is used. ┉ The implicit Isabelle settings variable @{setting ISABELLE_LOGIC} specifies the parent session. › subsubsection ‹Examples› text ‹ Produce session ▩‹Test› within a separate directory of the same name: @{verbatim [display] ‹isabelle mkroot Test && isabelle build -D Test›} ┉ Upgrade the current directory into a session ROOT with document preparation, and build it: @{verbatim [display] ‹isabelle mkroot && isabelle build -D .›} › section ‹Preparing Isabelle session documents \label{sec:tool-document}› text ‹ The @{tool_def document} tool prepares logic session documents. Its usage is: @{verbatim [display] ‹Usage: isabelle document [OPTIONS] SESSION Options are: -O DIR output directory for LaTeX sources and resulting PDF -P DIR output directory for resulting PDF -S DIR output directory for LaTeX sources -V verbose latex -d DIR include session directory -o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) -v verbose build Prepare the theory document of a session.›} Generated {\LaTeX} sources are taken from the session build database: @{tool_ref build} is invoked beforehand to ensure that it is up-to-date. Further files are generated on the spot, notably essential Isabelle style files, and ▩‹session.tex› to input all theory sources from the session (excluding imports from other sessions). ┉ Options ▩‹-d›, ▩‹-o›, ▩‹-v› have the same meaning as for @{tool build}. ┉ Option ▩‹-V› prints full output of {\LaTeX} tools. ┉ Option ▩‹-O›~‹dir› specifies the output directory for generated {\LaTeX} sources and the result PDF file. Options ▩‹-P› and ▩‹-S› only refer to the PDF and sources, respectively. For example, for output directory ``▩‹output›'' and the default document variant ``▩‹document›'', the generated document sources are placed into the subdirectory ▩‹output/document/› and the resulting PDF into ▩‹output/document.pdf›. ┉ Isabelle is usually smart enough to create the PDF from the given ▩‹root.tex› and optional ▩‹root.bib› (bibliography) and ▩‹root.idx› (index) using standard {\LaTeX} tools. Alternatively, \isakeyword{document\_files} in the session ▩‹ROOT› may include an executable ▩‹build› script to take care of that. It is invoked with command-line arguments for the document format (▩‹pdf›) and the document variant name. The script needs to produce corresponding output files, e.g.\ ▩‹root.pdf› for default document variants (the main work can be delegated to @{tool latex}). › subsubsection ‹Examples› text ‹ Produce the document from session ▩‹FOL› with full verbosity, and a copy in the current directory (subdirectory ▩‹document› and file ▩‹document.pdf)›: @{verbatim [display] ‹isabelle document -v -V -O. FOL›} › section ‹Running {\LaTeX} within the Isabelle environment \label{sec:tool-latex}› text ‹ The @{tool_def latex} tool provides the basic interface for Isabelle document preparation. Its usage is: @{verbatim [display] ‹Usage: isabelle latex [OPTIONS] [FILE] Options are: -o FORMAT specify output format: pdf (default), bbl, idx, sty Run LaTeX (and related tools) on FILE (default root.tex), producing the specified output format.›} Appropriate {\LaTeX}-related programs are run on the input file, according to the given output format: @{executable pdflatex}, @{executable bibtex} (for ▩‹bbl›), and @{executable makeindex} (for ▩‹idx›). The actual commands are determined from the settings environment (@{setting ISABELLE_PDFLATEX} etc.). The ▩‹sty› output format causes the Isabelle style files to be updated from the distribution. This is useful in special situations where the document sources are to be processed another time by separate tools. › subsubsection ‹Examples› text ‹ Invoking @{tool latex} by hand may be occasionally useful when debugging failed attempts of the automatic document preparation stage of batch-mode Isabelle. The abortive process leaves the sources at a certain place within @{setting ISABELLE_BROWSER_INFO}, see the runtime error message for details. This enables users to inspect {\LaTeX} runs in further detail, e.g.\ like this: @{verbatim [display] ‹cd "$(isabelle getenv -b ISABELLE_BROWSER_INFO)/Unsorted/Test/document" isabelle latex -o pdf›} › end