New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
LaTeX2HTML.sh in branches/2017/dev_merge_2017/DOC – NEMO

source: branches/2017/dev_merge_2017/DOC/LaTeX2HTML.sh @ 9360

Last change on this file since 9360 was 9360, checked in by nicolasmartin, 6 years ago

Preamble.tex: some cleaning, use \path instead of \textit for path typeset, testing of 2 different ways to include source code with syntax highlighting, preliminary work on hyphenation to fix overfull errors

  • Property svn:executable set to *
File size: 543 bytes
Line 
1#!/bin/bash
2
3sed -i -e 's#\\documentclass#%\\documentclass#' -e '/{document}/ s/^/%/' TexFiles/Chapters/*.tex
4sed -i    '30,${s#\\subfile{#\\include{#g}'                              NEMO_book.tex
5latex -shell-escape NEMO_book && makeindex NEMO_book && bibtex NEMO_book
6mkdir -p html
7latex2html -local_icons -no_footnode -split 4 -link 2 -dir html $*
8sed -i -e 's#%\\documentclass#\\documentclass#' -e '/{document}/ s/^%//' TexFiles/Chapters/*.tex
9sed -i    '30,${s#\\include{#\\subfile{#g}'                              NEMO_book.tex
10
11exit 0
Note: See TracBrowser for help on using the repository browser.