aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherbelin2003-02-13 16:18:43 +0000
committerherbelin2003-02-13 16:18:43 +0000
commita9a6269bf2a377a9c2414a797688681fe35de27e (patch)
treeb89a96e38e92d48155cd9c933163b7a66c2e040a
parent74b38af4176f7125cf1138981f4ee1e539ca1cd7 (diff)
MAJ Remark/Fact
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@8323 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--doc/Makefile21
-rw-r--r--doc/RefMan-gal.tex22
2 files changed, 27 insertions, 16 deletions
diff --git a/doc/Makefile b/doc/Makefile
index cbaeb8e868..18425ad5ba 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -18,6 +18,7 @@ DOCCOQC=$(COQBIN)/coqc
COQTEX=$(COQBIN)/coq-tex -image $(DOCCOQTOP) -v -sl -small
#COQWEBSTY=$(HOME)/lib/tex/
COQWEBSTY=/usr/share/texmf/tex/latex/misc/
+HEVEALIB=/usr/local/lib/hevea
LATEX=latex
BIBTEX=bibtex
@@ -27,7 +28,7 @@ PDFLATEX=pdflatex
MKDIR=mkdir
TEST=test
-TEXINPUTS=/usr/local/lib/rrkit/RRINPUTSDIR:$(COQWEBSTY):.:
+TEXINPUTS=/usr/local/lib/rrkit/RRINPUTSDIR:$(COQWEBSTY):$(HEVEALIB):.:
INPUTS=./macros.tex ./title.tex ./headers.tex ./Reference-Manual.tex
@@ -50,8 +51,8 @@ REFMANFILES= Reference-Manual.tex RefMan-pre.tex RefMan-int.tex \
REFMAN=Reference-Manual
-#VERSION=POSITIONNEZ-CETTE-VARIABLE
VERSION=V7.4
+#VERSION=POSITIONNEZ-CETTE-VARIABLE
FTPDOCDIR=/net/pauillac/infosystems/ftp/coq/coq/$(VERSION)/doc
WWWDOCDIR=/net/pauillac/infosystems/www/coq/doc
@@ -80,13 +81,13 @@ coq-part: $(REFMANCOQTEXFILES) $(COQTEXFILES) demos-programs library/libdoc.tex
latex-part: all-dvi
-all-dvi: Tutorial.v.dvi Reference-Manual.dvi # Library.dvi # Changes.v.dvi
+all-dvi: Tutorial.v.dvi Reference-Manual.dvi faq.v.dvi # Library.dvi Changes.v.dvi
-all-pdf: Tutorial.v.pdf Reference-Manual.pdf # Library.pdf # Changes.v.pdf
+all-pdf: Tutorial.v.pdf Reference-Manual.pdf faq.v.pdf # Library.pdf Changes.v.pdf
-all-ps: Tutorial.v.ps Reference-Manual.ps # Library.ps # Changes.v.ps
+all-ps: Tutorial.v.ps Reference-Manual.ps faq.v.ps # Library.ps Changes.v.ps
-all-html: Tutorial.v.html Reference-Manual.html # Library.html # Changes.v.html
+all-html: Tutorial.v.html Reference-Manual.html faq.v.html # Library.html Changes.v.html
# dvips et dviselect existent sur loupiac
@@ -123,6 +124,9 @@ Reference-Manual.html: $(INPUTS) $(REFMANFILES) $(COQTEXFILES) biblio.bib
hevea -fix ./book-html.sty ./coq-html.sty ./Reference-Manual.tex
#1.04 hevea ./book-html.sty ./coq-html.sty ./Reference-Manual.tex
+faq.v.html: faq.v.tex
+ hevea ./faq.v.tex
+
coq.info: $(INPUTS) $(REFMANFILES) $(COQTEXFILES) biblio.bib
hevea -info ./book-html.sty ./coq-html.sty ./Reference-Manual.tex
@@ -179,6 +183,8 @@ clean: clean-coq clean-latex
clean-html:
rm -f Tutorial.v.html Reference-Manual.html # Changes.v.html
+ rm -f *.hatoc *.haux *.hcomind *.herrind *.hidx *.hind *.htacind *.htoc
+
cleanall: clean clean-html
@@ -333,6 +339,9 @@ doc-ftp-install:
cp $(FTPDOCS) $(FTPHTMLDOCS) $(FTPDOCDIR)
- chmod g+w $(FTPDOCDIR)/*
+faq-www-install:
+ cp faq.v.html $(WWWDOCDIR)/faq.html
+
doc-www-install:
(cd $(WWWDOCDIR); rm -f node*.html main*.html toc.html \
tutorial.html changes.html cover.html)
diff --git a/doc/RefMan-gal.tex b/doc/RefMan-gal.tex
index 9691af050e..1b23911dd8 100644
--- a/doc/RefMan-gal.tex
+++ b/doc/RefMan-gal.tex
@@ -1196,16 +1196,18 @@ After a statement, Coq needs a proof.
\item {\tt Lemma {\ident} : {\type}.}\comindex{Lemma}\\
It is a synonymous of \texttt{Theorem}
\item {\tt Remark {\ident} : {\type}.}\comindex{Remark}\\
-Same as {\tt Theorem} except
-that if this statement is in one or more levels of sections then the
-name {\ident} will be accessible only prefixed by the sections names
-when the sections (see \ref{Section} and \ref{LongNames}) will be
-closed.
-%All proofs of persistent objects (such as theorems) referring to {\ident}
-%within the section will be replaced by the proof of {\ident}.
-\item {\tt Fact {\ident} : {\type}.}\comindex{Fact}\\
-Same as {\tt Remark} except
-that the innermost section name is dropped from the full name.
+It is a synonymous of \texttt{Theorem}
+% Same as {\tt Theorem} except
+% that if this statement is in one or more levels of sections then the
+% name {\ident} will be accessible only prefixed by the sections names
+% when the sections (see \ref{Section} and \ref{LongNames}) will be
+% closed.
+% %All proofs of persistent objects (such as theorems) referring to {\ident}
+% %within the section will be replaced by the proof of {\ident}.
+ \item {\tt Fact {\ident} : {\type}.}\comindex{Fact}\\
+It is a synonymous of \texttt{Theorem}
+% Same as {\tt Remark} except
+% that the innermost section name is dropped from the full name.
\item {\tt Definition {\ident} : {\type}.} \\
Allow to define a term of type {\type} using the proof editing mode. It
behaves as {\tt Theorem} except the defined term will be transparent (see