summaryrefslogtreecommitdiff
path: root/info/digests/texhax/95/texhax.12
diff options
context:
space:
mode:
Diffstat (limited to 'info/digests/texhax/95/texhax.12')
-rw-r--r--info/digests/texhax/95/texhax.121082
1 files changed, 1082 insertions, 0 deletions
diff --git a/info/digests/texhax/95/texhax.12 b/info/digests/texhax/95/texhax.12
new file mode 100644
index 0000000000..2d99f0dba0
--- /dev/null
+++ b/info/digests/texhax/95/texhax.12
@@ -0,0 +1,1082 @@
+From: owner-TeXhax@nottingham.ac.uk
+To: TeXhax Distribution: ;
+Subject: TeXhax Digest V95 #12
+Reply-To: TeXhax@tex.ac.uk
+Errors-To: owner-TeXhax@nottingham.ac.uk
+Distribution: world
+MIME-Version: 1.0
+Content-Type: text/plain; charset="us-ascii"
+Content-ID: <7344.805739141.1@unicorn.ccc.nottingham.ac.uk>
+Date: Fri, 14 Jul 1995 17:25:43 +0100
+Message-ID: <7345.805739143@unicorn.ccc.nottingham.ac.uk>
+Sender: cczdao@unicorn.ccc.nottingham.ac.uk
+
+TeXhax Digest Friday, 14 Jul 1995 Volume 95 : Issue 12
+(incorporating UKTeX Digest)
+
+Today's Topics:
+ Re: Using TeX and LaTex with Open VMS AXP 6.1 systems
+ re: Lines after figures and space after \input
+ Re: Lines after figures and space after \input
+ Including figures side by side
+ Including figures side by side
+ Q: how do you use letters to label equations (instead of letters)
+ Re: Deskjet 520 vs 500
+ DXY -> PS
+ MetaPost for MS-DOS
+ Forbidding line breaks at hyphens
+ Re: author index
+ Re: author index
+ labelling figures
+ labelling figures
+ Babel release 3.5 available now
+ Eurotex'95 registration form
+ EuroTeX'95 Revised Program
+ CyrTUG 95 announcement
+
+
+Administrivia:
+ Moderators: David Osborne and Peter Abbott
+ Contributions: TeXhax@tex.ac.uk
+ Subscription and unsubscription requests: TeXhax-request@tex.ac.uk
+ (message body = "subscribe texhax" or "unsubscribe texhax", [no quotes])
+
+----------------------------------------------------------------------
+
+Date: Wed, 14 Jun 1995 14:33:51 +0100
+From: KNAPPEN@VKPMZD.kph.Uni-Mainz.DE
+Subject: Re: Using TeX and LaTex with Open VMS AXP 6.1 systems
+
+Please find TeX for OpenVMS (both VAX and Alpha AXP) on the CTAN archives
+(finger ctan@ftp.shsu.edu to get a list of sites) in directory
+tex-archive/systems/vms
+
+The programmes are packed as zip-archives with VMS file attributes
+preserved, so they are usable after unpacking.
+
+- --J"org Knappen.
+
+------------------------------
+
+Date: Wed, 14 Jun 1995 14:06:41 -0400
+From: Jerry Leichter <leichter@lrw.com>
+Subject: re: Lines after figures and space after \input
+
+ I am currently completing my PhD using LaTeX2e (emTeX 386 on a PC) and
+ have a couple of queries. Firstly, I would quite like to have a thin
+ rule between my floats and my main text. Is there a package that will
+ do this? I am using the excellent caption package to put the text in
+ small and the _Figure 1.1_ in bold. Some of my captions are, however,
+ quite long and it would be nice to seperate them from the main text.
+
+I don't know of such a package, but there is a simple "hook" for this sort of
+stuff in the LaTeX output routine - or at least there was in the LaTeX 2.09.
+The following is taken from the 2.09 sources (yes, what I've got handy is
+all antique):
+
+% \topfigrule : Command to place rule (or whatever) between floats
+% at top of page and text. Executed in inner vertical
+% mode right before the \textfloatsep skip separating
+% the floats from the text. Must occupy zero vertical
+% space. (See \footnoterule.)
+% \botfigrule : Same as \topfigrule, but put after the \textfloatsep
+% skip separating text from the floats at bottom of page.
+
+Unless changed, both of these are \let to \relax.
+
+For reference, here's \footnoterule from ARTICLE.DOC (slightly editted):
+
+\def\footnoterule{\kern-3pt
+ \hrule width .4\columnwidth
+ \kern 2.6pt} % The \hrule has default height of .4pt .
+
+ Secondly, I have put my footnotes in seperate files which are then
+ incorporated into the main text using \input. (This is to make
+ counting words *not* including the footnotes easier). For some reason
+ this creates a larger than normal space after the footnotemark in the
+ main text which looks mighty ugly. I have made sure that there is no
+ extra space or lines after the end of the footnote in the \input file.
+
+It's hard to picture exactly what you are doing and where you might already
+have explicit spaces. One quick possibility to try: The last line of your
+\input file presumably ends with a newline, which as usual TeX treats as a
+space. Try adding "%" as the last character. If this does it, but it's a
+pain to edit all the separate footnote files, try putting \unskip just after
+each \input - i.e., \input{somefoot.note}\unskip.
+ -- Jerry
+
+------------------------------
+
+Date: Wed, 14 Jun 1995 23:40:17 -0800
+From: Donald Arseneau <asnd@erich.triumf.ca>
+Subject: Re: Lines after figures and space after \input
+
+In TeXhax Digest V95 #11, Kris Lockyear writes:
+
+% Firstly, I would quite like to have a thin rule between my floats and
+% my main text. Is there a package that will do this?
+
+No package necessary! Just declare
+
+\newcommand\topfigrule{\hrule}
+\newcommand\botfigrule{\hrule}
+\newcommand\dblfigrule{\hrule}
+
+It is illogical to use \newcommand, but looking at the definitions
+in LaTex, I forsee the necessity.
+
+
+% Secondly, I have put my footnotes in seperate files. This creates a
+% larger than normal space after the footnotemark I have made sure that
+% there is no extra space or lines after the end of the footnote in the
+% \input file.
+
+Ah! But the end of the last line in the input file counts as a space,
+and so does any space you leave after \input{file}! Try ending the
+last line in the file with %, and/or omitting all space after
+\input{file}.
+
+Donald Arseneau asnd@reg.triumf.ca
+
+
+------------------------------
+
+Date: Thu, 15 Jun 1995 14:33:25 +0100
+From: Robin Fairbairns <Robin.Fairbairns@cl.cam.ac.uk>
+Subject: Including figures side by side
+
+The following was sent to the UK TUG enquiries address. It is not a
+membership enquiry; an appropriate mailing list for TeXnical help is
+texhax@tex.ac.uk
+
+- ------- Forwarded Message
+
+Date: Thu, 15 Jun 95 14:28:25 BST
+From: penina1@gfx0.mdx.ac.uk (Penina Roberg)
+Message-Id: <9506151328.AA08646@gfx0.mdx.ac.uk>
+To: uktug-enquiries@tex.ac.uk
+Subject: Including figures side by side
+
+
+Is there anyone out there who can help me sort out the placement of four
+EPS files which form part of a figure. I want each to have a sub-caption, and
+an overall caption and figure no. I want them in the following positions
+
+ ------------------
+ | 1 | 2 |
+ | | |
+ --------------------
+ (a) (b)
+ ------------------
+ | 3 | 4 |
+ | | |
+ --------------------
+ (c) (d)
+
+
+ Fig XX: The figures
+
+or therabouts.
+
+I have tried using minipage but don't fully understand how this works
+For some unknown reason, TeX doesn't like my \subfigure command
+
+- ------- End of Forwarded Message
+
+FWIW, I have no problems, myself, with subfigure.sty. There are 2e
+and 2.09 versions on CTAN
+
+------------------------------
+
+Date: Thu, 15 Jun 1995 17:19:00 -0000
+From: "Alex Nunes, CCS, Birkbeck" <a.nunes@ccs.bbk.ac.uk>
+Subject: Q: how do you use letters to label equations (instead of letters)
+
+
+This question has probably been asked and answered before
+but I couldn't find the answer in the archives.
+
+What I'm looking for is a way of "lettering" equations instead
+of numbering them, for example, something like:
+
+\begin{lettereqnarray}
+a & = & b(c+d)\\
+ & = & bc+bd
+\end{lettereqnarray}
+
+would look like this:
+
+ a = b(c+d) (A)
+ = bc+bd (B)
+
+is this doable, in either or both LaTeX/TeX
+
+alex
+
+------------------------------
+
+Date: Fri, 16 Jun 1995 13:32:46 +0200
+From: Eberhard Mattes <mattes@azu.informatik.uni-stuttgart.d400.de>
+Subject: Re: Deskjet 520 vs 500
+
+John Rostron <J.Rostron@uel.ac.uk> writes:
+
+> I have been using the EmTex dvihplj driver successfully on a Deskjet
+> 500 for some time. I now have a Deskjet 520 and I find that it will
+> not print on the bottom inch of the page! All my other software seems
+> to behave exactly as before.
+
+The DeskJet has a switch for selecting the page length. Set that
+switch correctly.
+
+Eberhard Mattes <mattes@azu.informatik.uni-stuttgart.de>
+
+
+------------------------------
+
+Date: Tue, 27 Jun 1995 14:11:31 +0100
+From: "K.Lockyear" <K.Lockyear@soton.ac.uk>
+Subject: DXY -> PS
+
+Dear All
+
+Firstly, can I say a blanket thank you to all who replied to my last
+queries. The answers were:
+
+LINES
+\renewcommand{\topfigrule}{\hrule}
+\renewcommand{\botfigrule}{\hrule}
+\topfigrule
+\botfigrule
+
+FUNNY SPACES
+In the \input file, end the file with a comment (%); this prevents extra
+large space in the text.
+
+DXY -> PS
+And now... a new question.
+I have three graphics in Roland DXY plotter language which I would like
+to convert to PS/EPS. (Note: they are in DXY, not RD-GL which is
+basically HPGL). In the CTAN archive there is the code for a program to
+do just such a conversion but we cannot get it to compile on our LINUX
+machine.
+
+Does anyone:
+ a) have a working copy of this program who would be willing to
+ convert 3 DXY files to PS for me.
+OR
+ b) have an e-mail address for Don MacCormick who wrote the program.
+ In 1987 his address was damc@nifty :-)
+
+Many thanks,
+Kris Lockyear wom@soton.ac.uk
+
+
+------------------------------
+
+Date: Thu, 29 Jun 1995 10:03:43 +0200
+From: Piet van Oostrum <piet@cs.ruu.nl>
+Subject: MetaPost for MS-DOS
+
+I have compiled metapost for MS-DOS and uploaded it to CTAN. It is compiled
+with EMX/GCC, and will therefore only run on 32-bit machines (80386 and
+higher). You can find it at CTAN and its mirrors at
+tex-archive/systems/msdos/metapost. The main CTAN sites are ftp.tex.ac.uk,
+ftp.dante.de and ftp.shsu.edu.
+- --
+Piet van Oostrum <piet@cs.ruu.nl>
+http://www.cs.ruu.nl/~piet
+
+
+------------------------------
+
+Date: Thu, 29 Jun 1995 10:19:42 -0600
+From: al019@freenet.hsc.colorado.edu (D. R. Evans)
+Subject: Forbidding line breaks at hyphens
+
+I would like to forbid line breaks from occurring at places where I have
+hyphens in a piece of text.
+
+The only statements that I see in the "TeX Book" on this subject are on page
+93, where it basically says "TeX doesn't do this very often, and if it does,
+just put the hyphenated word into an hbox".
+
+Is there some way I can produce the same effect by a single global command,
+which would be far more convenient in my particular situation?
+
+(For the record, I had assumed that the "-" character must have a strange
+catcode, in order for it to be treated differently from other characters,
+but that doesn't seem to be the case, so I'm at a loss to know how TeX
+understands that "-" means something special.)
+
+D.R. Evans NQ0I / G4AMJ : devans@orion.colorado.edu
+ al019@freenet.hsc.colorado.edu
+
+"Palindor Chronicles" information and extracts:
+ http://spot.colorado.edu/~romigj/drevans.html
+
+
+------------------------------
+
+Date: Mon, 10 Jul 1995 16:40:40 +0100
+From: Robin Fairbairns <Robin.Fairbairns@cl.cam.ac.uk>
+Subject: Re: author index
+
+This is a forward of a message sent by Marcilio Alves
+<marcilio@liverpool.ac.uk> to uktug-enquiries@tex.ac.uk. Please note
+(everyone) that uktug-enquiries is an address for UK TUG _membership_
+enquiries, not a technical help-line. texhax, info-tex or the
+newsgroup comp.text.tex meet that requirement.
+
+> I would appreciate very much if you could help me with the following
+> problems:
+>
+> - In the work I am now envolved I am using the bibliographic style plain
+> for references and I would like to generate an index of the cited authors.
+>
+> Is there some way to do so?
+>
+> - The graphs in my work are being generated in a PC. I print them
+> to a post script file using a QMS color print drive and they fill less
+> than a half of a page. Nevertheless the eps file always has
+> a bounding box the size of the paper chosen. Then I have to edit the
+> file, change the bounding box, check in ghostview and so on till the
+> bounding box is right the size to just show the chart. Is there some way
+> to make this process faster?
+>
+> Many thanks for you help.
+
+Please mail responses to Marcilio, not to me
+
+Robin Fairbairns
+(For the UK TUG committee)
+
+
+------------------------------
+
+Date: Mon, 10 Jul 1995 16:46:12 +0100
+From: Robin Fairbairns <Robin.Fairbairns@cl.cam.ac.uk>
+Subject: Re: author index
+
+Marcilio Alves asks:
+
+> - In the work I am now envolved I am using the bibliographic style plain
+> for references and I would like to generate an index of the cited authors.
+>
+> Is there some way to do so?
+
+Not without modifying plain.bst. This is something I've thought about
+on and off for some time, but there are several booby traps in the way
+of a "solution off the top of the head".
+
+> - The graphs in my work are being generated in a PC. I print them
+> to a post script file using a QMS color print drive and they fill less
+> than a half of a page. Nevertheless the eps file always has
+> a bounding box the size of the paper chosen. Then I have to edit the
+> file, change the bounding box, check in ghostview and so on till the
+> bounding box is right the size to just show the chart. Is there some way
+> to make this process faster?
+
+There are programs that generate bounding boxes, but the names escape
+me just now...
+
+Robin Fairbairns
+(In my own right)
+
+
+------------------------------
+
+Date: Thu, 13 Jul 1995 09:16:55 +0100
+From: Robin Fairbairns <Robin.Fairbairns@cl.cam.ac.uk>
+Subject: labelling figures
+
+Another query forwarded to the UK TUG membership enquiries address.
+
+Given that it's committee policy that *only* membership enquiries
+should be answered at this address, I am forwarding this message (as I
+normally do) to TeXhax.
+
+Given the extreme age of the LaTeX implementation reported, I shan't
+be following up with an answer of my own (my 2.09 implementation here
+is exhibiting some problems, and I've no time before TUG95 to sort it
+out).
+
+- ------- Forwarded Message
+
+Date: Wed, 12 Jul 95 17:55:05 BST
+From: maali@mcs.dundee.ac.uk (Mohammad Anwar Ali)
+To: uktug-enquiries@tex.ac.uk
+Subject: labelling figures
+
+two ps files transferred to latex
+
+both on same page
+
+\newpage
+\centerline{\Large\bf n C-N Steps}
+\begin{figure}[h]
+\special{psfile=figure_1_.ps hoffset=-10 voffset=-450 hscale=70 vscale=70 angle
+=0}
+\caption[dfg]{here}
+\end{figure}
+
+\begin{figure}[h]
+\special{psfile=figure_2_.ps hoffset=-10 voffset=-750 hscale=70 vscale=70 angle
+=0}
+\caption[dfg]{here}
+\end{figure}
+
+
+latex labels first figure on top of figure
+
+labels second figure over figure 1
+
+
+would like to label both figures with caption underneath figure
+
+can you help
+
+believe latex version is 1991
+
+not latex2e
+
+- ------- End of Forwarded Message
+
+Answers please to Mohammad, not to me...
+
+Robin Fairbairns
+(For the UK TUG committee)
+
+
+------------------------------
+
+Date: Thu, 13 Jul 1995 00:24:37 +0200
+From: "Johannes L. Braams" <J.L.Braams@research.ptt.nl>
+Subject: Babel release 3.5 available now
+
+ Hi,
+
+ I am releived to finally be able to tell you that I have
+ finalized Babel release 3.5.
+
+ What's new in release 3.5?
+ - Because of some of the major changes I made I have decided
+ to give the (formerly called) language-specific files a new
+ name: "language definition file". They also no longer have
+ the extension.sty but ".ldf". The consequence is that
+ \usepackage{english} no longer works, only the documented
+ syntax \usepackage[english]{babel} works.
+ - Completely changed the way babel deals with active
+ characters. They are now activated once and stay active for
+ the rest of the document, only their expansion
+ changes. There is still one problem with the approach:
+ active characters that take an argument (such as " in a lot
+ of languages) give errors what TeX finds the sequence "}.
+ - Active characters (or two letter combinations starting with
+ an active character) are now called shorthands. One can have
+ three levels of shorthands: user defined, language defined
+ and system defined. Active characters may be defined to take
+ an argument.
+ - Introduced an environment `otherlanguage' (with the name of
+ the language as argument) which acts like the
+ \selectlanguage declaration. Also introduced the command
+ \foreignlanguage, which takes two arguments. The arguments
+ are the name of the language and the (short) text from that
+ language. This command only switches hyphenation and
+ specials.
+ - Extended the syntax of language.dat for compatibility with
+ Bernard Gaule's french package.
+ - Each language definition file now tries to load a
+ configuration file (which has the same name, but extension
+ .cfg).
+ - Active characters are now written to auxiliary files
+ *verbatim*
+ - A language change now also writes information in the .aux
+ file as the change might also affect typesetting the table
+ of contents. The consequence is that an .aux file generated
+ by a LaTeX format with babel preloaded gives errors when
+ read with a LaTeX format without babel, but I think this
+ problaly doesn't occur.
+ - Babel can now be used together with both the inputenc and
+ fontenc packages. So far Babel only knows about T1 and OT1
+ encodings, if it needs to know other encodings I would like
+ to hear it.
+ - A lot of code has been moved from language definition files
+ (note the new name for them I used to call them
+ language-specific files). This is caused by the rewrite of
+ the active character handling and by the implementation of
+ T1 support,
+ - A number of languages have been added to the distribution
+ (breton, estonian, irish, lower sorbian, scottish and
+ upper sorbian)
+ - More laguage definition files make characters active;
+ currently we have the following active characters:
+ ~ system, catalan, galician, spanish
+ : breton, francais, turkish
+ ; breton, francais
+ ! breton, francais, turkish
+ ? breton, francais
+ " catalan, danish, dutch, finnish, galician, german, polish,
+ portuguese, slovene, spanish, upper sorbian
+ ` catalan (when option activegrave is used)
+ ' catalan, galician, spanish (when option activeacute is used)
+ ^ esperanto
+ = turkish
+ - This releaseshould be compatible with plain TeX.I don not
+ know if it is Compatible with LaTeX 2.09 but I do not regard
+ that as important as LaTeX 2.09 is obsolete by now. But
+ making babel 3.5 run with plain TeX could also make it run
+ with LaTeX2.09 (not tested, no guarantees).
+
+ The last remark: where can you get babel 3.5?
+ It is available from CTAN in the directory
+ /tex-archive/macros/latex/packags/babe.
+
+ Happy LaTeXing!
+
+ Johannes Braams
+
+PTT Telecom, P.O. box 30150,
+2500 GD 's Gravenhage The Netherlands.
+Phone : +31 70 3432037 E-mail : J.L.Braams@research.ptt.nl
+Fax : +31 70 3432395
+
+
+------------------------------
+
+Date: Mon, 03 Jul 1995 11:48:49 +0200
+From: eurotex-org@cs.ruu.nl
+Subject: Eurotex'95 registration form
+
+This is the Eurotex'95 registration form in ASCII. The other files
+mentioned below may take a day or so to arrive at their location, so if you
+don't find them, please try again tomorrow.
+===========================================================================
+EuroTeX'95, Sept 4-8, 1995 Registration Form
+
+Papendal Nationaal Sport Centrum
+Arnhem, The Netherlands
+
+Email: eurotex@cs.ruu.nl
+http://www.cs.ruu.nl/"piet/eurotex
+
+This form also available in Postscript from CTAN:
+tex-archive/usergrps/info/eurotex95-form.ps or from
+http://www.cs.ruu.nl/~piet/eurotex
+
+All payments must be made in Dutch guilders (f = Dfl)
+
+Payment Options:
+
+ __
+|__| Bank Transfer (preferred)
+ Postbank (Giro)
+ Account Number 6799186
+ NTG inzake EuroTeX
+ Eindhoven, The Netherlands.
+
+
+Credit Card
+ __
+|__| VISA
+ __
+|__| Eurocard
+ __
+|__| Mastercard
+
+
+
+Card # ______________________________________________________________
+
+Expiry ______________________________________________________________
+
+
+
+Signature ______________________________________________________________
+
+ __
+|__| International cheque or money order enclosed (add f 15)
+ payable to NTG, Eindhoven
+
+Mail to:
+
+ EuroTeX registration
+ Ruud H. Koning
+ Liendenhof 137
+ 1108 HH Amsterdam ZO
+ The Netherlands
+ tel/fax +31 20 6917260
+ Email: rhkoning@xs4all.nl
+
+
+One form per registrant. If you need additional registration forms,*
+please copy this form or contact the EuroTEX'95 committee. Please check
+the appropriate boxes and return this form plus payment to the EuroTeX
+registration at the address above.
+
+The registration fee includes the welcome reception, all lunches from Monday
+to Thursday, all dinners from Monday to Wednesday, the `social event' on
+Wednesday, breaks, one half-day tutorial and one copy of the proceedings.
+
+
+Name: _______________________________________________________________________
+
+Affiliation: ________________________________________________________________
+
+Address: _________________________________________________________________
+
+ _________________________________________________________________
+
+ _________________________________________________________________
+
+Phone: ____________________________________ FAX: ____________________________
+
+E-mail: _____________________________________________________________________
+
+
+Special Dietary Needs: ______________________________________________________
+
+Other Special Requirements: _________________________________________________
+
+Choice of free tutorial: ____________________________________________________
+
+Other tutorials: ____________________________________________________________
+ __
+|__| East European TEX bus pickup at: ______________________________________
+
+
+Registration Fees: TUG or TEX user group member f 375 _________
+
+ Group: ___________________________
+
+ Non-member f 450 _________
+
+Additional Tutorials: @ f 70 _________
+
+ __
+|__| Lunch on Friday: f 15 _________
+ __
+|__| Additional copies of proceedings: # ________ @ f 20 _________
+
+Voluntary donation: Contribution to the Bursary Fund _________
+
+ Meeting Subtotal f _________
+
+ __
+Hotel Accommodation |__| single (f 90)
+ __ __
+ |__| double (f 75 per person) |__| quadruple (f 50 per person)
+
+
+ share with: _____________________________________________________
+
+ # nights ________ arrive: ____________ depart: ____________ _________
+
+
+Payment by cheque: f 15 _________
+
+
+ Total Payment f _________
+
+
+------------------------------
+
+Date: Fri, 14 Jul 1995 11:43:38 +0200
+From: eurotex-org@cs.ruu.nl
+Subject: EuroTeX'95 Revised Program
+
+% EuroTeX'95 announcement
+\documentclass{article}
+\usepackage{multicol}
+\usepackage{times}
+\usepackage{a4}
+
+\parindent0pt
+\parskip1mm
+
+\def\Theme#1{\vskip2mm{\bf Theme: #1}\vskip2mm}
+\def\Day#1{\vskip 6mm\hrule\vskip1mm
+ \centerline{\bf#1}\vskip1mm}
+\def\Paper#1#2{\par\hangindent5mm\textbf{#2} -- #1\par}
+\def\Head{\centering\Large\bf
+ Euro\TeX'95\\
+ September 4--8\\
+ Arnhem, The Netherlands\\
+ Conference information\\~\\
+ \hrule}
+
+\begin{document}
+
+%% \begin{multicols}{2}[\Head]
+%%
+%% \section*{The \TeX\ Toolbox}
+%%
+%% The Euro\TeX\ conference 1995, including tutorials, will take place from
+%% \textit{September 4th until September 8th} in the Netherlands. The
+%% conference will be held at Papendal, near the city of Arnhem.
+%%
+%% Papendal is located in one of the most beautiful areas of the
+%% Netherlands. Right in the middle of the vast woods of the province of
+%% Gelderland. About eight kilometers west of Arnhem. Tucked away under the
+%% lee of the green Veluwe-fringe.
+%%
+%% The conference starts on September 4th in the afternoon and runs until
+%% September 7th noon. Thursday afternoon and Friday September 8th are
+%% reserved for tutorials.
+%%
+%% The theme of the conference is: The \TeX\ Toolbox.
+%%
+%% \section*{Preliminary program}
+%%
+%% (Items marked `*' are not confirmed yet)
+
+\Day{Monday a.m.}
+
+Welcome Reception and registration of conference attendants.
+
+\Day{Monday p.m. (14:00--18:30)}
+
+\Theme{I) Fonts}
+
+\Paper{S. Turtia, A.Berdikov}
+ {VFComb -- a program for design of virtual fonts}
+\Paper{E.J. Vens}
+ {The Conversion of the Euler Metafont sources to PostScript Type1}
+\Paper{J. Knappen*}
+ {EC and DC fonts}
+
+\Theme{II) Multiple languages}
+
+\Paper{A.F. Slepuhin}
+ {A package for Church Slavonic type-setting}
+\Paper{O. Lapko, I. Makhovaya}
+ {A Russian style for Babel: problems and solutions}
+\Paper{Y. Haralambous}
+ {Scholar\TeX}
+\Paper{J. Braams*}
+ {Status of Babel}
+
+\Day{Tuesday a.m. (9:00--12:30)}
+
+\Theme{Graphics and packages}
+
+\Paper{A.V. Astrelin}
+ {Graphics in \TeX: a new implementation}
+\Paper{S. Turtia, A. Berdikov}
+ {\TeX\ Plotter -- program for creating 2D and 3D pictures}
+\Paper{G. Feruglio}
+ {Packages for typesetting Commutative Diagrams}
+\Paper{J. Hagen}
+ {Package for typesetting chemical diagrams}
+\Paper{D. Taupin}
+ {Musix\TeX, a package for typesetting music}
+
+\Day{Tuesday p.m.}
+
+ From 13:30--14:30: NTG meeting.
+
+\Theme{Electronic documents}
+
+\Paper{W. Tierie}
+ {Presentation of Acrobat}
+\Paper{J. Hagen}
+ {Producing electronic books? -- all you need is \TeX!}
+\Paper{M. Goossens}
+ {SGML, a practical introduction}
+\Paper{M. Goossens}
+ {From \LaTeX\ to HTML, and back}
+\Paper{S. Rahtz*}
+ {SGML, Acrobat, \LaTeX, Hyper\TeX}
+
+Panel discussion.
+
+\Day{Wednesday a.m.}
+
+\Theme{Tools I}
+
+\Paper{R. Koning, S. Kliffen, A. Lenstra}
+ {Da\TeX, \TeX\ macros for storing and retrieving data}
+\Paper{P. Taylor}
+ {\TeX: an unsuitable language for document markup?}
+\Paper{K. van der Laan}
+ {Blue's Data Bases}
+\Paper{L. Siebenmann}
+ {Occam's razor and macro management}
+\Paper{P. Palao, M. N\'u\~nez}
+ {Formating Pascal using \TeX}
+
+\Day{Wednesday p.m.}
+
+\Theme{General developments in \TeX\ and \LaTeX}
+
+\Paper{C. Rowley*}
+ {\LaTeX3}
+\Paper{P. Taylor}
+ {$\varepsilon$-\TeX}
+\Paper{Y. Haralambous}
+ {Omega}
+\Paper{Joachim Schrod}
+ {tds}
+
+Panel discussion.
+
+ 16:00--???: the social event, still a secret\ldots
+
+\Day{Thursday a.m.}
+
+\Theme{Tools II}
+
+\Paper{P. Taylor}
+ {$\backslash$csname u n d e f i n e d $\backslash$endcsname =
+ $\backslash$relax: feature or flaw?}
+\Paper{L. Siebenmann}
+ {Atomic fonts and electronic archiving of scientific documents}
+\Paper{A. Strejc}
+ {The W95 Environment}
+\Paper{K. van der Laan}
+ {Indexing with `Any'\TeX}
+\Paper{B. Jackowski}
+ {Metafont as generator of EPS graphics}
+
+\Day{Thursday p.m. and Friday}
+
+\Theme{Tutorials}
+
+Parallel sessions.
+
+\Paper{L. Siebenmann}
+ {Sweet-\TeX\ tutorial}
+\Paper{P. van Oostrum}
+ {Page layout in \LaTeX}
+\Paper{K. van der Laan}
+ {\TeX ing Paradigms}
+\Paper{K. van der Laan}
+ {BLU \TeX}
+\Paper{K. van der Laan}
+ {Plain \TeX\ Macro writing, why?}
+\Paper{B. Jackowski}
+ {Metafont}
+\Paper{P. Taylor}
+ {$\varepsilon$-\TeX\ tutorial}
+\Paper{M. Goossens \& S. Rahtz}
+ {Workshop on Acrobat and electronic document delivery}
+
+%% \section*{Meeting costs}
+%%
+%% The registration fee includes the Welcome Reception on Monday, all
+%% lunches from Monday to Thursday and all dinners from Monday to Wednesday.
+%% One tutorial ($\frac12$ day) is included in the conference fee.
+%% Extra tutorials cost Hfl~70 each. Lunch on Friday is Hfl~15.
+%%
+%% The conference fee also includes the `social event' on Wednesday
+%% afternoon and evening.
+%%
+%% Conference rates:\\
+%% -- members of TUG or Local \TeX\ User Groups (please specify): Hfl~375\\
+%% -- others: Hfl~450
+%%
+%% Reservations of hotel rooms at the conference site can only be done
+%% by the Euro\TeX\ organisation committee. Papendal offers the following
+%% accomodation:
+%%
+%% -- single rooms Hfl~90 per day per person\\
+%% -- double rooms Hfl~75 per day per person\\
+%% -- quadruple rooms Hfl~50 per day per person\\
+%% (breakfast included).
+%%
+%% Accomodation is limited, so register as soon as possible.
+%%
+%% \section*{How to get there}
+%%
+%% Papendal is located just outside the city of Arnhem. From Arnhem it can
+%% be reached by bus or taxi in approximately 15 minutes. There is a
+%% train going from Amsterdam airport (Schiphol) to Arnhem every 30
+%% minutes.
+%%
+%% The address is:
+%%
+%% Papendal Nationaal Sport Centrum\\
+%% fax +31 8308 21853 \\
+%% tel +31 8308 37911 \\
+%% P.O. Box 484\\
+%% 6800 AL Arnhem\\
+%% The Netherlands\\
+%%
+%%
+%% People coming from Russia, Poland or ... may be interested in the
+%% Euro\TeX\ Bus Project. On September 2nd a \TeX\ bus will drive from
+%% Brest, through Warsaw, through ... to Arnhem, where it will arrive on
+%% Sunday in the afternoon. Taking the bus will be extremely cheap, thanks
+%% to sponsoring by ...
+%% However, seats are limited so register as soon as possible.
+%%
+%%
+%% \section*{Bursary fund}
+%%
+%% There is a Bursary Fund available for those who require financial
+%% support to attend the meeting. While we cannot guarantee all requests
+%% will be fulfilled, we will do our best to support as many as we can.
+%%
+%% We encourage all conference attendants to contribute a small amount of
+%% money to the Bursary Fund along with their registration fee.
+%%
+%% More information about contributing to or applying to the Bursary Fund
+%% can be obtained from ...
+%%
+%% \section*{Further information}
+%%
+%% Updates of this information will be sent to all known electronic \TeX\
+%% related mailing lists and to all Local \TeX\ User Groups. If you have
+%% access to a WWW browser you can go to
+%% {\small\texttt{http://www.cs.ruu.nl/piet\~\ /eurotex}}. There you can
+%% find the latest news, a registration form and other useful information.
+%%
+%% \end{multicols}
+\end{document}
+
+
+------------------------------
+
+Date: Fri, 14 Jul 1995 13:46:57 +0200
+From: cgl@rc.service.rug.nl (Kees van der Laan)
+Subject: CyrTUG 95 announcement
+
+I give below the information about CyrTUG'95 and Application Form.
+We shall appreciate if you distribute this information among
+your and our friends.
+As usual we would like to see you at CyrTUG'95 in Protvino as
+our guest of honour.
+Best regards
+- --Irina
+
+***************CyrTUG'95 ANNUAL MEETING IN PROTVINO****************
+ in association with
+ Institute for High Energy Physics
+ and
+ Russian Centre of Computer Science for Physics and Engeneering
+ October 2--5, 1995, Protvino (Moscow region)
+*******************************************************************
+ TeXnical School
+
+1. Reports on hot topics in the use and development of TeX and METAFONT
+2. Consultations given by TeXguru
+3. Workshops: Exchange of Experience
+4. The CyrTUG archives
+5. New public-domain TeXware
+6. Tutorials
+
+********************************************************************
+ Non-TeX Activities
+
+1. An excursion to Polenovo
+2. An excursion to IHEP
+3. Concert
+4. Dancing class
+5. Walks and discussion with colleagues
+6. Conference banquet
+7. Cultural events
+8. A book kiosk
+
+********************************************************************
+ Accommodations
+
+1. 1 or 2 or 3 persons to a room (wc, shower-bath, tv, and so on)
+2. Coffee/Tea/Lunch/Dinner
+3. A bus service from Moscow to Protvino and vice versa on the first
+ and last days of the meeting, respectively
+
+*******************************************************************
+ Application form*
+
+Yes, I want to come to the CyrTUG'95 Annual Meeting! I have
+completed the form below.
+
+Full name __________________________________________________________
+
+Member of CyrTUG or TUG or LUG ____________________________________
+
+Student (yes, no) ___________________________________________________
+
+Address _____________________________________________________________
+
+ _____________________________________________________________
+
+ _____________________________________________________________
+
+
+Telephone (including international code)
+
+ ____________________________________________________________
+
+e-mail ____________________________________________________________
+
+Topic of report delivered (if any) _________________________________
+
+ ____________________________________________________________
+
+ ____________________________________________________________
+
+
+I would like to have the programme of the CyrTUG'95 meeting sent
+me by e-mail.
+
+ Date _________________ Signature _________________
+
+_____________________________________________________________________
+
+*Send, please, by e-mail before 1 September, 1995.
+Participants from foreign (non-C.I.S) countries will pay a
+REGISTRATION FEE of US$70.00 and an ACCOMODATION and FOOD fee of
+US$130.00 (or 150 or 180) in cash on arrival (no checks or credit
+cards, please). The discount for CyrTUG (or TUG or LUG) members and
+for students is 50% of the REGISTRATION FEE
+*********************************************************************
+For contacts and more information:
+Irina Makhovaya, Executive Director
+e-mail: cyrtug@mir.msk.su
+phone: (095) 286-2522
+address: CyrTUG, Mir Publishers,
+ 2 Pervyi Rizhskii Pereulok,
+ Moscow, 129820, Russia
+
+
+
+------------------------------
+About TeXhax...
+
+Please send contributions to: TeXhax@tex.ac.uk
+
+Subscription and unsubscription requests:
+ send a one line mail message to TeXhax-Request@tex.ac.uk
+ containing either subscribe texhax
+ or unsubscribe texhax
+
+To obtain the Frequently Asked Questions (FAQ) lists for TeX, send a
+message with no subject to fileserv@shsu.edu, consisting of
+SENDME FAQ
+
+For information on the TeX Users Group, please send a message to
+TUG@TUG.org, or write TeX Users Group, P.O. Box 869, Santa Barbara,
+CA 93102, USA.
+
+Backnumbers of all the digests are stored in the Comprehensive TeX
+Archive Network (CTAN) and can be retrieved on the Internet by
+anonymous ftp. The hosts comprising CTAN include
+ ftp.dante.de (129.69.1.12) -- Germany
+ ftp.shsu.edu (192.92.115.10) -- USA
+ ftp.tex.ac.uk (128.232.1.87) -- UK
+TeXhax Digest issues are filed below /tex-archive/digests/texhax/
+Keyword-In-Context Indexes are filed in /tex-archive/digests/indexes/
+
+A Hypermail version of TeXhax is also available on the World-Wide Web at URL
+http://www.tex.ac.uk/tex-archive/digests/hyper/
+
+Please use your nearest server, to keep network load down.
+The file /tex-archive/CTAN.sites on each of these hosts gives a
+list of other sites which maintain full or partial mirrors of the CTAN.
+Alternatively, finger ctan_us@ftp.shsu.edu for full details.
+
+\bye
+
+End of TeXhax Digest [Volume 95 Issue 12]
+*****************************************