Re: tex font problems

1996-09-06 Thread Susan G. Kleinmann
Hi Hakan --
You said:
 I am having trouble with the latex font, all non normal characters like
 \{a}, \aa and so on does not show up in the .dvi file. Has anybody else
 moticed this? 

As far as I can tell, these are not LaTeX constructions, but TeX constructions.
I made a silly .tex file with these lines:

=begin junk.tex
backslash quote curly-brace a curly-brace is \{a}.
backslash a a is \aa.
\vfill \eject \end
=end   junk.tex

Then I ran 
tex junk
dvips -o morejunk junk
ghostview morejunk

and the characters showed up just as expected.

You can get an umlaut (Tex \{a}) in LaTeX by using the german option
to the babel package:  
   \usepackage[german]{babel}

I suspect you can get an Angstrom (Tex \aa) in LaTeX by using the 
swedish option.  You can use two options at once by giving them as
a comma seperated list:
   \usepackage[german,swedish]{babel}

Good luck,
Susan Kleinmann



Re: tex font problems

1996-09-06 Thread Thomas Schiex

 On Thu, 05 Sep 1996 21:28:37 -0400, Susan G. Kleinmann [EMAIL 
 PROTECTED] said:

Susan Hi Hakan -- You said:
 I am having trouble with the latex font, all non normal characters like
 \{a}, \aa and so on does not show up in the .dvi file. Has anybody else
 moticed this?

Susan As far as I can tell, these are not LaTeX constructions, but TeX
Susan constructions.  I made a silly .tex file with these lines[...]

This is not the reason. Accented characters do work in LaTeX as in
TeX. Actually the following text:

---
\documentclass{article}

\begin{document}

\a.

\end{document}
---

does produce an umlaut on the a. The problem may come from the fact that you
use a wrong encoding (eg.: you actually typed a real ä using iso-latin1
and you use a US cmr font instead of using the EURO DC font. In this case,
and if you use LaTeX2e style as above, try using

\usepackage[T1]{fontenc}). 

So the following text will be Ok (but would'nt w/o the fontenc package).

---
\documentclass{article}
\usepackage[T1]{fontenc}

\begin{document}

ä

\end{document}
---

(NOTE: You will probably get an error message telling that dcr1000.mf is not
found: the Debian LaTeX DC font installation is FAULTY here (a mismatch
between the version of the DC fonts and the version of the font description
files). Try getting the last version of the DC fonts on a CTAN archive (see
below). You'll find them in

fonts/dc/ready-mf/*

(these files should replace all the files that are in
/usr/lib/texmf/fonts/source/public/dc/ )

fonts/dc/tfm/*

(these files should relplace all files in 
/usr/lib/texmf/fonts/tfm/public/dc/)


 CTAN Mirrors list

In order to reduce network load, it is recommended that you use the
Comprehensive TeX Archive Network (CTAN) host which is located in the
closest network proximity to your site.  Alternatively, you may wish to
obtain a copy of the CTAN via CD-ROM (see help/CTAN.cdrom for details).

Known partial mirrors of the CTAN reside on (alphabetically):
  ftp.adfa.oz.au (Australia)/pub/tex/ctan
  ftp.fcu.edu.tw (Taiwan)   /pub2/tex
  ftp.germany.eu.net (Deutschland)  /pub/packages/TeX
  ftp.cs.ruu.nl (The Netherlands)   /pub/tex-archive
  ftp.uu.net (Virginia, USA)/pub/text-processing/TeX
  nic.switch.ch (Switzerland)   /mirror/tex
  sunsite.dsi.unimi.it (Italia) /pub/TeX

Known mirrors of the CTAN reside on (alphabetically):
  ctan.unsw.edu.au (NSW, Australia) /tex-archive
  cis.utovrm.it (Italia)/TeX
  dongpo.math.ncu.edu.tw (Taiwan)   /tex-archive
  ftp.center.osaka-u.ac.jp (Japan)  /CTAN
  ftp.ccu.edu.tw (Taiwan)   /pub/tex
  ftp.cdrom.com (West coast, USA)   /pub/tex/ctan
  ftp.comp.hkbu.edu.hk (Hong Kong)  /pub/TeX/CTAN
  ftp.cs.rmit.edu.au  (Australia)   /tex-archive
  ftp.cstug.cz (The Czech Republic) /pub/tex/CTAN
  ftp.duke.edu (North Carolina, USA)/tex-archive
  ftp.ee.up.ac.za (South Africa)/tex-archive
  ftp.funet.fi (Finland)/pub/TeX/CTAN
  ftp.gwdg.de (Deutschland) /pub/dante
  ftp.jussieu.fr (France)   /pub4/TeX/CTAN
  ftp.loria.fr (France) /pub/unix/tex/ctan
  ftp.mpi-sb.mpg.de (Deutschland)   /pub/tex/mirror/ftp.dante.de
  ftp.nada.kth.se (Sweden)  /pub/tex/ctan-mirror
  ftp.rge.com (New York, USA)   /pub/tex
  ftp.riken.go.jp (Japan)   /pub/tex-archive
  ftp.tu-chemnitz.de (Deutschland)  /pub/tex
  ftp.uni-augsburg.de (Deutschland) /tex-archive
  ftp.uni-bielefeld.de (Deutschland)/pub/tex
  ftp.unina.it (Italia) /pub/TeX
  ftp.uni-stuttgart.de (Deutschland)/tex-archive (/pub/tex)
  ftp.univie.ac.at (\Osterreich)   /packages/tex
  ftp.u-aizu.ac.jp (Japan)  /pub/tex/CTAN
  ftpserver.nus.sg (Singapore)  /pub/zi/TeX
  kadri.ut.ee (Estonia) /pub/tex
  src.doc.ic.ac.uk (England)/packages/tex/uk-tex
  sunsite.icm.edu.pl (Poland)   /pub/CTAN
  sunsite.queensu.ca (Canada)   /pub/tex-archive
  sunsite.unc.edu (North Carolina, USA) /pub/packages/TeX
  wuarchive.wustl.edu (Missouri, USA)   /packages/TeX

Please send updates to this list to [EMAIL PROTECTED].

The participating hosts in the Comprehensive TeX Archive Network are:
  ftp.dante.de  (Deutschland) 
   -- anonymous ftp /tex-archive (/pub/tex /pub/archive)
   -- gopher on node gopher.dante.de
   -- e-mail via [EMAIL PROTECTED]
   -- World Wide Web access on www.dante.de
   -- Administrator: [EMAIL PROTECTED]

  ftp.tex.ac.uk (England)   
   -- anonymous ftp /tex-archive (/pub/tex /pub/archive)
   -- gopher on node gopher.tex.ac.uk
   -- NFS mountable from nfs.tex.ac.uk:/public/ctan/tex-archive
   -- World Wide Web access on www.tex.ac.uk
   -- Administrator: [EMAIL PROTECTED]



Re: tex font problems

1996-09-06 Thread Mario Olimpio de Menezes
On Fri, 6 Sep 1996, Thomas Schiex wrote:

 
  On Thu, 05 Sep 1996 21:28:37 -0400, Susan G. Kleinmann [EMAIL 
  PROTECTED] said:
 
 Susan Hi Hakan -- You said:
  I am having trouble with the latex font, all non normal characters like
  \{a}, \aa and so on does not show up in the .dvi file. Has anybody else
  moticed this?
 
 Susan As far as I can tell, these are not LaTeX constructions, but TeX
 Susan constructions.  I made a silly .tex file with these lines[...]
 
 This is not the reason. Accented characters do work in LaTeX as in
 TeX. Actually the following text:
 
 ---
 \documentclass{article}
 
 \begin{document}
 
 \a.
 
 \end{document}
 ---
 
 does produce an umlaut on the a. The problem may come from the fact that you
 use a wrong encoding (eg.: you actually typed a real ä using iso-latin1
 and you use a US cmr font instead of using the EURO DC font. In this case,
 and if you use LaTeX2e style as above, try using
 
   \usepackage[T1]{fontenc}). 
 
 So the following text will be Ok (but would'nt w/o the fontenc package).
 

Hello

Another possibility is that you are trying to use some of the
following commands inside a mathematical formula, without using
\mbox.  From Latex - A Doc. prep. system (Lamport, L.,) pg. 38-39:
--- ... The command in Table 3.2 can appear only in paragraphy
and LR modes; use an \mbox command to put one inside a mathematical
formula.

 \oe\aa\l ?'
 \OE\AA\L !'
 \ae\o \ss
 \AE\O 

Table 3.2

HTH,
[]s, mario 


   Mario O.de Menezes -oo-O-oo  - mailto:[EMAIL PROTECTED] 
 | Nuclear and Energetic Research Institute - IPEN-CNEN/SP | 
 | BRAZIL -  fone (+55) 011-816.9175   fax (+55) 011-8l6.9188  |
 |  http://tucano.ipen.br  -  http://www.ipen.br/~mario/mario.html |



Re: tex font problems

1996-09-06 Thread Hakan Ardo
Susan G. Kleinmann wrote:
  \{a}, \aa and so on does not show up in the .dvi file. Has anybody else
  moticed this? 
 
 As far as I can tell, these are not LaTeX constructions, but TeX 
 constructions.
 I made a silly .tex file with these lines:
 
 =begin junk.tex
 backslash quote curly-brace a curly-brace is \{a}.
 backslash a a is \aa.
 \vfill \eject \end
 =end   junk.tex
 
 Then I ran 
 tex junk
 dvips -o morejunk junk
 ghostview morejunk
 
 and the characters showed up just as expected.

Well, they don't on my instalation :-) I tested just the same. But my junk.log
contains the two lines:

Missing character: There is no ^^e4 in font cmr10!
Missing character: There is no ^^e5 in font cmr10!


Thomas Schiex wrote:
 So the following text will be Ok (but would'nt w/o the fontenc package).
 
 ---
 \documentclass{article}
 \usepackage[T1]{fontenc}
 
 \begin{document}
 
 
 
 \end{document}
 ---
 
 (NOTE: You will probably get an error message telling that dcr1000.mf is not
 found: the Debian LaTeX DC font installation is FAULTY here (a mismatch

So I did.

 between the version of the DC fonts and the version of the font description
 files). Try getting the last version of the DC fonts on a CTAN archive (see
 below). You'll find them in
 
   fonts/dc/ready-mf/*
 
   (these files should replace all the files that are in
   /usr/lib/texmf/fonts/source/public/dc/ )

hmm, I have no /usr/lib/texmf/fonts/source/public/dc/ directory. But the 
status of mfdcfnt is ok installed, Version: 1.0-1. However, I created one
and placed the new fonts there.

   
   fonts/dc/tfm/*
 
   (these files should relplace all files in 
   /usr/lib/texmf/fonts/tfm/public/dc/)

OK, that directory excisted, so I updated it.

And, now your latex example works just fine (using ISO characters in the latex
file), but Susan G. Kleinmann's junk.tex still wount give me any umlaut 
characters.

 



tex font problems

1996-09-03 Thread Hakan Ardo
Hi,
I am having trouble with the latex font, all non normal characters like
\{a}, \aa and so on does not show up in the .dvi file. Has anybody else
moticed this? And maby has a fix for it?