On Fri, Oct 12, 2007 at 09:44:44AM +0000, Aryeh M. Friedman wrote:
> Those who have followed my openoffice to TeX conversion know I am brand
> new to TeX and want to know how to do the following conversions
> (hopefully via some non-interactive process [eg. Make files]):
> 
> TeX-->plain text

detex

> TeX-->HTML

tex4ht

> TeX-->PDF

pdftex

> TeX-->PS

tex + dvips

All these programs come with a modern TeX distribution (I use texlive).

How to use these in a makefile depends on what you have. For a simple
document, processing with the command in question suffices.

But if you use footnotes and references, you need multiple passes to
sort everything out. If your document has an index and a bibliography,
you'll need to use makeindex and bibtex.

Here's an example of a Makefile for a long document of mine;

DOCSRC = logboek_RFS_II.tex
DOCPDF = $(DOCSRC:.tex=.pdf)

SUBDIR = grafieken figuren raytrace lam calc


$(DOCPDF): ${SUBDIR} $(DOCSRC) lbref.bib
        @echo -n "Regenerating the logbook... "
        @! pdflatex --interaction nonstopmode -file-line-error $*.tex | grep -A 
1 '^l\.'
        @makeindex -c -s myindex.ist $*.idx 2>/dev/null
        @bibtex $* >/dev/null
        @pdflatex --interaction batchmode -file-line-error $*.tex >/dev/null
        @makeindex -c -s myindex.ist $*.idx 2>/dev/null
        @pdflatex  --interaction nonstopmode -file-line-error $*.tex >/dev/null
        @! pdflatex  --interaction nonstopmode -file-line-error $*.tex |grep 
Warning
        @rm -f $*.lo* $*.aux $*.ilg $*.ind $*.toc $*.bbl $*.blg
        @echo "Done."

${SUBDIR}::
        @cd ${.TARGET}; make ${.TARGETS}

clean: ${SUBDIR}
        @rm -f *.lo* *.aux *.ilg *.ind *.toc *.bbl *.blg
        @rm -f $(DOCPDF)

This Makefile also runs make in several subdirectories.

Roland
-- 
R.F.Smith                                   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)

Attachment: pgp7tF7g5a2UO.pgp
Description: PGP signature

Reply via email to