blob: 963b4e40a2198a847a8f2c5b4261d37ab563d2d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
% ltx2html.sty --- Some useful commands and environments when using
% ltx2x to convert from LaTeX to HTML tagging.
%
% Author: Peter Wilson August 1996
%
\ProvidesPackage{ltx2html}[1996/08/29 ltx2x HTMLing]
% \typeout{ltx2html.sty [1996/08/29 ltx2x HTMLing]}
\RequirePackage{html} % the package file for the Perl program
% latex2html
% The document title for the WWW browser.
% If used, must be placed in the preamble.
\newcommand{\mltitle}[1]{}
% argument is for processing by LaTeX only
\providecommand{\latex}[1]{#1}
% argument is for HTML processing only
\providecommand{\html}[1]{}
% print argument as an SGML/HTML start tag
\newcommand{\ST}[1]{\texttt{<#1>}}
% print argument as an SGML/HTML end tag
\newcommand{\ET}[1]{\texttt{</#1>}}
% print HTML special characters
\newcommand{\Amp}{\&}
\newcommand{\GT}{\texttt{>}}
\newcommand{\LT}{\texttt{<}}
\newcommand{\HASH}{\#}
% treat contents as a LaTeX comment but
% translate contents into an HTML "verbatim" environment
% Use as: \begin{htmlverbatim} ... \end{htmlverbatim}
\excludecomment{htmlverbatim}
\endinput
|