Received: from mail.proteosys.com ([213.139.130.197]) by nummer-3.proteosys with Microsoft SMTPSVC(6.0.3790.3959); Sun, 6 Apr 2008 21:35:05 +0200 Received: by mail.proteosys.com (8.13.8/8.13.8) with ESMTP id m36JZ2pY012194 for ; Sun, 6 Apr 2008 21:35:03 +0200 Received: from listserv.uni-heidelberg.de (listserv.uni-heidelberg.de [129.206.100.94]) by relay2.uni-heidelberg.de (8.13.8/8.13.8) with ESMTP id m36JM1GO018530 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 6 Apr 2008 21:22:02 +0200 Received: from listserv.uni-heidelberg.de (localhost.localdomain [127.0.0.1]) by listserv.uni-heidelberg.de (8.13.1/8.13.1) with ESMTP id m36706W2029582; Sun, 6 Apr 2008 21:22:30 +0200 Received: by LISTSERV.UNI-HEIDELBERG.DE (LISTSERV-TCP/IP release 15.5) with spool id 12031 for LATEX-L@LISTSERV.UNI-HEIDELBERG.DE; Sun, 6 Apr 2008 21:22:30 +0200 Received: from relay.uni-heidelberg.de (relay.uni-heidelberg.de [129.206.100.212]) by listserv.uni-heidelberg.de (8.13.1/8.13.1) with ESMTP id m36JMU9a004017 for ; Sun, 6 Apr 2008 21:22:30 +0200 Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.187]) by relay.uni-heidelberg.de (8.14.1/8.14.1) with ESMTP id m36JMNRR005077 for ; Sun, 6 Apr 2008 21:22:28 +0200 Received: from morse.mittelbach-online.de (p4FD44D02.dip.t-dialin.net [79.212.77.2]) by mrelayeu.kundenserver.de (node=mrelayeu3) with ESMTP (Nemesis) id 0MKxQS-1JiaRc3ZKQ-0002NA; Sun, 06 Apr 2008 21:22:25 +0200 Received: by morse.mittelbach-online.de (Postfix, from userid 501) id C984B6376D; Sun, 6 Apr 2008 21:22:21 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <725210.54706.qm@web82003.mail.mud.yahoo.com> X-Mailer: VM 7.19 under Emacs 21.3.1 X-Provags-ID: V01U2FsdGVkX1/mhzgYR2sm7WtVbl+RpGLdj/O08iX23et02b7 n7HWC/3AerPTdzC/FXoyzEP/ZEueqL/vwXZ4/jBG9HgLet0Z4M l5Iw0G0hWmKYPSQnWGz/lMmT4r6t07W X-Spam-Whitelist-Provider: Message-ID: <18425.8941.469405.924847@morse.mittelbach-online.de> Date: Sun, 6 Apr 2008 21:22:21 +0200 Reply-To: Mailing list for the LaTeX3 project Sender: Mailing list for the LaTeX3 project From: Frank Mittelbach Subject: Re: LaTeX3 Plans and objectives To: LATEX-L@LISTSERV.UNI-HEIDELBERG.DE In-Reply-To: <725210.54706.qm@web82003.mail.mud.yahoo.com> Precedence: list List-Help: , List-Unsubscribe: List-Subscribe: List-Owner: List-Archive: X-ProteoSys-SPAM-Score: -102.464 () BAYES_00,FORGED_RCVD_HELO,USER_IN_WHITELIST X-Scanned-By: MIMEDefang 2.64 on 213.139.130.197 Return-Path: owner-latex-l@LISTSERV.UNI-HEIDELBERG.DE X-OriginalArrivalTime: 06 Apr 2008 19:35:05.0247 (UTC) FILETIME=[5085AAF0:01C8981D] Status: R X-Status: X-Keywords: X-UID: 5196 Paul, > Is there some document somewhere which lays out the objectives of the new > system? I have long had some notions which I believe will improve > functionality. Before making them, I would like to see that plans for the > system. my all means make them please. as to your question: objectives for LaTeX3 have been layed out in various places, however they somewhat changed over times. My view is that of a three tier architecture separating - programming layer - configuration layer - presentation layer That is what we have been working on for a long time (far too long as many people think) and and over the last years for a number of reasons more as a research activity rather than with the immediate goal of producing a new system "next year". Part of the reason for that is that we came to the conclusion that you need something very different from the evolution path of LaTeX2.9 -> LaTeX2e to get any significant improvements. Be it as it may (as this is a different discussion) here is a bit more detail on the different layers mentioned above. Not a bad overview on all three layers (though in specific details somewhat dated) is http://www.latex-project.org/papers/tug99.pdf Programming Layer ================= provide a underlying programming language which works on the "TeX" engine (or rather its most common successors) but is significantly more structured and useful than current days extensions of "plain TeX" including the LaTeX kernel which is just a mess of nonexistent interfaces (largely). To that end we came up with expl3 in a number of incarnations and although it is still changing we now feel that it has turned into a useful basis. best source to look at it is http://www.latex-project.org/svnroot/experimental/trunk/l3in2e/ e.g. run source3.tex (guess i should add a pdf version of that into the directory) There is also a TUB paper on expl3. Configuration Layer =================== the core of the configuration layer is the concept of templates which is implemented through the template.sty package found at http://www.latex-project.org/svnroot/experimental/trunk/xpackages/xbase see also for example http://www.latex-project.org/papers/template-notes.pdf and as already mentioned above http://www.latex-project.org/papers/tug99.pdf The strength of the configuration layer is that it provides mechanisms to build high-level configurable (by key/val structures) objects to enable design work to become more a matter of configuration by declaration than configuration by coding (as it is required in 2e in 99% of the cases). But to make this a reality a suitable number of such high-level objects needs building beforehand which is something where still a lot is missing or not finished. Presentation Layer ================== The basic idea for the presentation layer was that we didn't want to have one, or rather that we wanted to have a separation that allows you to stick different representation layers on top. What we implemented as an example layer is the xparse interface what is a kind of LaTeX2e+ in that it supports the typical LaTeX constructs for document level commands with some generalizations. That is found as part of http://www.latex-project.org/svnroot/experimental/trunk/xpackages/xbase and again already discussed in http://www.latex-project.org/papers/tug99.pdf But notice that this interface is and was meant to be an example and as such one of the more simpler ones. The example given by Will in his reply to you (i.e., a more elaborate key/val syntax on the document level) could be build as well without changes to the other layers. Personally that is the layer that I'm not getting involved with (at least not currently) as my interest lies in the Configuration Layer. This is not to say this work here wouldn't be equally important just that it will not be mine most likely. regards frank