[tex4ht-commits] [SCM] tex4ht updated: r115 - trunk/doc
karl at gnu.org.ua
karl at gnu.org.ua
Tue Oct 8 20:07:59 CEST 2013
Author: karl
Date: 2013-10-08 21:07:59 +0300 (Tue, 08 Oct 2013)
New Revision: 115
Added:
trunk/doc/cvrblog.sty
trunk/doc/figure.pdf
trunk/doc/figure.png
trunk/doc/figure.tex
trunk/doc/tex4ht-annotated-source.tex
trunk/doc/tex4ht-lettrine.tex
trunk/doc/tex4ht-mcol.tex
trunk/doc/tex4ht-options.tex
trunk/doc/tex4ht.tex
Modified:
trunk/doc/Makefile
trunk/doc/tex4ht-configure1.tex
trunk/doc/tex4ht-configure2.tex
trunk/doc/tex4ht-mathml.tex
trunk/doc/tex4ht-process.tex
Log:
conditionalize topmatter to make all blog articles into chapters
Modified: trunk/doc/Makefile
===================================================================
--- trunk/doc/Makefile 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/Makefile 2013-10-08 18:07:59 UTC (rev 115)
@@ -1,23 +1,29 @@
# $Id$
# This file is public domain. Originally written 2010, Karl Berry.
-texi2pdf = texi2pdf
-#
-makeinfo = makeinfo
-texi2html = $(makeinfo) --html --no-split
-texi2info = $(makeinfo) --no-split
-texi2txt = $(makeinfo) --plaintext --no-split -o $@
+pdflatex = pdflatex -interaction=nonstopmode -file-line-error
-all: tex4ht.info tex4ht.pdf tex4ht.html tex4ht.txt
+tex4ht.pdf: tex4ht.tex cvrblog.sty *.tex
+ $(pdflatex) $<
-tex4ht.html: tex4ht.texi
- $(texi2html) $<
-
-tex4ht.info: tex4ht.texi
- $(texi2info) $<
-
-tex4ht.pdf: tex4ht.texi
- $(texi2pdf) $<
-
-tex4ht.txt: tex4ht.texi
- $(texi2txt) $<
+# texinfo attempt.
+#texi2pdf = texi2pdf
+##
+#makeinfo = makeinfo
+#texi2html = $(makeinfo) --html --no-split
+#texi2info = $(makeinfo) --no-split
+#texi2txt = $(makeinfo) --plaintext --no-split -o $@
+#
+#all: tex4ht.info tex4ht.pdf tex4ht.html tex4ht.txt
+#
+#tex4ht.html: tex4ht.texi
+# $(texi2html) $<
+#
+#tex4ht.info: tex4ht.texi
+# $(texi2info) $<
+#
+#tex4ht.pdf: tex4ht.texi
+# $(texi2pdf) $<
+#
+#tex4ht.txt: tex4ht.texi
+# $(texi2txt) $<
Index: trunk/doc/cvrblog.sty
===================================================================
--- trunk/doc/cvrblog.sty 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/cvrblog.sty 2013-10-08 18:07:59 UTC (rev 115)
Property changes on: trunk/doc/cvrblog.sty
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id
\ No newline at end of property
Index: trunk/doc/figure.pdf
===================================================================
--- trunk/doc/figure.pdf 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/figure.pdf 2013-10-08 18:07:59 UTC (rev 115)
Property changes on: trunk/doc/figure.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/pdf
\ No newline at end of property
Index: trunk/doc/figure.png
===================================================================
--- trunk/doc/figure.png 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/figure.png 2013-10-08 18:07:59 UTC (rev 115)
Property changes on: trunk/doc/figure.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: trunk/doc/figure.tex
===================================================================
--- trunk/doc/figure.tex 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/figure.tex 2013-10-08 18:07:59 UTC (rev 115)
Property changes on: trunk/doc/figure.tex
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Index: trunk/doc/tex4ht-annotated-source.tex
===================================================================
--- trunk/doc/tex4ht-annotated-source.tex 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/tex4ht-annotated-source.tex 2013-10-08 18:07:59 UTC (rev 115)
Property changes on: trunk/doc/tex4ht-annotated-source.tex
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/doc/tex4ht-configure1.tex
===================================================================
--- trunk/doc/tex4ht-configure1.tex 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/tex4ht-configure1.tex 2013-10-08 18:07:59 UTC (rev 115)
@@ -1,6 +1,17 @@
% $Id$
+% Copyright 2009-2013 CV Radhakrishnan.
+% Released under LPPLv1.3+.
+%
+% TeX4ht's \Configure command, part 1.
+\ifx\texhtstandalonedoc1
+\documentclass[a4paper]{article}
+\usepackage{xspace,graphicx,blog}
+\begin{document}
+\section{Introduction}
+\else
\chapter{\TeX4ht \textbackslash{}Configure}
+\fi
The \Verb=\Configure= command is the most powerful user command in
\texht system. It helps to add various kinds of hooks to insert
@@ -697,3 +708,5 @@
{\ifvmode \IgnorePar\fi \EndP
\HCode{</div>}}
\end{verbatim}
+
+\ifx\texhtstandalonedoc1 \end{document}\fi
Modified: trunk/doc/tex4ht-configure2.tex
===================================================================
--- trunk/doc/tex4ht-configure2.tex 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/tex4ht-configure2.tex 2013-10-08 18:07:59 UTC (rev 115)
@@ -1,6 +1,17 @@
% $Id$
+% Copyright 2009-2013 CV Radhakrishnan.
+% Released under LPPLv1.3+.
+%
+% TeX4ht and \Configure, part 2.
+\ifx\texhtstandalonedoc1
+\documentclass[a4paper]{article}
+\usepackage{xspace,graphicx,blog}
+\begin{document}
+\section{Cross-linking}
+\else
\section{\textbackslash{}Configure Cross-linking}
+\fi
\begin{verbatim}
\Link[@1 @2]{@3}{@4}...\EndLink
@@ -202,3 +213,5 @@
\Configure{XrefFile}{foo} \Link...\EndLink
\LoadRef{another-file}
\end{verbatim}
+
+\ifx\texhtstandalonedoc1 \end{document}\fi
Index: trunk/doc/tex4ht-lettrine.tex
===================================================================
--- trunk/doc/tex4ht-lettrine.tex 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/tex4ht-lettrine.tex 2013-10-08 18:07:59 UTC (rev 115)
Property changes on: trunk/doc/tex4ht-lettrine.tex
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/doc/tex4ht-mathml.tex
===================================================================
--- trunk/doc/tex4ht-mathml.tex 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/tex4ht-mathml.tex 2013-10-08 18:07:59 UTC (rev 115)
@@ -1,6 +1,17 @@
% $Id$
+% Copyright 2009-2013 CV Radhakrishnan.
+% Released under LPPLv1.3+.
+%
+% TeX4ht and MathML 3.
-\chapter{MathML 3 and implications on TeX4ht}
+\ifx\texhtstandalonedoc1
+\documentclass[a4paper]{article}
+\usepackage{xspace,blog}
+\begin{document}
+\section{MathML 3 and implications on TeX4ht}
+\else
+\chapter{MathML 3 and implications for \TeX4ht}
+\fi
\leavevmode
\hlink{http://www.w3.org/TR/MathML3/}{\mathml 3} is about to be formalized and going to be released as the new standard for encoding mathematics in web. It differs from the previous standard version 2. The main changes that have a bearing on the functionality of \hlink{http://www.tug.org/tex4ht/}{\texht} are discussed here.
@@ -79,3 +90,5 @@
\ifvmode\leavevmode\fi
\mathml 3 provides support for right to left writing/reading direction whereas previous versions didn't have this functionality. The new specifications provide the user to control both writing directions of the identifiers within a formula and layout direction of the formula itself separately. I am not sure, if this has any influence on the behavior of current version of \texht which is based on \verb+dvi+ files generated by \tex/\latex while support for \verb+xdv+, extended dvi generated by Xe\tex, is still very basic which supports multi-directional scripts.
+
+\ifx\texhtstandalonedoc1 \end{document}\fi
Index: trunk/doc/tex4ht-mcol.tex
===================================================================
--- trunk/doc/tex4ht-mcol.tex 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/tex4ht-mcol.tex 2013-10-08 18:07:59 UTC (rev 115)
Property changes on: trunk/doc/tex4ht-mcol.tex
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Index: trunk/doc/tex4ht-options.tex
===================================================================
--- trunk/doc/tex4ht-options.tex 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/tex4ht-options.tex 2013-10-08 18:07:59 UTC (rev 115)
Property changes on: trunk/doc/tex4ht-options.tex
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/doc/tex4ht-process.tex
===================================================================
--- trunk/doc/tex4ht-process.tex 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/tex4ht-process.tex 2013-10-08 18:07:59 UTC (rev 115)
@@ -1,6 +1,18 @@
% $Id$
+% Copyright 2009-2013 CV Radhakrishnan.
+% Released under LPPLv1.3+.
+%
+% TeX4ht translation process basics.
-\chapter{The Translation Process}
+\ifx\texhtstandalonedoc1
+\documentclass[a4paper]{article}
+\usepackage{xspace,graphicx,blog}
+\begin{document}
+\section{The Translation Process}
+\else
+\chapter{The \TeX4ht Translation Process}
+\fi
+
The system can be activated with a sequence of
commands of the following form, typically embedded within a script.
@@ -62,3 +74,4 @@
\end{itemize}
+\ifx\texhtstandalonedoc1 \end{document}\fi
Index: trunk/doc/tex4ht.tex
===================================================================
--- trunk/doc/tex4ht.tex 2013-10-08 16:53:58 UTC (rev 114)
+++ trunk/doc/tex4ht.tex 2013-10-08 18:07:59 UTC (rev 115)
Property changes on: trunk/doc/tex4ht.tex
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id
\ No newline at end of property
More information about the tex4ht-commits
mailing list