# HG changeset patch # User Christian Urban # Date 1260968922 -3600 # Node ID b85875d65b106ec1488a23976c206ff528dffbab # Parent 670131bcba4ad8795b3e5bbd76ffe654950d23bf added a paper for possible notes diff -r 670131bcba4a -r b85875d65b10 IsaMakefile --- a/IsaMakefile Tue Dec 15 15:38:17 2009 +0100 +++ b/IsaMakefile Wed Dec 16 14:08:42 2009 +0100 @@ -13,14 +13,21 @@ OUT = $(ISABELLE_OUTPUT) LOG = $(OUT)/log -USEDIR = $(ISABELLE_TOOL) usedir -v true -t true ## -D generated +USEDIR = $(ISABELLE_TOOL) usedir -v true -t true -D generated ## Quot Quot: $(LOG)/HOL-Quot.gz $(LOG)/HOL-Quot.gz: Quot/ROOT.ML Quot/*.thy - @$(USEDIR) HOL-Nominal Quot + @$(USEDIR) HOL-Quot Quot + +paper: $(LOG)/HOL-Quot-Paper.gz + +$(LOG)/HOL-Quot-Paper.gz: Paper/ROOT.ML Paper/document/root.tex Paper/*.thy + @$(USEDIR) HOL Paper + $(ISATOOL) document -o pdf Paper/generated + @cp Paper/document.pdf paper.pdf ## clean diff -r 670131bcba4a -r b85875d65b10 Paper/Paper.thy --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Paper/Paper.thy Wed Dec 16 14:08:42 2009 +0100 @@ -0,0 +1,16 @@ +(*<*) +theory Paper +imports "../Quot/QuotMain" +begin +(*>*) + +section {* Introduction *} + +text {* + Here can come any text. + +*} + +(*<*) +end +(*>*) \ No newline at end of file diff -r 670131bcba4a -r b85875d65b10 Paper/ROOT.ML --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Paper/ROOT.ML Wed Dec 16 14:08:42 2009 +0100 @@ -0,0 +1,3 @@ +no_document use_thys ["../Quot/QuotMain"]; + +use_thys ["Paper"]; \ No newline at end of file diff -r 670131bcba4a -r b85875d65b10 Paper/document/root.tex --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Paper/document/root.tex Wed Dec 16 14:08:42 2009 +0100 @@ -0,0 +1,61 @@ +\documentclass[11pt,a4paper]{article} +\usepackage{isabelle,isabellesym} + +% further packages required for unusual symbols (see also +% isabellesym.sty), use only when needed + +%\usepackage{amssymb} + %for \, \, \, \, \, \, + %\, \, \, \, \, + %\, \, \ + +%\usepackage[greek,english]{babel} + %option greek for \ + %option english (default language) for \, \ + +%\usepackage[latin1]{inputenc} + %for \, \, \, \, + %\, \, \ + +%\usepackage[only,bigsqcap]{stmaryrd} + %for \ + +%\usepackage{eufrak} + %for \ ... \, \ ... \ (also included in amssymb) + +%\usepackage{textcomp} + %for \, \ + +% this should be the last package used +\usepackage{pdfsetup} + +% urls in roman style, theory text in math-similar italics +\urlstyle{rm} +\isabellestyle{it} + +% for uniform font size +%\renewcommand{\isastyle}{\isastyleminor} + + +\begin{document} + +\title{Paper} +\author{By Kaliszyk and Urban} +\maketitle + +% sane default for proof documents +\parindent 0pt\parskip 0.5ex + +% generated text of all theories +\input{session} + +% optional bibliography +%\bibliographystyle{abbrv} +%\bibliography{root} + +\end{document} + +%%% Local Variables: +%%% mode: latex +%%% TeX-master: t +%%% End: