From MacOSX-TeX@email.esm.psu.edu Thu May 26 19:57:45 2005
Received: from engremail.engr.psu.edu ([130.203.201.4]) by ENGRMAIL1.engr.psu.edu with Microsoft SMTPSVC(5.0.2195.6713);
	 Thu, 26 May 2005 19:57:45 -0400
Received: from email.esm.psu.edu ([130.203.247.204]) by engremail.engr.psu.edu with Microsoft SMTPSVC(5.0.2195.6713);
	 Thu, 26 May 2005 19:57:44 -0400
Date: Thu, 26 May 2005 20:00:13 -0400
Message-ID: <82413.27362@email.esm.psu.edu>
Subject: MacOSX-TeX Digest #1384 - 05/26/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 (0522) 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: 26 May 2005 23:57:44.0553 (UTC) FILETIME=[B5B66D90:01C5624E]

MacOSX-TeX Digest #1384 - Thursday, May 26, 2005

  Re: [OS X TeX] Functionality for collaborative work in TeXShop?
          by "Rene Borgella" 

  Undesired Rotated Figure in Ps4Pdf & PSTricks
          by "Herb Schulz" 

  Re: [OS X TeX] Undesired Rotated Figure in Ps4Pdf & PSTricks
          by "Vince McGarry" 

  lucida bright font install question
          by "Michael Murray" 

  Re: [OS X TeX] lucida bright font install question
          by "Michael Murray" 

  [OS X TeX] A suggestion for NewPdftricks (or for pdftricks in general)
          by "Franck Pastor" 

  pdftex and hyperref question
          by "Johan Almqvist" 

  BibDesk and BibTeX macros
          by "Johan Almqvist" 

  Re: [OS X TeX] lucida bright font install question
          by "Bruno Voisin" 

  Cmd < and Cmd >
          by "Friedrich Vosberg" 

  TOC hyperlinks and bookmarks in pdflatex
          by "Michael Stiber" 

  Re: [OS X TeX] Cmd < and Cmd >
          by "Bruno Voisin" 

  Re: [OS X TeX] TOC hyperlinks and bookmarks in pdflatex
          by "Maarten Sneep" 

  Re: [OS X TeX] Cmd < and Cmd >
          by "Bruno Voisin" 

  Re: [OS X TeX] Cmd < and Cmd >
          by "Maarten Sneep" 

  Re: [OS X TeX] BibDesk and BibTeX macros
          by "Aaron Jackson" 

  Re: [OS X TeX] Functionality for collaborative work in TeXShop?
          by "Matthias Damm" 

  Re: [OS X TeX] A suggestion for NewPdftricks (or for pdftricks in general
          by "Herbert Schulz" 

  Re: [OS X TeX] pdftex and hyperref question
          by "Jose Carrion" 

  Autorotate Option on NewPdftricks
          by "Herbert Schulz" 


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

Subject: Re: [OS X TeX] Functionality for collaborative work in TeXShop?
From: "Rene Borgella" 
Date: Wed, 25 May 2005 20:30:35 -0400


Bruno:

You may want to give SubEthaEdit a try. They=20
claim to support LaTex (see 2nd link)


I haven't used this program in the way you are=20
inquiring about, but it may be worth a shot.  The=20
license is free for academic users.

=46rom their web site:
"SubEthaEdit is a powerful and lean text editor.=20
And it's the only collaborative one you can=20
actually use. By combining the ease of Bonjour=20
with the world's best text collaboration engine,=20
it makes working together not only possible but=20
even fun=8A"



Support for AppleScript , ActionScript , C, C++,=20
CSS, HTML, Java, Javascript, LaTeX, Lua,=20
Objective-C, Pascal, Perl, PHP, Python, Ruby,=20
SQL, XML already included.


HTH,

Ren=E9

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

Subject: Undesired Rotated Figure in Ps4Pdf & PSTricks
From: "Herb Schulz" 
Date: Wed, 25 May 2005 20:28:03 -0500

On 5/18/05 9:28 AM, "Vince McGarry"  wrote:

> On May 18, 2005, at 4:43 AM, Bruno Voisin wrote:
> 
>> Eureka! That works.
>> 
> 
> This is enlightening and it does work. Thanks, Bruno. Ross's remarks
> are interesting, as well. Although this recent addition may not be
> the best choice for "default" behavior, it appears that this will be
> the expected behavior of these scripts from now on.
> 
>> It might then make sense to keep automatic rotation as the default
>> for both ps2pdf and epstopdf, but provide easy switches for the
>> user to modify this default on a per-file basis or in a pref file.
> 
> Is it easy to provide "easy switches?"
> 
> Vince

Howdy,

Sorry to take this long to get back top you but I've been out of town and
offline for the last week. It also gave me time to look over things like
ps2pdf13 and ps2pdfwr, etc., for an alternative to editing the latter. =
What
I discovered is that adding the -dAutoRotatePages=3D/None option to the
ps2pdf13 call works quite well since that is passed to ps2pdfwr and then
onto gs. The following ps4pdf.engine seems to work well:

#!/bin/sh
basefname=3D$(basename "$1" .tex)
# process the figures
latex --shell-escape "$1"
dvips -Ppdf -o "${basefname}-pics.ps" "${basefname}.dvi"
ps2pdf13 -dAutoRotatePages=3D/None "${basefname}-pics.ps"
"${basefname}-pics.pdf"
pdfcrop "${basefname}-pics.pdf"
/bin/mv "${basefname}-pics-crop.pdf" "${basefname}-pics.pdf"
/bin/rm "${basefname}-pics.ps" "${basefname}.dvi"
#process the file
pdflatex --shell-escape "$1"

where you can see that the -dAutoRotatePages=3D/None option has been added =
to
the ps2pdf13 line.

For those using my adaptation of pdftricks to use pdfcrop for correct
Bounding Boxes I've added that to it too. You can pick up the changed file
from my download site, , as
NewPdftricks.zip. I will try to make this an option to pdftricks with the
default being no auto-rotation but I'll need a little time.

Good Luck,

Herb Schulz
(herbs@wideopenwest.com)


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

Subject: Re: [OS X TeX] Undesired Rotated Figure in Ps4Pdf & PSTricks
From: "Vince McGarry" 
Date: Wed, 25 May 2005 22:20:51 -0500

Thanks, Herb. It works!

Vince


On May 25, 2005, at 8:28 PM, Herb Schulz wrote:

> On 5/18/05 9:28 AM, "Vince McGarry"  wrote:
>
>
>> On May 18, 2005, at 4:43 AM, Bruno Voisin wrote:
>>
>>
>>> Eureka! That works.
>>>
>>>
>>
>> This is enlightening and it does work. Thanks, Bruno. Ross's remarks
>> are interesting, as well. Although this recent addition may not be
>> the best choice for "default" behavior, it appears that this will be
>> the expected behavior of these scripts from now on.
>>
>>
>>> It might then make sense to keep automatic rotation as the default
>>> for both ps2pdf and epstopdf, but provide easy switches for the
>>> user to modify this default on a per-file basis or in a pref file.
>>>
>>
>> Is it easy to provide "easy switches?"
>>
>> Vince
>>
>
> Howdy,
>
> Sorry to take this long to get back top you but I've been out of  
> town and
> offline for the last week. It also gave me time to look over things  
> like
> ps2pdf13 and ps2pdfwr, etc., for an alternative to editing the  
> latter. What
> I discovered is that adding the -dAutoRotatePages=3D/None option to the
> ps2pdf13 call works quite well since that is passed to ps2pdfwr and  
> then
> onto gs. The following ps4pdf.engine seems to work well:
>
> #!/bin/sh
> basefname=3D$(basename "$1" .tex)
> # process the figures
> latex --shell-escape "$1"
> dvips -Ppdf -o "${basefname}-pics.ps" "${basefname}.dvi"
> ps2pdf13 -dAutoRotatePages=3D/None "${basefname}-pics.ps"
> "${basefname}-pics.pdf"
> pdfcrop "${basefname}-pics.pdf"
> /bin/mv "${basefname}-pics-crop.pdf" "${basefname}-pics.pdf"
> /bin/rm "${basefname}-pics.ps" "${basefname}.dvi"
> #process the file
> pdflatex --shell-escape "$1"
>
> where you can see that the -dAutoRotatePages=3D/None option has been  
> added to
> the ps2pdf13 line.
>
> For those using my adaptation of pdftricks to use pdfcrop for correct
> Bounding Boxes I've added that to it too. You can pick up the  
> changed file
> from my download site, , as
> NewPdftricks.zip. I will try to make this an option to pdftricks  
> with the
> default being no auto-rotation but I'll need a little time.
>
> Good Luck,
>
> Herb Schulz
> (herbs@wideopenwest.com)
>
> --------------------- 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: lucida bright font install question
From: "Michael Murray" 
Date: Thu, 26 May 2005 13:47:55 +0930

Hi all

I have just set myself up with a new PB and reinstalled tetex and 
texshop and it can't find the lucida bright fonts I have in my home 
directory in /Library/texmf ....   . All worked fine before 
transferring over.

I have a vague memory that I need to run udpmap or something to make 
this work ?

Could someone remind me please?

Thanks - Michael

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

Subject: Re: [OS X TeX] lucida bright font install question
From: "Michael Murray" 
Date: Thu, 26 May 2005 14:02:37 +0930

OK I found it in the archives

sudo updmap --enable Map lucidabr.map
sudo updmap --enable Map lumath.map

Thanks to Bruno from awhile ago!

Michael

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

Subject: [OS X TeX] A suggestion for NewPdftricks (or for pdftricks in general)
From: "Franck Pastor" 
Date: Thu, 26 May 2005 08:47:04 +0200


Le 26-mai-05, =E0 03:28, Herb Schulz a =E9crit :


>  You can pick up the changed file
> from my download site, , as
> NewPdftricks.zip. I will try to make this an option to pdftricks with=20=

> the
> default being no auto-rotation but I'll need a little time.
>
> Good Luck,
>
> Herb Schulz
> (herbs@wideopenwest.com)

What about making an option to NewPdftricks for the font size (if you=20
have time enough, of course, and if it's possible) ? i.e, something=20
like

\usepackage[12pt]{pdftricks}

  Up to know, even if the principal document begins with=20
"\documentclass[12pt]{article}", the header of each pdftricks file=20
("file-fig1.tex", "file-fig2.tex") still is  "\documentclass{article}"=20=

only, without the font size option :-( Hence the labels in the figures=20=

are far too small...

I have found a workaround : I add "\fontsize{12pt}\selectfont" at the=20
beginning of each pspicture :

\begin{pdfdisplay}
\begin{pspicture}(0,0),(5,5)
	\fontsize{12pt}\selectfont
	....
\end{pspicture}
\end{pspicture}

But it's a bit annoying if you  numerous pictures...

However, NewPdftricks remains the most reliable way (IMO) to get=20
pstricks pictures with pdflatex. For example, ps4pdf still works very=20
badly pst-3dplot, the pstricks package I use most of the time...

Best regards,

Franck Pastor


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

Subject: pdftex and hyperref question
From: "Johan Almqvist" 
Date: Thu, 26 May 2005 10:27:34 +0200

Hej

So I have

\usepackage[pdftex,bookmarks,pdfauthor=3D{Johan Per Fredrik  
Almqvist},colorlinks]{hyperref}

as the last line of my preamble (btw annoys me that the links option  
is disabled in draft mode --- I use ifdraft and margin comments  
extensively while writing; solution: add final as an option to the  
hyperref line above and draft as an option to memoir)

The problem I get is that the bookmarks bar (internal chapter  
overview) comes out fine, BUT that the chapter titles are  
'to1Introduction', 'to2Related work' etc. What are the three first  
letters for? And how can I make them dissappear?

-Johan
-- 
Johan Almqvist
johan@almqvist.net




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

Subject: BibDesk and BibTeX macros
From: "Johan Almqvist" 
Date: Thu, 26 May 2005 10:30:59 +0200

Hello

How can I make BibDesk not {} around fields that are macros (date,  
journal etc)?

I now write 'nov' for november in BibDesk, but it will write month=3D 
{nov} to the .bib file and that won't get expanded.

On another (BibTeX) note, can I combine macros and non-macros as in  
journal=3D{{Submitted to} ieeese} [which doesn't work]

And while we're at it, I lost the link to the FAQ answer on how to  
handle different spellings(initials) of the same name?

-Johan
-- 
Johan Almqvist
johan@almqvist.net



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

Subject: Re: [OS X TeX] lucida bright font install question
From: "Bruno Voisin" 
Date: Thu, 26 May 2005 10:39:57 +0200

Le 26 mai 05 =E0 06:32, Michael Murray a =E9crit :

> OK I found it in the archives
>
> sudo updmap --enable Map lucidabr.map
> sudo updmap --enable Map lumath.map
>
> Thanks to Bruno from awhile ago!

Hi Michael,

Nice to hear from you!

I would recommend also:

sudo updmap --enable Map lucidabr-o.map
sudo updmap --enable Map lumath-o.map

Why? The file lucidabr.map and lumath.map, from /Library/teTeX/share/=20
texmf.tetex/fonts/map/dvips/lucida/, define maps for the Karl-Berry-=20
style font names hlhr8t etc., while the files lucidabr-o.map and =20
lumath-o.map, from /Library/teTeX/share/texmf.tetex/fonts/map/dvips/=20
tetex/, define maps for the original Y&Y font names lbr etc.

Bruno=

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

Subject: Cmd < and Cmd >
From: "Friedrich Vosberg" 
Date: Thu, 26 May 2005 14:04:36 +0200

Hi.

What the hell is this? I can not toggle the open Windows bei clicking  
Cmd > and Cmd <. In previous verions of TeXShop this was the shortcut  
for ever and ever.

Why did it changed?

Confused. Friedrich

--
In a world without walls and fences, who needs gates and windows?


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

Subject: TOC hyperlinks and bookmarks in pdflatex
From: "Michael Stiber" 
Date: Thu, 26 May 2005 08:24:16 -0400

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Has anyone gotten links to sections of the document from the table of 
contents and bookmarks working (using the hyperref package)? In 
principle, merely including the package should get that working. I've 
tried all the package options I can think of, including using pdflatex 
directly and ordinary latex and either dvipdf or dvips and ps2pdf. All 
I get are TOC links and bookmarks that point to the very beginning of 
the document. htlatex produces correct links, with or without frames.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (Darwin)

iD8DBQFClb/wqkBhAcZpGs0RAnmCAJ0XJCZ5zBJ2ETsLl2LIELMe2yEJgACfWEiy
gM1PAh0HgNlQTWArBxgvyno=3D
=3DKWhp
-----END PGP SIGNATURE-----


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

Subject: Re: [OS X TeX] Cmd < and Cmd >
From: "Bruno Voisin" 
Date: Thu, 26 May 2005 14:27:04 +0200

Le 26 mai 05 =E0 14:04, Friedrich Vosberg a =E9crit :

> What the hell is this? I can not toggle the open Windows bei =20
> clicking Cmd > and Cmd <. In previous verions of TeXShop this was =20
> the shortcut for ever and ever.
>
> Why did it changed?

The problem seems to be caused by the localization:

- In the US, the shortcuts are Cmd-` and Cmd-~, which correspond to =20
the key on the right of the Shift key in the lower left corner of the =20=

keyboard.

- However, on the French and German keyboards, and probably on other =20
keyboards as well, the same key yields Cmd-< and Cmd->, respectively, =20=

which are already taken by TeXShop for changing the magnification of =20
the preview window. Hence the problem.

Thus it arises because Apple defined the shortcut for toggling =20
windows not to specific symbols, but to a specific key, for ease of use.

BTW, in this respect again the localization of OS X is deficient: in =20
the Mac Help, of you look at the page about keyboard shorcuts for =20
window management, in the French version of the page the window =20
toggling shortcuts are still given as Cmd-` and Cmd-~, even though =20
they are actually Cmd-< and Cmd->.

Bruno Voisin


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

Subject: Re: [OS X TeX] TOC hyperlinks and bookmarks in pdflatex
From: "Maarten Sneep" 
Date: Thu, 26 May 2005 14:30:01 +0200

On 26 May 2005, at 14:24, Michael Stiber wrote:

> Has anyone gotten links to sections of the document from the table  
> of contents and bookmarks working (using the hyperref package)? In  
> principle, merely including the package should get that working.

It may not work in all viewers, so that can be relevant (testing is  
done mostly with xpdf and Adobe Reader; Tiger's Preview should also  
handle all of them, Postview may miss a few).

> I've tried all the package options I can think of, including using  
> pdflatex directly and ordinary latex and either dvipdf or dvips and  
> ps2pdf. All I get are TOC links and bookmarks that point to the  
> very beginning of the document. htlatex produces correct links,  
> with or without frames.

It works for me, but without actual sample code it is hard to say  
what goes wrong. Please create a minimal sample that shows the  
problem and report again on the list. (I could post my preamble, but  
that is a 682 line separate style file. It all works, really!).

Maarten

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

Subject: Re: [OS X TeX] Cmd < and Cmd >
From: "Bruno Voisin" 
Date: Thu, 26 May 2005 14:36:44 +0200

Le 26 mai 05 =E0 14:27, Bruno Voisin a =E9crit :

> - However, on the French and German keyboards, and probably on =20
> other keyboards as well, the same key yields Cmd-< and Cmd->, =20
> respectively, which are already taken by TeXShop for changing the =20
> magnification of the preview window. Hence the problem.

Sorry, I wrote too rapidly: Cmd-< and Cmd-> are used by TeXShop to =20
indent and unindent lines in the editor window, of course. The =20
problem arises now because, I think, before Tiger the corresponding =20
shortcuts were Cmd-[ and Cmd-], but they have been changed because =20
Cmd-[ and Cmd-] are now used for navigating backwards and forwards in =20=

the preview window. This is in line with Preview, but different from =20
Safari, which uses Cmd-( and Cmd-). What a mess, even among OS X =20
applications!

Bruno Voisin=

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

Subject: Re: [OS X TeX] Cmd < and Cmd >
From: "Maarten Sneep" 
Date: Thu, 26 May 2005 14:45:08 +0200

On 26 May 2005, at 14:36, Bruno Voisin wrote:

> Sorry, I wrote too rapidly: Cmd-< and Cmd-> are used by TeXShop to  
> indent and unindent lines in the editor window, of course. The  
> problem arises now because, I think, before Tiger the corresponding  
> shortcuts were Cmd-[ and Cmd-], but they have been changed because  
> Cmd-[ and Cmd-] are now used for navigating backwards and forwards  
> in the preview window.

And I still think Cmd-[ and Cmd-] can be used for both functions:  
this is in line with other editors (BBEdit, TextWrangler, and I think  
Alpha as well), and is unlikely to cause confusion anyway.

> This is in line with Preview, but different from Safari, which uses  
> Cmd-( and Cmd-). What a mess, even among OS X applications!

And that is yet another French peculiarity, doesn't work for me.  
Remind me to bring my own keyboard if I ever have to spend time at a  
conference in France ;).

Maarten

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

Subject: Re: [OS X TeX] BibDesk and BibTeX macros
From: "Aaron Jackson" 
Date: Thu, 26 May 2005 09:02:37 -0400

On May 26, 2005, at 4:30 AM, Johan Almqvist wrote:

> Hello
>
> How can I make BibDesk not {} around fields that are macros (date, 
> journal etc)?
>
> I now write 'nov' for november in BibDesk, but it will write 
> month=3D{nov} to the .bib file and that won't get expanded.
>
> On another (BibTeX) note, can I combine macros and non-macros as in 
> journal=3D{{Submitted to} ieeese} [which doesn't work]

Have you tried looking at section 5.3.2 of the BibDesk help?  If you 
edit the field as raw BibTex you can change that.

Aaron


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

Subject: Re: [OS X TeX] Functionality for collaborative work in TeXShop?
From: "Matthias Damm" 
Date: Thu, 26 May 2005 15:39:34 +0200


Am 25.05.2005 um 16:36 schrieb Claus Gerhardt:

> The \marginpar command, like \marginpar{Bruno}, in conjunction with  
> an if then construction to switch it on and off might be what you  
> want.

The fixme package could be very useful here.

Best,
Matthias

-- 
Matthias Damm
mad@macpla.net
PGP key: http://macpla.net/MatthiasDamm.asc
PGP fingerprint: CED3 6074 7F7D 3148 C6F3  DFF2 05FF 3A0B 0D12 4D41


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

Subject: Re: [OS X TeX] A suggestion for NewPdftricks (or for pdftricks in general)
From: "Herbert Schulz" 
Date: Thu, 26 May 2005 09:20:46 -0500


On May 26, 2005, at 1:47 AM, Franck Pastor wrote:

> What about making an option to NewPdftricks for the font size (if  
> you have time enough, of course, and if it's possible) ? i.e,  
> something like
>
> \usepackage[12pt]{pdftricks}
>
>  Up to know, even if the principal document begins with  
> "\documentclass[12pt]{article}", the header of each pdftricks file  
> ("file-fig1.tex", "file-fig2.tex") still is  "\documentclass 
> {article}" only, without the font size option :-( Hence the labels  
> in the figures are far too small...
>
> I have found a workaround : I add "\fontsize{12pt}\selectfont" at  
> the beginning of each pspicture :
>
> \begin{pdfdisplay}
> \begin{pspicture}(0,0),(5,5)
>     \fontsize{12pt}\selectfont
>     ....
> \end{pspicture}
> \end{pspicture}
>
> But it's a bit annoying if you  numerous pictures...
>

Howdy,

You shouldn't really need to have the option since the information  
should be available from the documentclass command above it. I'm not  
sure how to get that information, yet, but I'll look into it.

Good Luck,

Herb Schulz
(herbs@wideopenwest.com)



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

Subject: Re: [OS X TeX] pdftex and hyperref question
From: "Jose Carrion" 
Date: Thu, 26 May 2005 10:31:54 -0400

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On May 26, 2005, at 4:27 AM, Johan Almqvist wrote:

> The problem I get is that the bookmarks bar (internal chapter  
> overview) comes out fine, BUT that the chapter titles are  
> 'to1Introduction', 'to2Related work' etc. What are the three first  
> letters for? And how can I make them dissappear?

You might want to check out the package memhfixc that fixes some  
incompatibilities between memoir and hyperref.


Jose Carrion
-----BEGIN PGP SIGNATURE-----

iD8DBQFCld3ar+ZuHrpRC6gRAs30AKDVTH/7g2dRpQpjbljGhKTN64WvZACff8/U
XRNtHbnT2dSkZlgADlVSRyA=3D
=3D0g0f
-----END PGP SIGNATURE-----

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

Subject: Autorotate Option on NewPdftricks
From: "Herbert Schulz" 
Date: Thu, 26 May 2005 13:08:43 -0500

Howdy,

While the default on the pdftricks package I've put together is NOT  
to autorotate the images (what I suspect is what most people,  
including me, want) I've now added an optional argument, autorotate,  
to go back to the original behavior. Pick it up at , as usual.

I'm also considering the setting of the default text point size for  
the generated figure files to automatically agree with the option  
chosen for the document class. I have one problem: if the memoir  
class (and some others I suspect (koma?)) is used there is a larger  
range of text sizes than 10--12pt. How should I handle that? right  
now the generated files use the the article class at a fixed 10pt  
(i.e., no option in the generated \documentclass{article}).

Good Luck,

Herb Schulz
(herbs@wideopenwest.com)



----------------------------------------------------------------------
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: