{"id":4776,"date":"2016-12-03T21:33:20","date_gmt":"2016-12-03T13:33:20","guid":{"rendered":"https:\/\/lttt.blog.ustc.edu.cn\/?p=4776"},"modified":"2019-10-27T09:41:35","modified_gmt":"2019-10-27T01:41:35","slug":"the-users-manual-of-latex2html-2-0-0","status":"publish","type":"post","link":"https:\/\/lttt.vanabel.cn\/?p=4776","title":{"rendered":"The User&#8217;s Manual of LaTeX2HTML 2.0.0"},"content":{"rendered":"<p>\\title{The User&#8217;s Manual of LaTeX2HTML 2.0.0}<br \/>\n\\author{Van Abel}<br \/>\n\\date{\\today}<br \/>\n\\address{USTC}<br \/>\n\\email{van141.abel(at)gmail.com}<br \/>\n\\begin{abstract}<br \/>\nThe LaTeX2HTML wordpress plugin is designed to make you publish a post from your latex document more quickly and conveniently. After a little pre-definition in your latex document, I find it works lovely.<br \/>\n\\end{abstract}<br \/>\n<!--more--><\/p>\n<p>\\tableofcontents<br \/>\n\\section{How to Write the Basic Information of Your Post}\\label{sec:1}<br \/>\nJust as in LaTeX, you can use commands such as:\\verb|\\title|, \\verb|\\author|, \\verb|\\address|, \\verb|\\date|, \\verb|\\keywords| and the environment \\verb|abstract| to produce the basic information of your post. These command has the same meaning as in LaTeX, what&#8217;s more,<br \/>\n\\begin{itemize}<br \/>\n\\item you can use \\verb|&#124;\\verb|today| in \\verb|\\date|<br \/>\n\\item you can use \\verb|\\emph| to emphasis some thing<br \/>\n\\item you can use \\verb|&#124;\\verb|tableofcontents| to get the table of contents<br \/>\n\\item you can use \\verb|\\email| or \\verb|\\mailto| to set your mail, the first will be centered<br \/>\n\\end{itemize}<br \/>\n\\section{How to Write Section, Subsection and Subsubsection}<\/p>\n<p>Just like in Latex, isn&#8217;t it? Replace \\verb|\\section| with \\verb|\\subsection| and \\verb|\\subsubsection| if you want to write subsection and subsubsection, respectively. How about \\verb|\\subsubsubsection|? Sorry, there is no such command.<\/p>\n<p>Maybe you are still wandering: how do I get the list of contents by \\verb|&#124;\\verb|tableofcontents| command, one key factor is that I added a link just before each section and subsection, by which you can refer to it. See the referring back to \\autoref{sec:7.3} for detail.<br \/>\n\\section{Itemize and Enumerate: How to List Stuffs}<br \/>\nAs you have already saw, we can list the element with the same syntax as latex. What&#8217;s more, it support nested list:<br \/>\nWhat&#8217;s more you can nest them, for example<br \/>\n\\begin{itemize}<br \/>\n\\item Firstly<br \/>\n\\item Secondly<br \/>\n\\begin{itemize}<br \/>\n\\item The first item of Second<br \/>\n\\item The second item of Second<br \/>\n\\begin{itemize}<br \/>\n\\item The first item of the third item of second item<br \/>\n\\end{itemize}<br \/>\n\\end{itemize}<br \/>\n\\end{itemize}<\/p>\n<p>\\verb|Enumerate| works almost the same as \\verb|itemize|, except the style is different. For example replace \\verb|enumerate| in the above example with \\verb|enumerate|, then we get:<br \/>\n\\begin{enumerate}<br \/>\n\\item Firstly<br \/>\n\\item Secondly<br \/>\n\\begin{enumerate}<br \/>\n\\item The first item of Second<br \/>\n\\item The second item of Second<br \/>\n\\begin{enumerate}<br \/>\n\\item The first item of the third item of second item<br \/>\n\\end{enumerate}<br \/>\n\\end{enumerate}<br \/>\n\\end{enumerate}<br \/>\n\\section{The Footnote and Hyperlinks}<br \/>\nYou can use \\verb|\\footnote| in latex2html with the version newer than 2.1.2, which will transform footnote into superscript with a hyperlink to its content at the end of post. Also \\verb|\\footnotemark| and \\verb|\\footnotetext| are supported (they are used when footnote is used in formula), but as MathJax can\u2019t parse math when there are html tags, the footnote in formula is not hyperlinked (I add blue color to distinguish it).<\/p>\n<p>In the new version 2.3.5, the command \\verb|\\url{hyper-link}| and \\verb|\\href{hyper-link}{hyper-link-text}| are supported, which will create hyper-link to the link and the linked text respectively.<br \/>\n\\section{The Color Scheme: How to Colorize You Content}<br \/>\nAs we have already showed that you can emphasis you content by \\verb|\\emph|, one other way is use \\verb|\\underline|. Besides, there is a more powerful scheme, now you emphasis some content with different colors, even for formulae.<br \/>\nFirstly, you must decide which class your content belonged to, the \\textcolor{green}{text} content or the \\textcolor{green}{mathematics} content, since these two classes are processed by different scheme, \\textcolor{green}{text} is by \\verb|latex2html| and \\textcolor{green}{mathematics} by \\verb|mathjax|.<br \/>\nJust as in Latex, the you can set a color for your formula by \\verb|\\color|\\verb|{color_name}|\\verb|{color_formula}|. For example<br \/>\n&#91;<br \/>\n\\color{red}{a+b},\\quad\\color{blue}{a+b},\\quad\\color{green}{a+b}<br \/>\n&#93;<br \/>\n&#91;<br \/>\n\\frac{\\color{cyan}{a+b}}{c+d}, \\quad<br \/>\n\\frac{a}{\\color{magenta}{a+b}},\\quad<br \/>\n\\frac{a}{a+\\color{yellow}{b}}<br \/>\n&#93;<br \/>\nOn the other hand, if you want to give color for your \\textcolor{green}{text} content, then you should use<br \/>\n\\verb|\\textcolor{color_name}|\\verb|{color_contents}|, for example<br \/>\n\\textcolor{red}{red} and \\textcolor{blue}{blue} and \\textcolor{green}{green} and \\textcolor{cyan}{cyan} and \\textcolor{magenta}{magenta} and \\textcolor{yellow}{yellow}.<br \/>\n\\section{The Figure Environment}<br \/>\nIn LaTeX2HTML version 2.1.0, I have add the ability to proceed <code>figure<\/code> environment. As an example, you can use<\/p>\n<pre class=\"lang:tex decode:true \" >\\begin{figure}[!htbp]\n\\centering\n\\includegraphics{myfig.png}\n\\caption{Just a test}\n\\label{myfig}\n\\end{figure}\nFrom the \\autoref{myfig} we can see\u2026<\/pre>\n<p>Two important things to be noted:<br \/>\n\\begin{enumerate}<br \/>\n\\item You must use the fullname of the figure, i.e. <code>myfig.png<\/code>; NOT <code>myfig<\/code>, since in the later case, we don&#8217;t know which figure is to be inserted here;<br \/>\n\\item after that you MUST upload the exact figure (named <code>myfig.png<\/code> in the example) to your WordPress as usual. All the later process is handled by LaTeX2HTML plugin, you can just preview to see the results.<br \/>\n\\end{enumerate}<br \/>\n\\section{How to Write a Theorem}<br \/>\nThere are two group of environments, which process the content such as \\emph{Theorem}. One is used for a post, in which you mainly state something formally, just like you do in a research paper; The other is used for problem-discussion situation, in which you ask questions and hope for some examples and answers.<br \/>\nOf course the border is not so strict, for example the \\emph{examp} environment can used in both cases.<br \/>\nHere are the complete list of environments you can use (The example will be pop up at some time later), I take first few words of a environment to represent it, for example \\emph{thm} for \\emph{Theorem}:<br \/>\n\\begin{itemize}<br \/>\n\\item First group: \\verb|defn|(Definition), \\verb|lem|(Lemma), \\verb|prop|(Proposition), \\verb|thm|(Theorem), \\verb|cor|(Corollary), \\verb|rem|(Remark), \\verb|excs|(Exercise), \\verb|proof|(Proof)<br \/>\n\\item Second group: \\verb|prob|(Problem), \\verb|answer|(Answer)<br \/>\n\\item Mixed: \\verb|examp|(Example), \\verb|quote|(Quotation)<br \/>\n\\end{itemize}<br \/>\nI will go through the two group one by one, let&#8217;s begin with the first group.<br \/>\n\\subsection{Definition, Lemma, Proposition, Theorem, Corollary, Remark, Proof}<br \/>\nFirstly, you should keep in mind that: the distinguish between \\emph{command} and \\emph{environment} is<br \/>\n\\begin{quote}<br \/>\nA \\verb|command| begin with a \\verb|&#124; and followed with the \\verb|name|, at last the content of command. It looks like \\verb|&#124;\\verb|emph{text}|; A \\emph{environment} must be wrapped by \\verb|begin| and \\verb|end|.<br \/>\n\\end{quote}<br \/>\n\\subsubsection{Basic Usage of Environments}<br \/>\nHere is an example of \\verb|definition| environment:<br \/>\n\\begin{defn}\\label{defn:1}<br \/>\nSuppose that $(X,\\mathcal M)$ and $(Y,\\mathcal N)$ are measurable spaces, and $f:X\\to Y$ is a map. We call $f$ is \\emph{measurable} if for every $B\\in\\mathcal N$ the set $f^{-1}(B)$ is in $\\mathcal M$.<br \/>\n\\end{defn}<br \/>\nThe other is similar, just replace \\verb|defn| with any one of the above environment:<br \/>\n\\begin{rem}<br \/>\nIf $Y$ is a topological space, and $\\mathcal N$ is the $\\sigma$-algebra of Borel sets, then $f$ is measurable if and only if the following condition satisfied:<br \/>\n\\begin{itemize}<br \/>\n\\item For every open set $V$ in $Y$, the inverse image $f^{-1}(V)$ is measurable.<br \/>\n\\end{itemize}<br \/>\n\\end{rem}<br \/>\n\\subsubsection{Assign a Name for Your Theorem}<br \/>\nYou can even assign a name to these environment, just as you did in latex, use \\verb|[text]| just behind the environment, for example:<br \/>\n\\begin{lem}[fundamental lemma of integration]<br \/>\nLet $\\set{f_n}$ be a Cauchy sequence of step mappings. Then there exists a subsequence which converges pointwise almost everywhere, and satisfies the additional property: given $\\eps$ there exists a set $Z$ of measure $&lt; \\eps$ such that this subsequence converges absolutely and uniformly outside $Z$.<br \/>\n\\end{lem}<br \/>\n\\subsubsection{The Proof Environment}<br \/>\nThe following are the \\verb|proof| environment, and some more examples, if you are impatient to other contents, then just skip this subsection by click \\autoref{sec:6.2}.<br \/>\n\\begin{proof}<br \/>\nFor each integer $k$ there exists $N_k$ such that if $m,n\\geq N_k$, then<br \/>\n&#91;<br \/>\n&#124;f_m-f_n&#124;_1&lt; \\frac{1}{2^{2k}}.<br \/>\n&#93;<br \/>\nWe let our subsequence be $g_k=f_{N_k}$, taking the $N_k$ inductively to be strictly increasing. Then we have for all $m,n$:<br \/>\n&#91;<br \/>\n&#124;g_m-g_n&#124;_1 &#93;<br \/>\nWe shall show that the series<br \/>\n&#91;<br \/>\ng_1(x)+\\sum_{k=1}^\\infty\\left(g_{k+1}(x)-g_k(x)\\right)<br \/>\n&#93;<br \/>\nconverges absolutely for almost all $x$ to an element of $E$, and in fact we shall prove that this convergence is uniform except on a set of arbitrarily small measure.<br \/>\nLet $Y_n$ be the set of $x\\in X$ such that<br \/>\n&#91;<br \/>\n|g_{n+1}(x)-g_n(x)|\\geq\\frac{1}{2^n}.<br \/>\n&#93;<br \/>\nSince $g_n$ and $g_{n+1}$ are step mappings, it follows that $Y_n$ has finite measure. On $Y_n$ we have the inequality<br \/>\n&#91;<br \/>\n\\frac{1}{2^n}\\leq|g_{n+1}-g_n|<br \/>\n&#93;<br \/>\nwhence<br \/>\n&#91;<br \/>\n\\frac{1}{2^n}\\mu(Y)=\\int_{Y_n}\\frac{1}{2^n}\\leq\\int_X|g_{n+1}-g_{n}|\\leq\\frac{1}{2^{2n}}.<br \/>\n&#93;<br \/>\nHence<br \/>\n&#91;<br \/>\n\\mu(Y_n)\\leq\\frac{1}{2^n}.<br \/>\n&#93;<br \/>\nLet<br \/>\n&#91;<br \/>\nZ_n=Y_n\\cup Y_{n+1}\\cup\\cdots.<br \/>\n&#93;<br \/>\nThen<br \/>\n&#91;<br \/>\n\\mu(Z_n)\\leq \\frac{1}{2^{n-1}}.<br \/>\n&#93;<br \/>\nIf $x\\not\\in Z_n$, then for $k\\geq n$ we have<br \/>\n&#91;<br \/>\n|g_{k+1}(x)-g_k(x)| &#93;<br \/>\nand from this we conclude that our series<br \/>\n&#91;<br \/>\n\\sum_{k=n}^\\infty\\left(g_{k+1}(x)-g_{k}(x)\\right)<br \/>\n&#93;<br \/>\nis absolutely and uniformly convergent, for $x\\not\\in Z_n$. This proves the statement concerning the uniform convergence. If we let $Z$ be the intersection of all $Z_n$, then $Z$ has measure $0$, and if $x\\not\\in Z$, then $x\\not\\in Z_n$ for some $n$, whence our series converges for this $x$. This proves the lemma.<br \/>\n\\end{proof}<br \/>\n\\subsubsection{More Examples of Environments}<br \/>\n\\begin{thm}<br \/>\nLet $f_n$ be a Cauchy sequence in $\\mathcal L^1$ which is $L^1$-convergent to an element $f$ in $\\mathcal L^1$. Then there exists a subsequence which converges to $f$ almost everywhere, and also such that given $\\eps$, there exists a set $Z$ of measure $&lt; \\eps$ such that the convergence is uniform on the complement of $Z$.<br \/>\n\\end{thm}<br \/>\n\\begin{cor}<br \/>\nAn element $f\\in\\mathcal L^1$ has seminorm $&#124;f&#124;_1=\\int_X|f|\\rd\\mu=0$ if and only if $f$ is equal to $0$ almost everywhere.<br \/>\n\\end{cor}<br \/>\n\\begin{prop}[Monotone Convergence Theorem]\\label{prop:4}<br \/>\nLet $\\set{f_n}$ be an increasing (resp. decreasing) sequence of real valued functions in $\\mathcal L^1$ such that the integrals<br \/>\n&#91;<br \/>\n\\int_X f_n\\rd\\mu<br \/>\n&#93;<br \/>\nare bounded. Then $\\set{f_n}$ is a Cauchy sequence, and is both $\\mathcal L^1$ and almost everywhere convergent to some function $f\\in\\mathcal L^1$.<br \/>\n\\end{prop}<br \/>\n\\subsection{The Problem, Answer Environments}\\label{sec:6.2}<br \/>\nThe second group of environments are provided for discussion, after all, this is a discussion platform. They are: \\verb|prob| for Problem, \\verb|examp| for Example, and \\verb|answer| for Answer.<br \/>\nIt almost works the same as the first group, for example<br \/>\n\\begin{prob}[Egoroff&#8217;s theorem]<br \/>\nAssume that $\\mu$ is $\\sigma$-finite. Let $f:X\\to E$ be a map and assume that $f$ is the pointwise limit of a sequence of simple maps $\\set{\\varphi_n}$. Given $\\eps$, show that there exists a set $Z$ with $\\mu(Z)&lt; \\eps$ such that the convergence of $\\set{\\varphi_n}$ is uniform on the complement of $Z$.<br \/>\n\\end{prob}<br \/>\nBut, the differences between them is that, the \\verb|answer| is numbered with \\verb|prob| (the \\verb|examp|, \\verb|excs|, \\verb|rem| will numbered independently), to see this, for example:<br \/>\n\\begin{answer}<br \/>\nAssume first that $\\mu(X)$ is finite. Let $A_k$ be the set where $|f|\\geq k$. The intersection of all $A_k$ is empty so their measures tend to $0$. Excluding a set of small measure, you can assume that $f$ is bounded, in which case $f$ is in $\\mathcal L^1(\\mu)$ and you can use the fundamental lemma of integration.<br \/>\n\\end{answer}<br \/>\n\\begin{answer}<br \/>\nThis is another answer for the problem.<br \/>\n\\end{answer}<br \/>\nYou should note that the number of answer is reset to 1 by \\verb|prob|, of course, more sensible. For example:<br \/>\n\\begin{prob}<br \/>\nWhy we should firstly process the positive measurable functions, then the real measurable functions and at last the complex measurable functions for the integral of measurable functions?<br \/>\n\\end{prob}<br \/>\n\\begin{answer}\\label{answer:2.1}<br \/>\nIn fact, you can define the integral of complex function directly.<br \/>\n\\end{answer}<br \/>\n\\subsection{The Exercise Environment}<br \/>\nMaybe, at somewhere, you want the reader consider about something, then you can use \\verb|excs| environment for Exercise. <em>Please keep in mind that it will have independent numbering, just as \\verb|prob|, but will \\emph{not reset} the number of answer<\/em>. Here is an example:<br \/>\n\\begin{excs}<br \/>\nSuppose $(X,\\mu)$ is a measure space, and that $f$ is measurable, then $\\int_X f\\rd \\mu=0$ if and only if $f\\equiv0$ almost everywhere.<br \/>\n\\end{excs}<br \/>\n\\subsection{The Quote Environment}<br \/>\nSometimes, there are some words or comments on the content, it is like a remark, but it is not so formal. And, if you are write a lecture notes, these words may be the lecturer said before or after an important thing, such as theorems. I have defined a new environment \\verb|quote| to deal with these stuff. For example:<br \/>\nBefore the theorem<br \/>\n\\begin{thm}<br \/>\nLet $\\Omega\\subset\\R^n$ and $u:\\Omega\\to\\R$, then<br \/>\n\\begin{enumerate}<br \/>\n\\item If $u\\in C^2(\\Omega)$ is harmonic in $\\Omega$, then $u$ satisfies MVP;<br \/>\n\\item If $u\\in C(\\Omega)$ satisfies MVP, then $u$ is smooth and harmonic.<br \/>\n\\end{enumerate}<br \/>\n\\end{thm}<br \/>\nwe want to add a comment on it, then you can use the \\verb|quote| environment<br \/>\n\\begin{quote}<br \/>\nA function satisfying mean-value properties is only required to be continuous. However, a harmonic function is required to be $C^2$. Thus, the equivalence of this two kind of functions will be significant.<br \/>\n\\end{quote}<br \/>\n\\section{Auto Numbering and Referring Back}<br \/>\nThe plugin supports two groups of referring back, the first is for \\verb|section| and theorem environment e.g. \\verb|thm|. The second is done by mathjax, which support math formulae auto-numberring .<br \/>\n\\subsection{Auto Numbering and Referring Back to Equations}\\label{sec:6.1}<br \/>\nAll the \\verb|mathematical| environments: \\verb|equation|, \\verb|align|, \\verb|multline|, \\verb|gather| will auto-numbering. For example<br \/>\n\\begin{equation}\\begin{cases}<br \/>\n3=2x+y&#92;<br \/>\n3=y+2x\\end{cases}<br \/>\n\\end{equation}<br \/>\nAn example of \\verb|multline|, which will make the last line flush right:<br \/>\n\\begin{multline}\\label{eq:2}<br \/>\n\\int_a^b \\biggl&#123; \\int_a^b [ f(x)^2 g(y)^2 + f(y)^2 g(x)^2 ]<br \/>\n-2f(x) g(x) f(y) g(y) \\,dx \\biggr&#125; \\,dy &#92;<br \/>\n=\\int_a^b \\biggl&#123; g(y)^2 \\int_a^b f^2 + f(y)^2<br \/>\n\\int_a^b g^2 &#8211; 2f(y) g(y) \\int_a^b fg \\biggr&#125; \\,dy<br \/>\n\\end{multline}<br \/>\nThe next example will show how to numbered the equation at a given line with \\verb|\\tag{4.a}|:<br \/>\n\\begin{gather}<br \/>\n\\begin{split}<br \/>\n\\varphi(x,z)<br \/>\n&amp;= z \u2013 \\gamma_{10} x \u2013 \\sum_{m+n\\ge2} \\gamma_{mn} x^m z^n&#92;<br \/>\n&amp;= z \u2013 M r^{-1} x \u2013 \\sum_{m+n\\ge2} M r^{-(m+n)} x^m z^n<br \/>\n\\end{split}\\tag{4.a}\\label{eq:4a}&#92;<br \/>\n\\begin{split}<br \/>\n\\zeta^0 &amp;= (\\xi^0)^2, &#92;<br \/>\n\\zeta^1 &amp;= \\xi^0 \\xi^1<br \/>\n\\end{split}\\notag<br \/>\n\\end{gather}<br \/>\n\\subsubsection{How to Refer back to Equation Number}<br \/>\nIf you want to refer the equation, you can add a label \\verb|\\label{eq:4a}|, and rerer as \\verb|\\eqref{eq:4a}|, it looks as \\eqref{eq:4a}.<br \/>\n\\subsubsection{My Suggestion on &#8220;How to Write Equations&#8221;}<br \/>\n\\begin{enumerate}<br \/>\n\\item if you use \\verb|&gt;| or \\verb|&lt;| for \\verb|greater| and \\verb|lesser| in math, please add a blank-space before \\verb|&gt;| and a blank-space after \\verb|&lt; |. Or you will make the HTML translation program confused, since \\emph{} are standard tags for HTML language(code).<br \/>\n\\item use\\verb|$$| for inline math<br \/>\n\\item use\\verb|&#91;|\\verb|&#93;| for oneline unnumbered display math<br \/>\n\\item use star version for multiline unnumbered display math, for example, use \\verb|gather*| environment for centered multiline equations<br \/>\n\\item use \\verb|equation| environment for oneline numbered display math<br \/>\n\\item use \\verb|align| environment for multiline numered display math, if you want make them aligned at some position( use &amp; to set the point of align)<br \/>\n\\end{enumerate}<br \/>\n\\subsection{Auto Numbering and Referring Back to Environments}<br \/>\n\\subsubsection{Auto Numbering of Environments}\\label{sec:621}<br \/>\nAll the environments except \\verb|proof| are auto numbered by \\verb|latex2html|, and the \\verb|rem|, \\verb|prob|, \\verb|excs|, \\verb|claim| are numbered independently, what&#8217;s more, \\verb|answer|&#8217;s number will be reset by \\verb|prob|. The other environment will numbered continuously in one post (on one page, which means, if you use the \\verb|&lt;!&#8211;nextpage&#8211;&gt;| to have another page, then the number will all over begin from 1, if you consider this as an bug, sorry, I can&#8217;t fix it.)<br \/>\n\\subsubsection{Referring Back to Environments}<br \/>\nYou can refer to the \\verb|Theorem|, \\verb|Lemma|, \\verb|Corollary|, \\verb|Definition|, \\verb|Proposition|, \\verb|Remark|, \\verb|Problem|, \\verb|Exercise|, and \\verb|Answer| environments by:<br \/>\n\\begin{itemize}<br \/>\n\\item first add a \\verb|\\label{thm:labnum}|<br \/>\n\\item and use \\verb|\\autoref{thm:labnum}| or \\verb|\\ref{thm:labnum}| to refer back<br \/>\n\\end{itemize}<br \/>\nFrom \\autoref{defn:1} we know that&#8230;<br \/>\nFrom \\autoref{prop:4} we know that&#8230;<br \/>\nFrom \\autoref{answer:2.1} we know that&#8230;<br \/>\n\\subsection{Referring Back to Section}\\label{sec:7.3}<br \/>\nYou can use \\verb|\\autoref|\\verb|{sec:1}| to refer back to \\autoref{sec:1}, and \\verb|\\ref|\\verb|{sec:6.1}| to refer back to Subsection 1 of Section 6, which will looks like \\ref{sec:6.1}, and \\verb|\\autoref|\\verb|{sec:621}| to refer back to Subsubsection 1 of Subsection 2 of Section 6, which will looks like \\autoref{sec:621}.<br \/>\n\\section{BibTeX Citations}<br \/>\nThe main new feature of version 2.0.0 is add the BibTeX citation support. By which, you can cite references like in LaTeX.<br \/>\n\\subsection{How to Add BibTeX Data}<br \/>\nTo add the bibtex data, just turn to the \\verb|LaTeX2HTML| setting page, under the \\verb|BibTeX| table, you can paste you bibtex data into the input box.<\/p>\n<p>I have add an example data. Also try to \\emph{double click} to restore the last content in the input box.<br \/>\n\\subsection{How to Cite}<br \/>\n\\verb|LaTeX2HTML| support \\verb|\\nocite|, \\verb|\\cite| and \\verb|\\citeauthor|, all of them require the exactly \\verb|bibkey| (which means \\verb|&#124;\\verb|nocite{*} |will not work and it is \\underline{case sensative}).<\/p>\n<p>It also support \\verb|\\citelist| of amsrefs.<br \/>\n\\section{Last Words and Feed Back}<br \/>\nThis document contains the usage of the plugin \\emph{latex2html}, and if you find any errors, or have any suggestions even bugs of the plugin, you can leave a word here, or sent a mail to me: \\mailto{van141.abel(at)gmail.com}.<\/p>\n<p>It takes me about one month to write the plugin, I&#8217;m too tired to feel glad when I finally finished it. I don&#8217;t know whether it will help you a litter to post mathematics with latex language or not, but if it do have any, I will fell much better.<br \/>\n\\subsection{How to Jump Between Links}<br \/>\nIf you have just click on a link, then you can go back where you were just by \\emph{Alt+\u2190}<br \/>\n\\section{How to Get it?}<br \/>\nTo get it, visit the plugin in wordpress: <a href=\"https:\/\/wordpress.org\/plugins-wp\/latex2html\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/wordpress.org\/plugins-wp\/latex2html\/<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\\title{The User&#8217;s Manual of LaTeX2 &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"more-link\" href=\"https:\/\/lttt.vanabel.cn\/?p=4776\"> <span class=\"screen-reader-text\">The User&#8217;s Manual of LaTeX2HTML 2.0.0<\/span> \u9605\u8bfb\u66f4\u591a &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[535,549,589],"class_list":["post-4776","post","type-post","status-publish","format-standard","hentry","category-latex2html","tag-latex2html","tag-mathjax","tag-plugin"],"_links":{"self":[{"href":"https:\/\/lttt.vanabel.cn\/index.php?rest_route=\/wp\/v2\/posts\/4776","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lttt.vanabel.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lttt.vanabel.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lttt.vanabel.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lttt.vanabel.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4776"}],"version-history":[{"count":2,"href":"https:\/\/lttt.vanabel.cn\/index.php?rest_route=\/wp\/v2\/posts\/4776\/revisions"}],"predecessor-version":[{"id":5260,"href":"https:\/\/lttt.vanabel.cn\/index.php?rest_route=\/wp\/v2\/posts\/4776\/revisions\/5260"}],"wp:attachment":[{"href":"https:\/\/lttt.vanabel.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4776"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lttt.vanabel.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4776"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lttt.vanabel.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4776"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}