From MacOSX-TeX@email.esm.psu.edu Sun Jun  5 19:55:42 2005
Received: from engremail.engr.psu.edu ([130.203.201.4]) by ENGRMAIL1.engr.psu.edu with Microsoft SMTPSVC(5.0.2195.6713);
	 Sun, 5 Jun 2005 19:55:42 -0400
Received: from email.esm.psu.edu ([130.203.247.204]) by engremail.engr.psu.edu with Microsoft SMTPSVC(5.0.2195.6713);
	 Sun, 5 Jun 2005 19:55:42 -0400
Date: Sun, 5 Jun 2005 20:00:13 -0400
Message-ID: <46413.67362@email.esm.psu.edu>
Subject: MacOSX-TeX Digest #1394 - 06/05/05
From: "TeX on Mac OS X Mailing List" 
To: "TeX on Mac OS X Mailing List" 
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-transfer-encoding: quoted-printable
Sender: 
Precedence: List
List-Software: LetterRip Pro 4.05 (0531) by LetterRip Software, LLC.
List-Subscribe: 
List-Digest: 
List-Unsubscribe: 
X-LR-SENT-TO: mail.engr.psu.edu
Return-Path: MacOSX-TeX@email.esm.psu.edu
X-OriginalArrivalTime: 05 Jun 2005 23:55:42.0151 (UTC) FILETIME=[14E2DD70:01C56A2A]

MacOSX-TeX Digest #1394 - Sunday, June 5, 2005

  Re: [OS X TeX] Tiger Change All Open With
          by "Bob Kerstetter" 

  fractions with arrows
          by "Sergei Mariev" 

  Re: [OS X TeX] fractions with arrows
          by "scheissenochmal2003@yahoo.de" 

  Re: [OS X TeX] fractions with arrows
          by "Sergei Mariev" 

  HA-Prosper and gwtex - question of a gwtex newbie
          by "Johannes Brauer" 

  Re: [OS X TeX] UTI for Textures documents
          by "Peter Dyballa" 

  Re: [OS X TeX] HA-Prosper and gwtex - question of a gwtex newbie
          by "Bruno Voisin" 

  Re: [OS X TeX] fractions with arrows
          by "Ross Moore" 

  Re: [OS X TeX] fractions with arrows
          by "Herbert Schulz" 

  Re: [OS X TeX] fractions with arrows
          by "Franck Pastor" 

  Re: [OS X TeX] UTI for Textures documents
          by "Jon Guyer" 

  Re: [OS X TeX] HA-Prosper and gwtex - question of a gwtex newbie
          by "Johannes Brauer" 

  Re: [OS X TeX] HA-Prosper and gwtex - question of a gwtex newbie
          by "Bruno Voisin" 

  Re: [OS X TeX] Once more: TeXShop wishlist
          by "Simon Spiegel" 

  Re: [OS X TeX] HA-Prosper and gwtex - question of a gwtex newbie
          by "Bruno Voisin" 

  Re: [OS X TeX] Tiger Change All Open With
          by "Alan Curtis" 


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

Subject: Re: [OS X TeX] Tiger Change All Open With
From: "Bob Kerstetter" 
Date: Sun, 5 Jun 2005 00:03:19 -0500


On Jun 4, 2005, at 2:16 AM, Michael Gedalin wrote:

>> For some reason, my Tiger has associated .tex files with Script
>> Editor. I can Get Info and change one file's open with to TexShop,
>> but when I press the Change All button it reverts to Script Editor.
>> Anyone know how to fix this?
>>
>> Alan
>>
>>
>>
>
> I had similar problems with associating all .tex files with  
> StuffitExpander. Removal of SE and cleaning caches worked. I put SE  
> back and everything is ok. May be deep cache cleaning would suffice  
> for you. I used AppleJack.
>

Things here seldom get messy, maybe because the machine gets  
restarted once a week, so it does the "start up disk maintenance"  
weekly.

But when things do get messy, restarting the machine, running these  
commands from the terminal and then restarting again always cleans up  
things:

rm -rfv ~/Library/Caches/*
sudo rm -rfv /Library/Caches/*
sudo rm -rfv /System/Library/Caches/*
sudo rm -rfv /System/Library/Extensions.kextcache

For the final three commands you have to be logged into the terminal  
as an admin. Because I run with a standard account, not an admin  
account, I must use:

su adminaccountname

and then enter the password for adminaccountname before doing the  
sudo commands.

Maybe the restarts are not necessary. But clearing the caches appears  
to clean up problems when they arise, now and then.

Bob Kerstetter
http://homepage.mac.com/bkerstetter/


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

Subject: fractions with arrows
From: "Sergei Mariev" 
Date: Sun, 5 Jun 2005 11:28:59 +0200

Dear all,

I am trying to typset a fraction (A on top, B below it) and I want to 
have a curve arrow pointing from B to A on the left side of the 
fraction and from A to B on the right side of the fraction. It can't 
be a straight arrow pointing from top to bottom or the other way 
around, it has to be a curve arrow. Ideally, it should start 
approximately in the middle of the line where A is and end in the 
middle of the line where B is (But bottom of the line to top would do 
it too)  Is there an easy way to do this? I have looked at all 
possible arrows in all possible math styles, the closest thing I 
found is \curvearrowleft and \curvearrowright, but I need 
"\citvearrowtop" and \"\curvearrowbottom" Does such thing exist in 
one package or other? Have I overlooked something? or some other way 
of doing this?

Thanks a lot!

sergei

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

Subject: Re: [OS X TeX] fractions with arrows
From: "scheissenochmal2003@yahoo.de" 
Date: Sun, 05 Jun 2005 12:22:40 +0200

Hi,

quick and dirty, you could try something like

   \documentclass{report}
   \usepackage{amssymb,graphics}

   \begin{document}
   \raisebox{-0.4ex}{\scalebox{0.8}{\rotatebox{90}{$\curvearrowleft$}}}
    $\frac{A}{B}$
   \raisebox{1.6ex}{\scalebox{0.8}{\rotatebox{270}{$\curvearrowleft$}}}
   \end{document}

and fiddle around with the sizing and positioning to match the fonts 
that you want to use. You need the graphics Package to be able to use 
\rotatebox as far as I know.

If you have to use such arrows more regularly, you could also define them:

\newcommand{\curvedarrowbottom}{\raisebox{-0.4ex}{\scalebox{0.8}{\rotatebox=
{90}{$\curvearrowleft$}}}}
\newcommand{\curvedarrowtop}{\raisebox{1.6ex}{\scalebox{0.8}{\rotatebox{270=
}{$\curvearrowleft$}}}}


Good luck,
Stephan



Sergei Mariev wrote:

> Dear all,
> 
> I am trying to typset a fraction (A on top, B below it) and I want to 
> have a curve arrow pointing from B to A on the left side of the fraction =

> and from A to B on the right side of the fraction. It can't be a 
> straight arrow pointing from top to bottom or the other way around, it 
> has to be a curve arrow. Ideally, it should start approximately in the 
> middle of the line where A is and end in the middle of the line where B 
> is (But bottom of the line to top would do it too)  Is there an easy way =

> to do this? I have looked at all possible arrows in all possible math 
> styles, the closest thing I found is \curvearrowleft and 
> \curvearrowright, but I need "\citvearrowtop" and \"\curvearrowbottom" 
> Does such thing exist in one package or other? Have I overlooked 
> something? or some other way of doing this?
> 
> Thanks a lot!
> 
> sergei


	

	
		
___________________________________________________________ 
Gesendet von Yahoo! Mail - Jetzt mit 1GB Speicher kostenlos - Hier =
anmelden: http://mail.yahoo.de

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

Subject: Re: [OS X TeX] fractions with arrows
From: "Sergei Mariev" 
Date: Sun, 5 Jun 2005 12:51:21 +0200

Great, thanks a lot, it works just fine for me!

>Hi,
>
>quick and dirty, you could try something like
>
>   \documentclass{report}
>   \usepackage{amssymb,graphics}
>
>   \begin{document}
>   \raisebox{-0.4ex}{\scalebox{0.8}{\rotatebox{90}{$\curvearrowleft$}}}
>    $\frac{A}{B}$
>   \raisebox{1.6ex}{\scalebox{0.8}{\rotatebox{270}{$\curvearrowleft$}}}
>   \end{document}
>
>and fiddle around with the sizing and positioning to match the fonts 
>that you want to use. You need the graphics Package to be able to 
>use \rotatebox as far as I know.
>
>If you have to use such arrows more regularly, you could also define =
them:
>
>\newcommand{\curvedarrowbottom}{\raisebox{-0.4ex}{\scalebox{0.8}{\rotatebo=
x{90}{$\curvearrowleft$}}}}
>\newcommand{\curvedarrowtop}{\raisebox{1.6ex}{\scalebox{0.8}{\rotatebox{27=
0}{$\curvearrowleft$}}}}
>
>
>Good luck,
>Stephan
>
>
>
>Sergei Mariev wrote:
>
>>Dear all,
>>
>>I am trying to typset a fraction (A on top, B below it) and I want 
>>to have a curve arrow pointing from B to A on the left side of the 
>>fraction and from A to B on the right side of the fraction. It 
>>can't be a straight arrow pointing from top to bottom or the other 
>>way around, it has to be a curve arrow. Ideally, it should start 
>>approximately in the middle of the line where A is and end in the 
>>middle of the line where B is (But bottom of the line to top would 
>>do it too)  Is there an easy way to do this? I have looked at all 
>>possible arrows in all possible math styles, the closest thing I 
>>found is \curvearrowleft and \curvearrowright, but I need 
>>"\citvearrowtop" and \"\curvearrowbottom" Does such thing exist in 
>>one package or other? Have I overlooked something? or some other 
>>way of doing this?
>>
>>Thanks a lot!
>>
>>sergei
>
>
>
>
>
>
>___________________________________________________________ Gesendet 
>von Yahoo! Mail - Jetzt mit 1GB Speicher kostenlos - Hier anmelden: 
>http://mail.yahoo.de
>--------------------- Info ---------------------
>Mac-TeX Website: http://www.esm.psu.edu/mac-tex/
>           & FAQ: http://latex.yauh.de/faq/
>TeX FAQ: http://www.tex.ac.uk/faq
>List Post: 


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

Subject: HA-Prosper and gwtex - question of a gwtex newbie
From: "Johannes Brauer" 
Date: Sun, 5 Jun 2005 14:14:37 +0200

Hi,

recently I used OzTex + HA-Prosper package + Acrobat distiller for =20
producing my slides. Now I am trying to switch from OzTex to the =20
gwTeX-Distribution. But all my files, which I could tex without any =20
errors using OzTex, create the following error message, if I use gwTeX:

This is pdfeTeX, Version 3.141592-1.20a-2.2 (Web2C 7.5.3)
  \write18 enabled.
output format initialized to PDF
entering extended mode
(./FpFolien1.tex
LaTeX2e <2003/12/01>
Babel  and hyphenation patterns for american, french, german, =20
ngerman, d
utch, italian, norsk, portuges, spanish, swedish, nohyphenation, loaded.
(/usr/local/teTeX/share/texmf.gwtex/tex/latex/prosper/prosper.cls
Document Class: prosper 2001/07/17, v. 1.5
(c) 2000-2001 Frederic Goualard, EPFL, Switzerland
  and Peter M=AFller Neergaard, Boston Univ., USA
CVSId: $Id: prosper.cls,v 1.24 2002/11/25 14:35:50 exupery Exp $
(/usr/local/teTeX/share/texmf.tetex/tex/latex/graphics/graphicx.sty
(/usr/local/teTeX/share/texmf.tetex/tex/latex/graphics/keyval.sty)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/graphics/graphics.sty
(/usr/local/teTeX/share/texmf.tetex/tex/latex/graphics/trig.sty)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/graphics/graphics.cfg)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/graphics/pdftex.def)))
(/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/seminar.cls
Document Class: seminar 1997/10/13, 1.4
Document Style: `seminar' v1.4 <1997/10/13> (tvz)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/base/article.cls
Document Class: article 2004/02/16 v1.4f Standard LaTeX document class
(/usr/local/teTeX/share/texmf.tetex/tex/latex/base/leqno.clo)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/base/size10.clo))
(/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/sem-page.sty))
(/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/seminar.con)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/semcolor.sty
Style Option: `semcolor' for doc style `seminar' 1.01 <2004/05/18> (tvz)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/pstricks/pstricks.sty
(/usr/local/teTeX/share/texmf.tetex/tex/generic/pstricks/pstricks.tex
`PSTricks' v1.04  <2004/06/22> (tvz)
(/usr/local/teTeX/share/texmf.tetex/tex/generic/pstricks/pstricks.con))
(/usr/local/teTeX/share/texmf.tetex/tex/latex/xcolor/xcolor.sty
(/usr/local/teTeX/share/texmf.tetex/tex/latex/graphics/color.cfg))))
(/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/semlayer.sty)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/seminar.bug)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/seminar.bg2
seminar.bg2: various corrections for the Seminar document class added =20=

since sem
inar.bug (waiting Seminar 98)
(Version 1.7 of  (D.G.))
) (/usr/local/teTeX/share/texmf.tetex/tex/latex/hyperref/hyperref.sty
(/usr/local/teTeX/share/texmf.tetex/tex/latex/hyperref/pd1enc.def)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/hyperref/hyperref.cfg)
Implicit mode ON; LaTeX internals redefined
(/usr/local/teTeX/share/texmf.tetex/tex/latex/url/url.sty))
*hyperref using driver hdvips*
(/usr/local/teTeX/share/texmf.tetex/tex/latex/hyperref/hdvips.def
(/usr/local/teTeX/share/texmf.tetex/tex/latex/hyperref/pdfmark.def))
(/usr/local/teTeX/share/texmf.gwtex/tex/latex/prosper/PPRdefault.sty
`default' style for Prosper ---
CVSId: $Id: PPRdefault.sty,v 1.3 2001/10/24 15:11:25 exupery Exp $

(/usr/local/teTeX/share/texmf.tetex/tex/latex/amsfonts/amssymb.sty
(/usr/local/teTeX/share/texmf.tetex/tex/latex/amsfonts/amsfonts.sty))
(/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/semhelv.sty
Style Option: `semhelv' for the `seminar' doc style 1.4 <2000/05/08> =20
(tvz)
Modified by Stefan (see source for details)
))) =20
(/usr/local/teTeX/share/texmf.gwtex/tex/latex/HA-prosper/HA-prosper.sty
(c) 2003-2004 Hendri Adriaens, Tilburg, the Netherlands

(/Volumes/WaUser/johannes/Library/texmf/tex/latex/xkeyval/run/=20
xkeyval.sty
(/Volumes/WaUser/johannes/Library/texmf/tex/latex/xkeyval/run/=20
xkeyval.tex))
(/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/xcomment.sty
Style-Option: `xcomment' v1.2 <93/02/12> (tvz)
) (/usr/local/teTeX/share/texmf.tetex/tex/latex/tools/verbatim.sty)
! Undefined control sequence.
\HAPsetup #1->\xsetkeys
                         =20
{HAP@keys@globalonly,HAP@keys@slide,HAP@keys@step}{#1}
l.1006 }

?
Process aborted
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

Hendri Adriaens told me to update the xkeyval package. I did it but the =20=

error message remains the same. So Hendri recommended to mail the =20
problem to this list. He said the error is not reproducable in a =20
"normal" tetex environment and he had never heard about gwtex.

Can anyone help?

Johannes


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

Subject: Re: [OS X TeX] UTI for Textures documents
From: "Peter Dyballa" 
Date: Sun, 5 Jun 2005 14:18:50 +0200


Am 04.06.2005 um 20:29 schrieb Bruno Voisin:

> Or can this be achieved by editing some .plist file somewhere

All=F4 Bruno!

In the application's Info.plist there can be an "export" statement that=20=

would tell launchd that this app works on files of that extension. I=20
tried to find that piece of information again, without success. AFAIR=20
this does not guarantee that a particular application will open that=20
file since there can be more than one app claiming of being able to=20
handle that kind of file -- but at least the cure is easy then:=20
'correct' the others' Info.plist files!

Since you're already with Tiger: can't you check the Info.plist files?=20=

I think I'll convert during the next ten days ...

Rainer Brockerhoff has for Jaguar and Panther two applications, X Ray=20
and Zingg! (http://www.brockerhoff.net/xray/notes.html,=20
http://www.brockerhoff.net/zingg/notes.html). Both rely and use either=20=

UTI and file extensions or Creator/Type codes -- could be he comes with=20=

a solution.

--
Greetings

   Pete

War springs from unseen and generally insignificant causes.
-Anonymous


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

Subject: Re: [OS X TeX] HA-Prosper and gwtex - question of a gwtex newbie
From: "Bruno Voisin" 
Date: Sun, 5 Jun 2005 14:42:33 +0200

Le 5 juin 05 =E0 14:14, Johannes Brauer a =E9crit :

> recently I used OzTex + HA-Prosper package + Acrobat distiller for =20
> producing my slides. Now I am trying to switch from OzTex to the =20
> gwTeX-Distribution. But all my files, which I could tex without any =20=

> errors using OzTex, create the following error message, if I use =20
> gwTeX:
>
> This is pdfeTeX, Version 3.141592-1.20a-2.2 (Web2C 7.5.3)
>  \write18 enabled.
> output format initialized to PDF
> entering extended mode
> [...]
> (/usr/local/teTeX/share/texmf.tetex/tex/latex/pstricks/pstricks.sty
> (/usr/local/teTeX/share/texmf.tetex/tex/generic/pstricks/pstricks.tex
> `PSTricks' v1.04  <2004/06/22> (tvz)
> (/usr/local/teTeX/share/texmf.tetex/tex/generic/pstricks/=20
> pstricks.con))

You seem to be using the pstricks package with pdfTeX. That can't =20
work, with pdfTeX you need to use derivative versions of pstricks, =20
designed to work with the PDF format.

The easiest fix: use TeX + dvips + GhostScript instead of pdfTeX. In =20
case you're using TeXShop, this is done by selecting TeX + =20
GhostScript in Prefs/Typeset, or TeX + GhostScript in the Typeset menu.

HTH,

Bruno Voisin=

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

Subject: Re: [OS X TeX] fractions with arrows
From: "Ross Moore" 
Date: Mon, 6 Jun 2005 01:04:12 +1000


On 05/06/2005, at 7:28 PM, Sergei Mariev wrote:

> Dear all,
>
> I am trying to typset a fraction (A on top, B below it) and I want to 
> have a curve arrow pointing from B to A on the left side of the 
> fraction and from A to B on the right side of the fraction. It can't 
> be a straight arrow pointing from top to bottom or the other way 
> around, it has to be a curve arrow. Ideally, it should start 
> approximately in the middle of the line where A is and end in the 
> middle of the line where B is (But bottom of the line to top would do 
> it too)  Is there an easy way to do this?

Use the Xy-pic package.

> I have looked at all possible arrows in all possible math styles, the 
> closest thing I found is \curvearrowleft and \curvearrowright, but I 
> need "\citvearrowtop" and \"\curvearrowbottom" Does such thing exist 
> in one package or other? Have I overlooked something? or some other 
> way of doing this?
>
> Thanks a lot!

Hope this helps,

	Ross Moore

>
> sergei
> --------------------- Info ---------------------
> Mac-TeX Website: http://www.esm.psu.edu/mac-tex/
>           & FAQ: http://latex.yauh.de/faq/
> TeX FAQ: http://www.tex.ac.uk/faq
> List Post: 
>
>
>
------------------------------------------------------------------------
Ross Moore                                         ross@maths.mq.edu.au
Mathematics Department                             office: E7A-419
Macquarie University                               tel: +61 +2 9850 8955
Sydney, Australia                                  fax: +61 +2 9850 8114
------------------------------------------------------------------------


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

Subject: Re: [OS X TeX] fractions with arrows
From: "Herbert Schulz" 
Date: Sun, 5 Jun 2005 10:59:41 -0500


On Jun 5, 2005, at 10:04 AM, Ross Moore wrote:

>
> Use the Xy-pic package.
>

Howdy,

Just for curiosity's sake, does the xypic package need dvips or will  
it work fine under pdflatex (with pdftricks if necessary)? The  
documentation mentions METAFONT but also has a reference to PostScript.

Good Luck,

Herb Schulz
(herbs@wideopenwest.com)



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

Subject: Re: [OS X TeX] fractions with arrows
From: "Franck Pastor" 
Date: Sun, 5 Jun 2005 20:15:01 +0200

> Howdy,
>
> Just for curiosity's sake, does the xypic package need dvips or will 
> it work fine under pdflatex (with pdftricks if necessary)? The 
> documentation mentions METAFONT but also has a reference to 
> PostScript.
>
> Good Luck,
>
> Herb Schulz
> (herbs@wideopenwest.com)

It works fine with pdflatex and... Newpdftricks ;-) (pictures are often 
cropped with the original pdftricks).

Ross Moore has already answered to a similar question a few weeks ago. 
I have found this in the archives :


[quote=3DRoss Moore]
There are 2 ways to get better diagrams when using XYpic with pdftex .

A.
One way is to load the  xypdftex  driver-support file:

       \usepackage[pdftex,all,....]{xy}


You should get a line in the .log console window:

(/usr/local/teTeX/share/texmf-local/tex/generic/xypic/xypdftex.tex
   Xy-pic option: pdf-TeX driver v.3.8 loaded)


This requires certain support files to be available, which you can
get from:
      http://www-texdev.ics.mq.edu.au/xypic/xypdf.tgz

which archive has the file:  xypdftex.tex
and several others with similar names:  xypdf???.tex .
All should go into the same location as   xypic.sty
though elsewhere in a texmf/ tree should also work.

Maybe  gwTeX  already installs this for you.


B.
The 2nd way is to make use of nice PostScript drawing
commands that Xy-pic can use. Load it this way:

        \usepackage[ps,dvips,all,....]{xy}

with the 'ps' and 'dvips' options being the critical ones.

Now you are in a situation similar to using PStricks with pdfTeX.

There are packages  pdftricks,  ps4pdf  etc.
which implement the 3-step strategy of running TeX+Ghostscript
to first make the diagrams in PostScript, then convert to PDF,
for finally importing PDF images into the main document.



This latter is the best way to go, for output of the highest
quality, with access to proper PostScript lines, curves,
ovals, scaling, rotations, etc.



Hope this helps,

	Ross

[/quote]


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

Subject: Re: [OS X TeX] UTI for Textures documents
From: "Jon Guyer" 
Date: Sun, 5 Jun 2005 14:29:01 -0400


On Jun 5, 2005, at 8:18 AM, Peter Dyballa wrote:

> Rainer Brockerhoff has for Jaguar and Panther two applications, X Ray 
> and Zingg! (http://www.brockerhoff.net/xray/notes.html, 
> http://www.brockerhoff.net/zingg/notes.html). Both rely and use either 
> UTI and file extensions or Creator/Type codes -- could be he comes 
> with a solution.

Given that Rainer is the one struggling with this aspect of UTIs over 
on carbon-dev, I think it's more likely that he's searching for a 
solution.

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

Subject: Re: [OS X TeX] HA-Prosper and gwtex - question of a gwtex newbie
From: "Johannes Brauer" 
Date: Sun, 5 Jun 2005 20:53:35 +0200

I tried it with TeX + dvips + GhostScript using TeXShop, but I get the =20=

same error message as before.

Johannes

console output:

### This is =20
/usr/local/teTeX/bin/powerpc-apple-darwin-current/altpdflatex, Version =20=

$Revision: 2.18 $
### /usr/local/teTeX/bin/powerpc-apple-darwin-current/latex =20
FpFolien1.tex
This is pdfeTeX, Version 3.141592-1.20a-2.2 (Web2C 7.5.3)
output format initialized to DVI
entering extended mode
(./FpFolien1.tex
LaTeX2e <2003/12/01>
Babel  and hyphenation patterns for american, french, german, =20
ngerman, d
utch, italian, norsk, portuges, spanish, swedish, nohyphenation, loaded.
(/Volumes/WaUser/teTeX/share/texmf.gwtex/tex/latex/prosper/prosper.cls
Document Class: prosper 2001/07/17, v. 1.5
(c) 2000-2001 Frederic Goualard, EPFL, Switzerland
  and Peter M=F8ller Neergaard, Boston Univ., USA
CVSId: $Id: prosper.cls,v 1.24 2002/11/25 14:35:50 exupery Exp $
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/graphics/graphicx.sty
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/graphics/keyval.sty)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/graphics/graphics.sty
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/graphics/trig.sty)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/graphics/=20
graphics.cfg)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/graphics/dvips.def)))
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/seminar/seminar.cls
Document Class: seminar 1997/10/13, 1.4
Document Style: `seminar' v1.4 <1997/10/13> (tvz)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/base/article.cls
Document Class: article 2004/02/16 v1.4f Standard LaTeX document class
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/base/leqno.clo)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/base/size10.clo))
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/seminar/sem-=20
page.sty))
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/seminar/seminar.con)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/seminar/semcolor.sty
Style Option: `semcolor' for doc style `seminar' 1.01 <2004/05/18> (tvz)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/pstricks/pstricks.sty
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/generic/pstricks/=20
pstricks.tex
`PSTricks' v1.04  <2004/06/22> (tvz)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/generic/pstricks/=20
pstricks.con))
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/xcolor/xcolor.sty
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/graphics/=20
color.cfg))))
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/seminar/semlayer.sty)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/seminar/seminar.bug)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/seminar/seminar.bg2
seminar.bg2: various corrections for the Seminar document class added =20=

since sem
inar.bug (waiting Seminar 98)
(Version 1.7 of  (D.G.))
) =20
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/hyperref/=20
hyperref.sty
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/hyperref/pd1enc.def)
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/hyperref/=20
hyperref.cfg)
Implicit mode ON; LaTeX internals redefined
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/url/url.sty))
*hyperref using driver hdvips*
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/hyperref/hdvips.def
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/hyperref/=20
pdfmark.def))
(/Volumes/WaUser/teTeX/share/texmf.gwtex/tex/latex/prosper/=20
PPRdefault.sty
`default' style for Prosper ---
CVSId: $Id: PPRdefault.sty,v 1.3 2001/10/24 15:11:25 exupery Exp $

(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/amsfonts/amssymb.sty
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/amsfonts/=20
amsfonts.sty))
(/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/seminar/semhelv.sty
Style Option: `semhelv' for the `seminar' doc style 1.4 <2000/05/08> =20
(tvz)
Modified by Stefan (see source for details)
)))

! LaTeX Error: Missing \begin{document}.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H   for immediate help.
  ...

l.1006 }

?

Am 05.06.2005 um 14:42 schrieb Bruno Voisin:

> Le 5 juin 05 =E0 14:14, Johannes Brauer a =E9crit :
>
>> recently I used OzTex + HA-Prosper package + Acrobat distiller for =20=

>> producing my slides. Now I am trying to switch from OzTex to the =20
>> gwTeX-Distribution. But all my files, which I could tex without any =20=

>> errors using OzTex, create the following error message, if I use =20
>> gwTeX:
>>
>> This is pdfeTeX, Version 3.141592-1.20a-2.2 (Web2C 7.5.3)
>>  \write18 enabled.
>> output format initialized to PDF
>> entering extended mode
>> [...]
>> (/usr/local/teTeX/share/texmf.tetex/tex/latex/pstricks/pstricks.sty
>> (/usr/local/teTeX/share/texmf.tetex/tex/generic/pstricks/pstricks.tex
>> `PSTricks' v1.04  <2004/06/22> (tvz)
>> (/usr/local/teTeX/share/texmf.tetex/tex/generic/pstricks/=20
>> pstricks.con))
>
> You seem to be using the pstricks package with pdfTeX. That can't =20
> work, with pdfTeX you need to use derivative versions of pstricks, =20
> designed to work with the PDF format.
>
> The easiest fix: use TeX + dvips + GhostScript instead of pdfTeX. In =20=

> case you're using TeXShop, this is done by selecting TeX + GhostScript =
=20
> in Prefs/Typeset, or TeX + GhostScript in the Typeset menu.
>
> HTH,
>
> Bruno Voisin--------------------- Info ---------------------
> Mac-TeX Website: http://www.esm.psu.edu/mac-tex/
>           & FAQ: http://latex.yauh.de/faq/
> TeX FAQ: http://www.tex.ac.uk/faq
> List Post: 
>
>


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

Subject: Re: [OS X TeX] HA-Prosper and gwtex - question of a gwtex newbie
From: "Bruno Voisin" 
Date: Sun, 5 Jun 2005 22:03:36 +0200

Le 5 juin 05 =E0 20:53, Johannes Brauer a =E9crit :

> I tried it with TeX + dvips + GhostScript using TeXShop, but I get =20
> the same error message as before.

It's actually a different message but occurring at the same line (# =20
1006).

Before:

> (/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/semhelv.sty
> Style Option: `semhelv' for the `seminar' doc style 1.4 =20
> <2000/05/08> (tvz)
> Modified by Stefan (see source for details)
> ))) (/usr/local/teTeX/share/texmf.gwtex/tex/latex/HA-prosper/HA-=20
> prosper.sty
> (c) 2003-2004 Hendri Adriaens, Tilburg, the Netherlands
>
> (/Volumes/WaUser/johannes/Library/texmf/tex/latex/xkeyval/run/=20
> xkeyval.sty
> (/Volumes/WaUser/johannes/Library/texmf/tex/latex/xkeyval/run/=20
> xkeyval.tex))
> (/usr/local/teTeX/share/texmf.tetex/tex/latex/seminar/xcomment.sty
> Style-Option: `xcomment' v1.2 <93/02/12> (tvz)
> ) (/usr/local/teTeX/share/texmf.tetex/tex/latex/tools/verbatim.sty)
> ! Undefined control sequence.
> \HAPsetup #1->\xsetkeys
>                         =20
> {HAP@keys@globalonly,HAP@keys@slide,HAP@keys@step}{#1}
> l.1006 }

After:

> (/Volumes/WaUser/teTeX/share/texmf.tetex/tex/latex/seminar/semhelv.sty
> Style Option: `semhelv' for the `seminar' doc style 1.4 =20
> <2000/05/08> (tvz)
> Modified by Stefan (see source for details)
> )))
>
> ! LaTeX Error: Missing \begin{document}.
>
> See the LaTeX manual or LaTeX Companion for explanation.
> Type  H   for immediate help.
>  ...
>
> l.1006 }

You'll notice the xkeyval package is no longer read. The new error =20
("Missing \begin{document}") is generally what's got when asking =20
LaTeX to process a file whose name contains a space. That doesn't =20
seem the case here.

I'm a bit puzzled by the differences between /usr/local/teTeX/ and /=20
Volumes/WaUser/teTeX/. Do you have two TeX trees, one on your hard =20
drive and one on another mounted volume? It looks like LaTeX is =20
picking up files at random between these two locations. Hence =20
possible incompatibilities between different versions of LaTeX =20
packages on the two volumes.

It's difficult to diagnose what's wrong without knowing what's inside =20=

your file. Could you send it off-list?

Bruno=

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

Subject: Re: [OS X TeX] Once more: TeXShop wishlist
From: "Simon Spiegel" 
Date: Sun, 5 Jun 2005 22:21:19 +0200


On 04.06.2005, at 17:31, Herbert Schulz wrote:

>
> On Jun 4, 2005, at 10:01 AM, Simon Spiegel wrote:
>
>
>>
>> - And of course, I'd love .Mac support. Share your settings, =20
>> shortcuts, scripts etc. among several computers.
>>
>> Thanks for your great work.
>>
>> simon
>>
>>
>>
>
> Howdy,
>
> Hmm.. Why not just .zip up your ~/LibraryTeXShop/ directory, put it =20=

> up on your .MAC account and then you can download it from anywhere. =20=

> Not automatic but it should work fine.
>
> Good Luck,
>
>

That would of course be possible, but the beauty of .Mac sync is =20
exactly that it all happens automagically. Very convenient for =20
addresses and mail rules.

simon

--
Simon Spiegel
Mutschellenstr. 97
8038 Z=FCrich

Telephon: ++41 43 535 81 71
Mobophon: ++41 76 459 60 39

http://www.simifilm.ch

"I'm not that easy to impress. =96 O, a blue car." Homer Simpson




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

Subject: Re: [OS X TeX] HA-Prosper and gwtex - question of a gwtex newbie
From: "Bruno Voisin" 
Date: Sun, 5 Jun 2005 23:45:38 +0200

Le 5 juin 05 =E0 23:15, Johannes Brauer a =E9crit :

> I enclose a small test file which produces the same errors.

That's a version problem. The error occurs when reading line 1006 of =20
the file /usr/local/teTeX/share/texmf.gwtex/tex/latex/HA-prosper/HA-=20
prosper.sty, which has version:

\def\HAP@Version{v4.2}
\ProvidesPackage{HA-prosper}[2004/05/29 \HAP@Version\space Patch for =20
prosper]

Downloading from CTAN the current package ha-prosper, the file HA-=20
prosper.sty inside it has version:

\def\HAP@Version{v4.21}
\ProvidesPackage{HA-prosper}[2004/08/20 \HAP@Version\space Patch for =20
prosper]

And a comparison of the two files with FileMerge yields a couple of =20
added lines in the new version, all related with \setkeys and \xsetkeys.

Putting the more recent ha-prosper directory from CTAN inside ~/=20
Library/texmf/tex/latex/, the error disappears. (I get other errors =20
due to missing HAPNA style and file path.tex, but these must be =20
specific files on your setup.)

HTH,

Bruno Voisin=

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

Subject: Re: [OS X TeX] Tiger Change All Open With
From: "Alan Curtis" 
Date: Sun, 5 Jun 2005 19:33:13 -0400

On 6/5/05, Bob Kerstetter  wrote:
>=20
> On Jun 4, 2005, at 2:16 AM, Michael Gedalin wrote:
>=20
> >> For some reason, my Tiger has associated .tex files with Script
> >> Editor. I can Get Info and change one file's open with to TexShop,
> >> but when I press the Change All button it reverts to Script Editor.
> >> Anyone know how to fix this?
> >>
> >> Alan
> >>
> >>
> >>
> >
> > I had similar problems with associating all .tex files with
> > StuffitExpander. Removal of SE and cleaning caches worked. I put SE
> > back and everything is ok. May be deep cache cleaning would suffice
> > for you. I used AppleJack.
> >
>=20
> Things here seldom get messy, maybe because the machine gets
> restarted once a week, so it does the "start up disk maintenance"
> weekly.
>=20
> But when things do get messy, restarting the machine, running these
> commands from the terminal and then restarting again always cleans up
> things:
>=20
> rm -rfv ~/Library/Caches/*
> sudo rm -rfv /Library/Caches/*
> sudo rm -rfv /System/Library/Caches/*
> sudo rm -rfv /System/Library/Extensions.kextcache
>=20
> For the final three commands you have to be logged into the terminal
> as an admin. Because I run with a standard account, not an admin
> account, I must use:
>=20
> su adminaccountname
>=20
> and then enter the password for adminaccountname before doing the
> sudo commands.
>=20
> Maybe the restarts are not necessary. But clearing the caches appears
> to clean up problems when they arise, now and then.

I cleaned my caches using both Bob's and Michael's method, but Finder
still associates .tex files with Script Editor.

I deleted Script Editor and repeated deleting caches. Then Finder
associated .tex files with TeXShop.

I restored Script Editor from backup. Finder went back to associating
.tex files with Script Editor again.

I don't want to delete Script Editor permanently, in case I want to
edit my scripts. I don't want to reinstall Tiger just to update Script
Editor.

Is there another way I can fix this problem? I seem to recall a
utility that can edit the Finder file association preferences.

Is it just a coincidence that Script Editor and Stuffit Expander have
initials S.E.?

----------------------------------------------------------------------
End of MacOSX-TeX Digest

--------------------- Info ---------------------
Mac-TeX Website: http://www.esm.psu.edu/mac-tex/
           & FAQ: http://latex.yauh.de/faq/
TeX FAQ: http://www.tex.ac.uk/faq
List Post: