Workaround the bad interaction between minitoc and NewTocLayout.
Without that \gdef\lciTocOuterState{Right}, the html convertex inserts some
</td><td> tags outside the table of the minitoc.
Example of the bad inserted tags:
</table>
</td><td class="TocGroupOddRight">
We can now write:
\begin{ccDeprecated}
...
\end{ccDeprecated}
or
\begin{ccDeprecated}[3.8]
...
\end{ccDeprecated}
The optional argument is not used, for the moment.
That is *not yet* documented.
Triangulation_euclidean_traits_xy_3.tex is a test case.
- CSSification of the PkgDescription for each package,
- the "Citation Entry" is replace with "BibTex: [cgal:abc-11]" (where
cgal:abc-11 is the bibtex label of the entry),
- attempt to make the tags soup result a more correct HTML.
The new layout for each package entry in the packages overview is the
following:
------------------------------------------------------------------------
| | Title of the package (may be a very long|title that span) |
------------------------------------------------------------------------
| | List of authors, that cannot span if is | Introduced in: |
| CENTER | too long (it wraps) | License: LQPL |
| ED PIC |-----------------------------------------| Depends on: foo |
| TURE C | Summary of the package. Can be a long | bar baz foo_3 |
| ENTERE | text that wraps. | bar_2 Kernel |
| D PICT | | Citation entry: |
| | | Demo: foo bar |
------------------------------------------------------------------------
That is:
- three columns, three rows,
- the title is alone on the first row, and spans in col 2 and 3,
- the picture is alone in the first column, vertically spans in rows 2
and 3, and is vertical centered in its bloc,
- the list of authors is in the middle of the second row,
- the summary is in the middle of the third row,
- the menu in the left column spans in rows 2 and 3.
Explanation:
- the lexer of cc_extract_html sometimes treats "%" as the start of a
comment, unconditionally (whereas the LaTeX parser treats \% as a
macro),
- in HTML, "%" and "%" as equivalent (that is the "HTML Entity Code"
of "%"),
- in cc_extract_html, the "#" must be quoted to "##".
* Fixed incompatibility with variants of grep that do not support -P option (e.g. MacOS X)
* Fixed bug when processing "&&" string
* Fixed bug when a template class nested type is declared with template keyword
* Fixed bug in @commentheading
* Fixed bug in parameters parsing
* Fixed template declaration of nested template classes in \ccParameters section
* In the \ccParameters section, template parameters are now on a unique line to workaround a bug with typedef parameters types
* Added support of `' and '''' to emphasize words (besides "")