X-VM-v5-Data: ([nil nil nil nil nil nil nil nil nil] ["1859" "Wed" "8" "October" "1997" "09:57:27" "+0100" "David Carlisle" "david@DCARLISLE.DEMON.CO.UK" nil "58" "Re: LaTeX journal and publisher macros" "^Date:" nil nil "10" nil nil nil nil nil] nil) Received: from listserv.gmd.de (listserv.gmd.de [192.88.97.1]) by mail.Uni-Mainz.DE (8.8.5/8.8.5) with ESMTP id MAA04595; Wed, 8 Oct 1997 12:17:02 +0200 (MET DST) Received: from lsv1.listserv.gmd.de by listserv.gmd.de (LSMTP for OpenVMS v1.1a) with SMTP id <10.8A9F53D4@listserv.gmd.de>; Wed, 8 Oct 1997 12:17:00 +0200 Received: from RELAY.URZ.UNI-HEIDELBERG.DE by RELAY.URZ.UNI-HEIDELBERG.DE (LISTSERV-TCP/IP release 1.8b) with spool id 210428 for LATEX-L@RELAY.URZ.UNI-HEIDELBERG.DE; Wed, 8 Oct 1997 12:16:51 +0200 Received: from punt-1.mail.demon.net (punt-1d.mail.demon.net [194.217.242.138]) by relay.urz.uni-heidelberg.de (8.8.7/8.8.7) with SMTP id MAA00357 for ; Wed, 8 Oct 1997 12:16:38 +0200 (MET DST) Received: from dcarlisle.demon.co.uk ([194.222.187.145]) by punt-1.mail.demon.net id aa1125700; 8 Oct 97 10:17 BST Received: by dcarlisle.demon.co.uk id m0xIrvr-000OWIC (Debian Smail-3.2 1996-Jul-4 #2); Wed, 8 Oct 1997 09:57:27 +0100 (BST) Message-ID: Reply-To: Mailing list for the LaTeX3 project In-Reply-To: <199710080039.UAA01177@fenris.math.albany.edu> (message from Mark Steinberger on Tue, 7 Oct 1997 20:39:48 -0400) Date: Wed, 8 Oct 1997 09:57:27 +0100 From: David Carlisle Sender: Mailing list for the LaTeX3 project To: Multiple recipients of list LATEX-L Subject: Re: LaTeX journal and publisher macros Status: R X-Status: X-Keywords: X-UID: 2392 > Many journals these days work from author-created tex files, and a > substantial portion of the authoring community uses amstex. I don't know of any converter myself, but do you have any idea why they still use amstex. In particular if you (or someone else) put the work in to make a converter and then openly advertised submission requirements as `Submit articles in latex or amstex, in the latter case we will convert your document to latex in house before processing it.' Then at least some of those authors may think it worth the trouble to code it up in latex to start with. If they all did that then the effort to write the translater is wasted (or at least did not work in the way intended:-). Also in what way do you want to treat the latex. Do you really want some `external' translator to produce a file marked up with LaTeX (+amsmath package) markup, so you can use it as input to some `LaTeX-like' engines such as latex2html or ScientificWord, or do you `just' want something that will allow documents (or sections of documents) marked up in amstex to be processed directly by LaTeX. To give a couple of example I know more about, on ctan you will find a couple of the latter type of `converters', namely plain.sty and typehtml.sty which allow `plain TeX' and `HTML' markup to be directly processed by LaTeX. so you can go \documentclass{article} \usepackage{plain,typehtml} \begin{document} \begin{plain} \beginsection This is a section Marked up in {\it plain \TeX}. \end{plain} \dohtml

Another section

Marked up in HTML.

\end{document} and LaTeX will do something more or less sensible with it, but I hate to think what latex2html would make of the above. So what kind of converter are you looking for? David