minor fixes...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-03-16 00:28:15 +03:00
parent 8c78f72263
commit 6ba981e3dd
2 changed files with 9 additions and 8 deletions

View File

@ -4,9 +4,9 @@ Support scripts
<!-- TOC depthfrom:2 --> <!-- TOC depthfrom:2 -->
- [make-spreads.sh](#make-imagessh) - [make-spreads.sh](#make-spreadssh)
- [The process](#the-process) - [Theory of operation](#theory-of-operation)
- [Automatic template inferenceing](#automatic-template-inferenceing) - [Automatic template inferencing](#automatic-template-inferencing)
- [Manual template selection](#manual-template-selection) - [Manual template selection](#manual-template-selection)
- [Template tweaking](#template-tweaking) - [Template tweaking](#template-tweaking)
- [Manual spread layouts](#manual-spread-layouts) - [Manual spread layouts](#manual-spread-layouts)
@ -106,7 +106,7 @@ $ make-spreads.sh --help
``` ```
### The process ### Theory of operation
<!-- XXX spreads vs. pages --> <!-- XXX spreads vs. pages -->
@ -394,6 +394,7 @@ $ cls2tex.sh --help
``` ```
The `--help` says it all: The `--help` says it all:
<!-- :r !cl2tex.sh --help -->
``` ```
Generate docs from latex package/class Generate docs from latex package/class
@ -411,8 +412,8 @@ This will:
- read the INPUT - read the INPUT
- keep lines starting with \def\<module-name>@[A-Z]\+ - keep lines starting with \def\<module-name>@[A-Z]\+
- keep lines starting with '%%' - keep lines starting with '%%'
- %%%%% Text -> \subsection(Text) - %%%%% Text -> \subsection{Text}
- %%%% Text -> \section(Text) - %%%% Text -> \section{Text}
- %% >> code -> \begin{verbatim}code\end{verbatim} - %% >> code -> \begin{verbatim}code\end{verbatim}
- write the result to OUTPUT - write the result to OUTPUT

View File

@ -26,8 +26,8 @@ printhelp(){
echo " - read the INPUT" echo " - read the INPUT"
echo " - keep lines starting with \\def\\<module-name>@[A-Z]\\+" echo " - keep lines starting with \\def\\<module-name>@[A-Z]\\+"
echo " - keep lines starting with '%%'" echo " - keep lines starting with '%%'"
echo " - %%%%% Text -> \\subsection(Text)" echo " - %%%%% Text -> \\subsection{Text}"
echo " - %%%% Text -> \\section(Text)" echo " - %%%% Text -> \\section{Text}"
echo " - %% >> code -> \\begin{verbatim}code\\end{verbatim}" echo " - %% >> code -> \\begin{verbatim}code\\end{verbatim}"
echo " - write the result to OUTPUT" echo " - write the result to OUTPUT"
echo echo