Not Obsolete LaTeX to HTML Converter?
up vote
7
down vote
favorite
I am looking to convert LaTeX to HTML. A long time ago (during my thesis, in 2000!), I used Hacha and Hevea ... but obviously, they are no longer maintained, espacialy the windows version.
More recent, google sent me to tex4ht, but it seems that there too, the project is at a standstill (the site indicates that there will soon be opportunities for image management, but it is in 2014, since nothing more) and is poorly documented.
Hence my question: is there a recent solution for converting LaTeX to HTML compatible with Windows? The option that I need are:
- using css
- cutting the document into several file
- allowing the use of picture for navigation (up, prev, next)
- compatible with windows
Christophe
latex2html
New contributor
add a comment |
up vote
7
down vote
favorite
I am looking to convert LaTeX to HTML. A long time ago (during my thesis, in 2000!), I used Hacha and Hevea ... but obviously, they are no longer maintained, espacialy the windows version.
More recent, google sent me to tex4ht, but it seems that there too, the project is at a standstill (the site indicates that there will soon be opportunities for image management, but it is in 2014, since nothing more) and is poorly documented.
Hence my question: is there a recent solution for converting LaTeX to HTML compatible with Windows? The option that I need are:
- using css
- cutting the document into several file
- allowing the use of picture for navigation (up, prev, next)
- compatible with windows
Christophe
latex2html
New contributor
4
tex4ht is maintained very well with a bunch of new features every few weeks!
– Keks Dose
2 hours ago
1
lwarp (which I have not used) tex4ht and latexml are the three main actively maintained ones
– David Carlisle
1 hour ago
add a comment |
up vote
7
down vote
favorite
up vote
7
down vote
favorite
I am looking to convert LaTeX to HTML. A long time ago (during my thesis, in 2000!), I used Hacha and Hevea ... but obviously, they are no longer maintained, espacialy the windows version.
More recent, google sent me to tex4ht, but it seems that there too, the project is at a standstill (the site indicates that there will soon be opportunities for image management, but it is in 2014, since nothing more) and is poorly documented.
Hence my question: is there a recent solution for converting LaTeX to HTML compatible with Windows? The option that I need are:
- using css
- cutting the document into several file
- allowing the use of picture for navigation (up, prev, next)
- compatible with windows
Christophe
latex2html
New contributor
I am looking to convert LaTeX to HTML. A long time ago (during my thesis, in 2000!), I used Hacha and Hevea ... but obviously, they are no longer maintained, espacialy the windows version.
More recent, google sent me to tex4ht, but it seems that there too, the project is at a standstill (the site indicates that there will soon be opportunities for image management, but it is in 2014, since nothing more) and is poorly documented.
Hence my question: is there a recent solution for converting LaTeX to HTML compatible with Windows? The option that I need are:
- using css
- cutting the document into several file
- allowing the use of picture for navigation (up, prev, next)
- compatible with windows
Christophe
latex2html
latex2html
New contributor
New contributor
New contributor
asked 2 hours ago
Christophe Genolini
361
361
New contributor
New contributor
4
tex4ht is maintained very well with a bunch of new features every few weeks!
– Keks Dose
2 hours ago
1
lwarp (which I have not used) tex4ht and latexml are the three main actively maintained ones
– David Carlisle
1 hour ago
add a comment |
4
tex4ht is maintained very well with a bunch of new features every few weeks!
– Keks Dose
2 hours ago
1
lwarp (which I have not used) tex4ht and latexml are the three main actively maintained ones
– David Carlisle
1 hour ago
4
4
tex4ht is maintained very well with a bunch of new features every few weeks!
– Keks Dose
2 hours ago
tex4ht is maintained very well with a bunch of new features every few weeks!
– Keks Dose
2 hours ago
1
1
lwarp (which I have not used) tex4ht and latexml are the three main actively maintained ones
– David Carlisle
1 hour ago
lwarp (which I have not used) tex4ht and latexml are the three main actively maintained ones
– David Carlisle
1 hour ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
9
down vote
It is true that the main page of tex4ht
and documentation seems obsolete, but the project itself is alive, as can be seen from the history of commits and the mailing list. We added MathJax output support recently, for example.
It is also true that the full distribution which is on CTAN haven't been updated since the original author passed away, but the updates go directly to TeX distributions, so it is not necessary to install the distribution by hand, it would be quite complicated process. Everything you need to run updated tex4ht
is included in TeX Live.
At the moment, I am working on a new documentation, which should be big improvement over the current state.
Regarding your question, all of this should be possible with tex4ht
. It produces basic CSS for your document, it also enables to include custom CSS in the generated HTML. It supports cutting of the document to separate files for chapters, sections etc. I haven't tried pictures for prev and next links, but it shouldn't be hard to achieve. It works on Windows when you use TL, but Miktex works as well.
The following file, myconfig.cfg
will split an article on sections:
Preamble{xhtml,2}
Configure{AddCss}{test.css}
Css{body{background-color:green;}}
begin{document}
EndPreamble
The split is requested using 2
option used in the Preamble
command. The Css
command can be used for simple CSS instruction, while the Configure{AddCss}
requires inclusion of an external CSS file.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
9
down vote
It is true that the main page of tex4ht
and documentation seems obsolete, but the project itself is alive, as can be seen from the history of commits and the mailing list. We added MathJax output support recently, for example.
It is also true that the full distribution which is on CTAN haven't been updated since the original author passed away, but the updates go directly to TeX distributions, so it is not necessary to install the distribution by hand, it would be quite complicated process. Everything you need to run updated tex4ht
is included in TeX Live.
At the moment, I am working on a new documentation, which should be big improvement over the current state.
Regarding your question, all of this should be possible with tex4ht
. It produces basic CSS for your document, it also enables to include custom CSS in the generated HTML. It supports cutting of the document to separate files for chapters, sections etc. I haven't tried pictures for prev and next links, but it shouldn't be hard to achieve. It works on Windows when you use TL, but Miktex works as well.
The following file, myconfig.cfg
will split an article on sections:
Preamble{xhtml,2}
Configure{AddCss}{test.css}
Css{body{background-color:green;}}
begin{document}
EndPreamble
The split is requested using 2
option used in the Preamble
command. The Css
command can be used for simple CSS instruction, while the Configure{AddCss}
requires inclusion of an external CSS file.
add a comment |
up vote
9
down vote
It is true that the main page of tex4ht
and documentation seems obsolete, but the project itself is alive, as can be seen from the history of commits and the mailing list. We added MathJax output support recently, for example.
It is also true that the full distribution which is on CTAN haven't been updated since the original author passed away, but the updates go directly to TeX distributions, so it is not necessary to install the distribution by hand, it would be quite complicated process. Everything you need to run updated tex4ht
is included in TeX Live.
At the moment, I am working on a new documentation, which should be big improvement over the current state.
Regarding your question, all of this should be possible with tex4ht
. It produces basic CSS for your document, it also enables to include custom CSS in the generated HTML. It supports cutting of the document to separate files for chapters, sections etc. I haven't tried pictures for prev and next links, but it shouldn't be hard to achieve. It works on Windows when you use TL, but Miktex works as well.
The following file, myconfig.cfg
will split an article on sections:
Preamble{xhtml,2}
Configure{AddCss}{test.css}
Css{body{background-color:green;}}
begin{document}
EndPreamble
The split is requested using 2
option used in the Preamble
command. The Css
command can be used for simple CSS instruction, while the Configure{AddCss}
requires inclusion of an external CSS file.
add a comment |
up vote
9
down vote
up vote
9
down vote
It is true that the main page of tex4ht
and documentation seems obsolete, but the project itself is alive, as can be seen from the history of commits and the mailing list. We added MathJax output support recently, for example.
It is also true that the full distribution which is on CTAN haven't been updated since the original author passed away, but the updates go directly to TeX distributions, so it is not necessary to install the distribution by hand, it would be quite complicated process. Everything you need to run updated tex4ht
is included in TeX Live.
At the moment, I am working on a new documentation, which should be big improvement over the current state.
Regarding your question, all of this should be possible with tex4ht
. It produces basic CSS for your document, it also enables to include custom CSS in the generated HTML. It supports cutting of the document to separate files for chapters, sections etc. I haven't tried pictures for prev and next links, but it shouldn't be hard to achieve. It works on Windows when you use TL, but Miktex works as well.
The following file, myconfig.cfg
will split an article on sections:
Preamble{xhtml,2}
Configure{AddCss}{test.css}
Css{body{background-color:green;}}
begin{document}
EndPreamble
The split is requested using 2
option used in the Preamble
command. The Css
command can be used for simple CSS instruction, while the Configure{AddCss}
requires inclusion of an external CSS file.
It is true that the main page of tex4ht
and documentation seems obsolete, but the project itself is alive, as can be seen from the history of commits and the mailing list. We added MathJax output support recently, for example.
It is also true that the full distribution which is on CTAN haven't been updated since the original author passed away, but the updates go directly to TeX distributions, so it is not necessary to install the distribution by hand, it would be quite complicated process. Everything you need to run updated tex4ht
is included in TeX Live.
At the moment, I am working on a new documentation, which should be big improvement over the current state.
Regarding your question, all of this should be possible with tex4ht
. It produces basic CSS for your document, it also enables to include custom CSS in the generated HTML. It supports cutting of the document to separate files for chapters, sections etc. I haven't tried pictures for prev and next links, but it shouldn't be hard to achieve. It works on Windows when you use TL, but Miktex works as well.
The following file, myconfig.cfg
will split an article on sections:
Preamble{xhtml,2}
Configure{AddCss}{test.css}
Css{body{background-color:green;}}
begin{document}
EndPreamble
The split is requested using 2
option used in the Preamble
command. The Css
command can be used for simple CSS instruction, while the Configure{AddCss}
requires inclusion of an external CSS file.
answered 1 hour ago
michal.h21
29k445103
29k445103
add a comment |
add a comment |
Christophe Genolini is a new contributor. Be nice, and check out our Code of Conduct.
Christophe Genolini is a new contributor. Be nice, and check out our Code of Conduct.
Christophe Genolini is a new contributor. Be nice, and check out our Code of Conduct.
Christophe Genolini is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f464112%2fnot-obsolete-latex-to-html-converter%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4
tex4ht is maintained very well with a bunch of new features every few weeks!
– Keks Dose
2 hours ago
1
lwarp (which I have not used) tex4ht and latexml are the three main actively maintained ones
– David Carlisle
1 hour ago