Skip to content

Commit

Permalink
Merge pull request #253 from schnellecom/manual-cleanup
Browse files Browse the repository at this point in the history
Change to pre-compiled images
  • Loading branch information
schnellecom authored Jul 6, 2023
2 parents 2c8a955 + 7e6276f commit 2c541e4
Show file tree
Hide file tree
Showing 1,352 changed files with 235,049 additions and 15,075 deletions.
149 changes: 78 additions & 71 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,71 +1,78 @@
# Documentation and automatically generated files
doc/chap*
doc/title.xml
doc/_*.xml
doc/SimplicialSurfaces.tex
doc/_IMAGE*
doc/_TIKZ*
doc/*.png
doc/manual.pdf
doc/manual.six
tst/*.tst

# flatex-folder
flatex/.deps/
flatex/Makefile
flatex/Makefile.in
flatex/aclocal.m4
flatex/autom4te.cache/
flatex/compile
flatex/config.guess
flatex/config.status
flatex/config.sub
flatex/configure
flatex/depcomp
flatex/flatex
flatex/flatex.o
flatex/install-sh
flatex/missing

# Automatically generated library stuff
*.bin
*/_index/
*/*/_index/
*/*/*/_index/
*/*/*/*/_index/

# intermediate compilation stuff
*.4ct
*.4tc
*.aux
*.bbl
*.blg
*.css
*.dvi
*.html
*.idv
*.idx
*.ilg
*.ind
*.js
*.lab
*.lg
*.log
*.nav
*.out
*.pnr
*.snm
*.svg
*.synctex.gz
*.tmp
*.toc
*.vrb
*.xref

# changed files
*~
*.swp
*.swo

# compressed files
*.gz
# Documentation and automatically generated files
doc/chap*
doc/title.xml
doc/_*.xml
doc/SimplicialSurfaces.tex
doc/_IMAGE*
doc/*.png
doc/manual.pdf
doc/manual.six
tst/*.tst

# allow pre-generated images
!doc/images/*
!doc/tikz-files/*.tikz

# ignore the files that get copied to doc/
doc/_TIKZ_*.tex

# flatex-folder
flatex/.deps/
flatex/Makefile
flatex/Makefile.in
flatex/aclocal.m4
flatex/autom4te.cache/
flatex/compile
flatex/config.guess
flatex/config.status
flatex/config.sub
flatex/configure
flatex/depcomp
flatex/flatex
flatex/flatex.o
flatex/install-sh
flatex/missing

# Automatically generated library stuff
*.bin
*/_index/
*/*/_index/
*/*/*/_index/
*/*/*/*/_index/

# intermediate compilation stuff
*.4ct
*.4tc
*.aux
*.bbl
*.blg
*.css
*.dvi
*.fdb_latexmk
*.fls
*.html
*.idv
*.idx
*.ilg
*.ind
*.js
*.lab
*.lg
*.log
*.nav
*.out
*.pnr
*.snm
*.synctex.gz
*.tmp
*.toc
*.vrb
*.xref

# changed files
*~
*.swp
*.swo

# compressed files
*.gz
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ doc/manual.six: makedoc.g \
doc/PolygonalStructuresDefinitions.xml \
doc/ExampleImplementations.xml \
doc/ExampleApplications.xml \
doc/Image_* \
doc/tikz-files/Image_* \
doc/TableOfContents.autodoc\
doc/TikZHeader.tex
doc/tikz-files/TikZHeader.tex
gap makedoc.g

flatex/flatex: flatex/flatex.c \
Expand Down
28 changes: 22 additions & 6 deletions doc/ExampleImplementations.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,18 @@
the polygonal complex consisting of these faces.
<Par/>
We illustrate this with an octahedron (<Ref Subsect="Octahedron"/>):
<Alt Only="TikZ">
\input{_TIKZ_Octahedron_constructor.tex}
</Alt>
<Example>
<Alt Only="HTML">
&lt;br>&lt;img src="./images/_Wrapper__TIKZ_Octahedron_constructor.svg"> &lt;/img> &lt;br>
</Alt>
<Alt Only = "LaTeX">
\begin{center}
\includegraphics{images/_Wrapper__TIKZ_Octahedron_constructor.pdf}
\end{center}
</Alt>
<Alt Only = "Text">
Image omitted in terminal text
</Alt>
<Example>
gap&gt; octa := Octahedron();;
gap&gt; octa = StronglyConnectedComponentOfFace(octa,7);
true
Expand Down Expand Up @@ -197,8 +205,16 @@ true
incident faces.
<Par/>
We illustrate it on the example of a pyramid with square base.
<Alt Only="TikZ">
\input{Image_SquarePyramid.tex}
<Alt Only="HTML">
&lt;br>&lt;img src="./images/_Wrapper_Image_SquarePyramid.svg"> &lt;/img> &lt;br>
</Alt>
<Alt Only = "LaTeX">
\begin{center}
\includegraphics{images/_Wrapper_Image_SquarePyramid.pdf}
\end{center}
</Alt>
<Alt Only = "Text">
Image omitted in terminal text
</Alt>
<Example>
gap&gt; pyr := PolygonalSurfaceByVerticesInFaces(
Expand Down
Loading

0 comments on commit 2c541e4

Please sign in to comment.