- New files for more automatic handling of the package.

This commit is contained in:
Sylvain Pion 1999-10-11 14:06:42 +00:00
parent 64f19e8280
commit 4e55842992
2 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,19 @@
.PHONY: dvi ps
ps: BooleanOperations.ps
BooleanOperations.ps: dvi
dvips -o BooleanOperations.ps wrapper.dvi
dvi: wrapper.dvi
wrapper.dvi: main.tex wrapper.tex
latex wrapper.tex
bibtex wrapper
latex wrapper.tex
latex wrapper.tex
all: BooleanOperations.ps
clean:
rm -f *.aux *.log *.dvi *.ps *.blg *.bbl

View File

@ -0,0 +1,41 @@
% +------------------------------------------------------------------------+
% | CGAL Reference Manual: wrapper.tex
% +------------------------------------------------------------------------+
% | Main TeX file for testing CGAL packages.
% +------------------------------------------------------------------------+
\documentclass{book}
\usepackage{cprog}
\usepackage{cc_manual}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{path}
\usepackage{ipe}
% page dimensions
% ---------------
\textwidth 15.6cm
\textheight 23 cm
\topmargin -14mm
\evensidemargin 3mm
\oddsidemargin 3mm
\sloppy
\begin{document}
% default column layout
% ---------------------
\ccSetThreeColumns{CGAL_Oriented_side}{}{\hspace*{10cm}}
\ccPropagateThreeToTwoColumns
\include{main}
\bibliographystyle{alpha}
% \bibliography{geom,cgal}
\bibliography{geom}
\end{document}
%% EOF %%