UKTeX Digest	Friday,  6 Sep 1991    Volume 91 : Issue 35

Today's Topics:
 {Q&A}:
		   double horizontal line in LaTeX
	    Institute of Mathematics and its Applications
		   Agfa P400PS as TeX output device
			  Chapter References
			emTeX P6H fonts wanted
		 DVIdriver for Canon BubbleJet wanted
	       Re: DVIdriver for Canon BubbleJet wanted
 {Archive News}:
	 Upgrading of the UK TeX Archive at Aston University
		UPDATE: [tex-archive.digests.tugboat]
    Aston TeX mail server log analysis at 31-AUG-1991 23:40:30.06


Administrivia:
    Moderators:     Peter Abbott (Aston University) and
                    David Osborne (University of Nottingham)
    Contributions:  UKTeX@uk.ac.tex
    Administration, subscription and unsubscription requests:
                    UKTeX-request@uk.ac.tex

------------------------------------------------------------

Date:    Thu, 22 Aug 91 20:25:06 +0000
From:    Kish.Shen@uk.ac.cambridge.computer-lab
Subject: double horizontal line in LaTeX


Thank you for all the help with my hypenation problem. I have another question
about LaTeX that has bothered me for some time. I have not read this group
often, so forgive me if this is a frequently asked question:

I use double horizontal lines in LaTeX tabular environments quite a bit.
However, I don't really like the way that these horizontal lines look. The
problem is that the veritical lines are broken by the horizontal lines,
giving something like:

|________________|                 |__________________|
 ________________     instead of:  |__________________|
|                |                 |                  |

I got the above from copying the example given in the LaTeX book, by the use
of two \hlines: \hline\hline

Is it possible to obtain the second form with the veritical lines connected?

Thanks in advance for any help! Could you please send a reply to my e-mail
address as well, as I don't read this group frequently.

Kish Shen
Computer Laboratory
University of Cambridge
Cambridge

ksh@cl.cam.ac.uk

------------------------------

Date:    Fri, 23 Aug 91 18:06:40 +0000
From:    David_Rhead@uk.ac.nottingham.ccc.vme
Subject: Institute of Mathematics and its Applications

I am a fairly dormant member of the UK's 
      Institute of Mathematics and its Applications
 
>From time to time I think:
1.   Why doesn't the IMA accept articles for its journals in electronic
     form (like the American Mathematical Society and the Institute of
     Physics do)?
2.   Why isn't the IMA accesssible via JANET (like the American
     Mathematical Society, the Royal Society of Chemistry and the
     Institute of Physics are)?
3.   Perhaps I'll write a letter to the IMA asking the above questions.
 
Has anyone else approached the IMA about (1) and/or (2)?  If so, what
response did they get?  There doesn't seem much point in me composing
a suitable letter if someone else has already raised these points with 
them.
 
 
David Rhead
JANET: d.rhead@uk.ac.nottingham.ccc.vme

------------------------------

Date:    Wed, 04 Sep 91 15:26:52 +0000
From:    David Osborne <cczdao@uk.ac.nottingham.ccc.mips>
Subject: Agfa P400PS as TeX output device

We will shortly be getting an Agfa P400PS on loan, and it may
eventually replace our Agfa P3400PS and Xerox 3700.  One job it will
have to do is act as our main TeX output device... I'd welcome any
comments on its suitability as a TeX printer from those who have used
it as such.  Did you find the mode_def values of 
  blacker := .2;
  fillin := 0;
  o_correction := .6;
suitable when generating fonts?  (These values are from Karl Berry's
modes.mf file).

- --dave
  David Osborne, Cripps Computing Centre, University of Nottingham
  d.osborne@mips.nott.ac.uk

------------------------------

Date:    Wed, 04 Sep 91 17:10:03 +0000
From:    NER034@uk.ac.tees-poly.prime-a
Subject: Chapter References

I have only really had one answer to my question about providing reference on
a per chapter basis, and a bibliography section at the end of the document.
That was a copy of the chapterbib style file by Niel Kempson (rmcs-tex @
cdvc.cranfield.ac.uk).  You have to \include each chapter separately.  You
should then run BIBTeX on each of the chapters .aux files.  You can not run
BIBTeX on the main .aux file.

Just after I posted the request I developed a .sty file to do the job, but am
unhappy with it.  However, it's definition is much simpler than chapterbib
style file and preform the same function.  With my system, I provide a flag
that you include in the preamble to indicate that chapter references are
required (or not).  You should place the command \references{bib data-file
list} in the chapter.  A section titled "References" will be placed at this
point on the final run.  You must \include each chapter seperatly.

You must include the \chaprefs command in the preable and process the file.
This will produce variouse .aux files for each chapter.  You must then run
BIBTeX on each .aux file that requires a reference listing.  This will
produce various .bbl files.

In order to produce a Bibliography chapter you must remove the \chaprefs from
the preamble and process the file again.  You must now run BIBTeX on the main
(base) .aux file.

On the next pass through LaTeX the system will pick up the .bbl files and
produce a "References" section where indicated, and a "Biblography" chapter
where required.


My chaprefs.sty file follows:

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Chaprefs.sty - Style file to produce Reference sections on a per
%                Chapter bases (using BibTeX)
%
% Author: Peter J. Knaggs,  School of Computing and Mathematics,
%         Teesside Polytechnic, Middlesbrogh, Cleveland, England.
%
%=======================================================================

%
% Define two variables:
%       \bib@sty        - Holds the selected bibliography style
%       \bib@name       - Holds the name of the current \include file
%

\def\bib@sty{plane}
\def\bib@name{\jobname}

%
% Redefine \include to save the name of the included file in the variable
% \bib@name.  This definition simply extends the LaTeX definition by
% redefining \include to call \@include, this is taken from the \include
% definition in LaTeX.TeX
%

\def\include#1{\include@#1 }
\def\include@#1 {\def\bib@name{#1}\@include#1 }

%
% Define a new `Preamble' flag to indicate chapter reference are required.
% This is required as the contents of the .aux files is diferent dependent
% on the state of this flag.
%
% The flag is initilay set to false.  Ie., do not produce chapter reference,
% but do produce a bibliography chapter.
%
% The preable command \chaprefs is defined to switch the flag to true.  Ie.,
% produce chapter reference, but not a bibliography chapter.
%

\newif\if@chpref \@chpreffalse
\def\chaprefs{\@chpreftrue}

%
% Redefine \bibliographystyle to save the selected style in the variable
% \bib@sty.  This will be ouput to the .aux file for each included file.
% Hence only one \bibliographystyle command is required.
%

\def\bibliographystyle#1{
    \if@filesw\immediate\write\@auxout{\string\bibstyle{#1}}\fi
    \def\bib@sty{#1}
}

%
% Redefine \bibliography to use new factoring of the command.
% It redefineds the constant \@Ref as used in \thebiblography to add a
% "References" section, such that it now adds a "Biblography" chapter.
%

\def\bibliography#1{\if@filesw\immediate\write\@auxout{\string\bibdata{#1}}
         \def\@Ref{\@bib} \@input{\jobname.bbl} \fi }

%
% define \references to write the \bibstyle and \bibdata commands to the
% current .aux file.  It then inputs the current .bbl file if it exists.
%

\def\references#1{\if@filesw\if@chpref\immediate\write\@auxout
         {\string\bibstyle{\bib@sty}} \write\@auxout{\string\bibdata{#1}}
         \fi \@input{\bib@name.bbl} \fi }

%
% Define two functions:
%       \@Ref to add a "References" section to the current % chapter.
%       \@bib to add a "Bibliography" chapter to the document.
%
% It is assumed that the bibliography will be at the end of the document.
% Ie., no \references commands are given after the \bibliography command.
%

\def\@Ref{\section{References}}
\def\@bib{\chapter*{Bibliography\@mkboth{BIBLIOGRAPHY}{BIBLIOGRAPHY}}
         \addcontentsline{toc}{chapter}{Bibliography} }

%
% At the start of a .bbl file is the command \thebibliography.  This has
% been modified to add a "References" section to the current chapter.  Note,
% the definition of \thebibliography is taken from the ucthesis document
% style.
%
% When the \bibliography command is used the definition of \@Ref is altered
% to add a "Bibliography" chapter.  This definition is not changed back,
% thus the \bibliography command must only be given after all \references
% commands have been processed.
%

\def\thebibliography#1{\@Ref\list{[\arabic{enumi}]}
    {\settowidth\labelwidth{[#1]}\leftmargin\labelwidth
    \advance\leftmargin\labelsep
    \usecounter{enumi}}
    \def\newblock{\hskip .11em plus .33em minus .07em}
    \sloppy\clubpenalty4000\widowpenalty4000
    \sfcode`\.=1000\relax}

%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Peter Knaggs
+-----------------------------+-----------------------------------------------+
! School of Comp. & Maths.,   !    Janet: NER034 @ uk.ac.tees-poly            !
! Teesside Polytechnic,       !   Bitnet: NER034 % tp.ac.uk @ UKACRL          !
! Middlesbrough,              ! Internet: NER034 % tp.ac.uk @ cunyvm.cuny.edu !
! Cleveland, England. TS1 3BA !     Uucp: NER034 % tpoly.ac.uk @ ukc.uucp     !
!-----------------------------+-----------------------------------------------!
! It is not enough to do the right thing; one must also do it the right way.  !
+-----------------------------------------------------------------------------+

------------------------------

Date:    Wed, 04 Sep 91 17:10:49 +0000
From:    NER034@uk.ac.tees-poly.prime-a
Subject: emTeX P6H fonts wanted

Does anyone have a copy of the emTeX P6H fonts (including AMSFonts if
possible), that they can send me.  I really dont fancy spending several days
to build them!

Peter Knaggs

------------------------------

Date:    Wed, 04 Sep 91 17:10:52 +0000
From:    Brian {Hamilton Kelly} <TeX@uk.ac.cranfield.rmcs>
Subject: DVIdriver for Canon BubbleJet wanted

A colleague, who is tempted to use TeX on his PC at home, asks whether
there is a driver that's capable of handling the Canon BubbleJet printer
(model BJ10E [is that right??]).  If anyone has such a beast, or knows
that one of the existing drivers (for a LBP-8, maybe) will work with
this small but beautifully-formed printer, please get in touch.  I
understand that the printer's resolution is 360 dots/inch, so looks like
another marathon MF session may be coming up --- thank goodness for the
VAX-8820, which polishes off such a job in a less than geological
timescale!

                               Brian {Hamilton Kelly}

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ JANET:     tex@uk.ac.cranfield.rmcs                                     +
+ BITNET:    tex%uk.ac.cranfield.rmcs@ac.uk                               +
+ INTERNET:  tex%uk.ac.cranfield.rmcs@nsfnet-relay.ac.uk                  +
+ UUCP:      {mcsun,ukc,uunet}!rmcs.cranfield.ac.uk!tex                   +
+ Smail:     School of Electrical Engineering & Science, Royal Military   +
+            College of Science, Shrivenham, SWINDON SN6 8LA, U.K.        +
+ Phone:     Swindon (0793) 785252 (UK), +44-793-785252 (International)   +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

------------------------------

Date:    Thu, 05 Sep 91 09:03:47 +0000
From:    Adrian F Clark <alien@uk.ac.essex>
Subject: Re: DVIdriver for Canon BubbleJet wanted

Nigel Arnot (sysmgr@uk.ac.kcl.ph.ipg) announced, in a recent UKTeX,
how to get a BJ20/e working with the existing emTeX drivers.  I've
seen the output, and it's true to the (CM) fonts, albeit rather faint.
I'm sure he'd be happy to tell you what he did if you can't find the
issue in the Aston archive. :-}

..Adrian

------------------------------

Date:    Wed, 28 Aug 91 11:45:09 +0000
From:    Brian {Hamilton Kelly} <TeX@uk.ac.cranfield.rmcs>
Subject: Upgrading of the UK TeX Archive at Aston University

    ********************************************************************
    *                                                                  *
    * The UK TeX Archive at Aston University will be relocated onto a  *
    * larger (and faster!) machine next week.  Therefore there will be *
    * NO ACCESS by any mechanism to the archive on Thursday 5th and    *
    * Friday 6th September.                                            *
    *                                                                  *
    ********************************************************************

------------------------------

Date:    Fri, 30 Aug 91 16:43:24 +0000
From:    Brian {Hamilton Kelly} <TeX@uk.ac.cranfield.rmcs>
Subject: UPDATE: [tex-archive.digests.tugboat]

The above directory has been updated today, incorporating changed versions
of (L)TUGBOAT.STY, etc, from Barbara Beeton, and the whole of Nelson Beebe's
files for producing indices to past issues of TUGboat, and the output thereof.

Fetch, in the first instance, 00README.TXT and 00FILES.TXT from the above
directory.

Brian {Hamilton Kelly}

------------------------------

Date:    Sat, 31 Aug 91 23:40:43 +0000
From:    UK TeX Archive Server <TeXserver@uk.ac.tex>
Subject: Aston TeX mail server log analysis at 31-AUG-1991 23:40:30.06

TeXserver usage analysis for the period:
       9-AUG-1991 13:05:26.04 to 31-AUG-1991 21:43:27.40

A total of 482 requests were received from 94 callers
 
Of these,  138 requests were rejected,
         3,324 FILE transfers were requested
               (transferring a total of 116,410,473 bytes),
            48 HELP requests were made,
            72 DIRECTORY requests were made,
             4 SEARCH requests were made,
            19 WHEREIS requests were made,

A total of 3,324 file transfers were requested (totalling 116,410,473 bytes).

2,188 distinct files were requested - the 10 most requested files were:
 
  16 requests for [TEX-ARCHIVE]00DIRECTORY.LIST
   8 requests for [TEX-ARCHIVE]00LAST30DAYS.FILES
   8 requests for [TEX-ARCHIVE]00README.TXT
   7 requests for [TEX-ARCHIVE]00LAST7DAYS.FILES
   6 requests for [TEX-ARCHIVE.LATEX.CONTRIB]LONGTABLE.STY
   6 requests for [TEX-ARCHIVE.TEX.MS-DOS.EMTEX]00FILES.TXT
   6 requests for [TEX-ARCHIVE.TEX.MS-DOS.EMTEX]DVIDRVMA.BOO
   6 requests for [TEX-ARCHIVE]00DIRECTORY.SIZE
   5 requests for [TEX-ARCHIVE.FONTS.ADOBE.TFM.ADOBE]TIMES-BOLD.TFM
   5 requests for [TEX-ARCHIVE.FONTS.ADOBE.TFM.ADOBE]TIMES-BOLDITALIC.TFM

 
The following users transferred 92,880,625 bytes, which is 79% of the total
 
  18,710,525 bytes requested by ECSYIP%EARN.NTUVAX@UK.AC.EARN-RELAY
  16,064,631 bytes requested by "CCF::BANKS"@UK.MOD.HERMES
  14,253,690 bytes requested by CURRY%AT.AC.IIASA.IIASA@UK.AC.NSFNET-RELAY
  11,357,232 bytes requested by FRANZEN%DE.DBP.UNI-HANNOVER.TNT.SCOOP@UK.AC.MHS-
RELAY
   6,903,562 bytes requested by GAVISHB%EDU.VANDERBILT.CTRVAX@UK.AC.NSFNET-RELAY
   5,922,562 bytes requested by TREVOR%UUCP.TREVAN@UK.AC.UKC
   5,540,749 bytes requested by GERDESJH%EDU.VANDERBILT.CTRVAX@UK.AC.NSFNET-RELA
Y
   5,269,714 bytes requested by TEX@UK.AC.CRANFIELD.RMCS
   4,935,526 bytes requested by ASSTED@UK.AC.OXFORD.VAX
   3,922,434 bytes requested by KELAR%EARN.CSEARN@UK.AC.EARN-RELAY

------------------------------

		  UK TeX ARCHIVE at ASTON UNIVERSITY
			 >>>  UK.AC.TEX	 <<<

		  JANET Interactive and NIFTP access
	     Host: uk.ac.tex	(JANET DTE 000020120091)
		 Username: public    Password: public
	   [Sorry, no Internet ftp access is available yet]

			 *** Mail server ***
	       Send mail to TeXserver@uk.ac.tex (JANET)
	      or TeXserver@tex.ac.uk (rest of the world)
	      with message body containing the word HELP

\section FILES OF INTEREST

    [tex-archive]00readme.txt
    [tex-archive]00directory.list	 [tex-archive]00directory.size
    [tex-archive]00directory_dates.list	 [tex-archive]00last30days.files

\section DIGESTS

    This year's UKTeX back issues are stored in the archive in directory
      [tex-archive.digests.uktex.91]
    This year's TeXhax back issues are stored in the archive in directory
      [tex-archive.digests.texhax.91]
      Latest TeXhax: #36
    TeXMaG back issues are stored in the archive in directory
      [tex-archive.digests.tex-mag]
      Latest TeXMaG: V5N3

\section MEDIA DISTRIBUTIONS

\subsection Washington Unix TeX distribution tape
    Latest copy of May/June 1991 contains:
    TeX 3.14, LaTeX 2.09, Metafont 2.7, plus many utilities
    suitable for Unix 4.2/4.3BSD & System V
    tar format, 1600bpi, blockfactor 20, 1 file (36Mb)
    Copies available on:
      One 2400ft 0.5" tape sent with return labels AND return postage to Aston
   OR One Quarter-Inch Cartridge (DC600A or DC6150)
      sent with envelope AND stamps for return postage to Nottingham
    (addresses below).

\subsection VMS tapes
    VMS backup of the archive requires two 2400ft tapes at 6250bpi.
    VMS backup of TeX 2.991 plus PSprint requires one 2400ft tape.

\subsection Exabyte 8mm tapes
    Same contents available as 0.5" tapes.
    Following tape types available: SONY Video 8 cassette P5 90MP,
    MAXELL Video 8 cassette P5-90, TDK Video 8 cassette P5-90MPB

\section TeX IMPLEMENTATIONS FOR SMALL COMPUTERS

\subsection OzTeX (for Macintosh)
    Send 10 UNFORMATTED 800K disks to Aston with return postage.

\subsection emTeX (for MS-DOS)
    The complete package (3.5" High density disk format ONLY)
    is available from Aston at a cost of 15 pounds,
      including disks, post and packing.
    All other enquiries and disk formats should be directed to:
    Eigen PD Software, P.O. Box 722, Swindon SN2 6YB  (tel: 0793-611270)
    (JANET e-mail address: kellett@uk.ac.cran.rmcs)
    
\subsection TeX for the Atari ST
    All enquiries for disks etc. should be directed to:
    The South West Software Library, P.O. Box 562, Wimborne, Dorset BH21 2YD
    (JANET e-mail address: mdryden@uk.co.compulink.cix)

\section POSTAGE RATES
    All prices in Pounds Sterling.
    For Aston orders, make cheques payable to Aston University.

    0.5" tapes: UK: 2.50 (one tape),  5.00 (two tapes).
	    Europe: 5.00 (one tape),  9.00 (two tapes).
	    Outside Europe please enquire.
    8mm tapes:
	    UK: 1.00,  Europe: 2.00.
    Quarter-inch cartridges:
	    UK: 1.00,  Europe: 2.00.
    Diskettes:
    Quantity/Size   Europe   World    UK 1st   UK 2nd
      18/3.5"	     3.10     5.10     1.40	1.10
      11/3.5"	     1.80     2.90     0.80	0.65
      18/5.25"	     1.20     2.00     0.60	0.50
      11/5.25"	     0.80     1.30     0.50	0.35

\section POSTAL ADDRESSES
    Please include SELF-ADDRESSED ADHESIVE LABELS for return postage.

    Peter Abbott
    Information Systems, Aston University, Aston Triangle, Birmingham B4 7ET

    David Osborne
    Cripps Computing Centre, University of Nottingham, Nottingham NG7 2RD, UK
    (for Quarter-inch cartridges ONLY -- include stamps for return postage)

\section UK TeX USERS GROUP

    For details, contact:
    Malcolm Clark
    IRS, Polytechnic of Central London,
    115 New Cavendish Street, London W1M 8JS	 e-mail: malcolmc@uk.ac.pcl.mole
 or
    Geeti Granger, John Wiley & Sons,
    Baffins Lane, Chichester, W Sussex PO19 1UD

\bye

End of UKTeX Digest [Volume 91 Issue 35]
****************************************