From MacOSX-TeX@email.esm.psu.edu Sat Aug  6 20:02:13 2005
Return-path: 
Received: from mac.com (smtpin13-en2 [10.13.11.241])
 by ms83.mac.com (iPlanet Messaging Server 5.2 HotFix 2.06 (built Mar 28 2005))
 with ESMTP id <0IKT0009KS3PPP@ms83.mac.com>; Sat,
 06 Aug 2005 17:02:13 -0700 (PDT)
Received: from smtpout.mac.com (smtpout08-en1.mac.com [17.250.248.84])
	by mac.com (Xserve/smtpin13/MantshX 4.0) with ESMTP id j7702AEo006487; Sat,
 06 Aug 2005 17:02:10 -0700 (PDT)
Received: from brightmail11-bge1 (brightmail11-bge1 [10.13.10.44])
	by smtpout.mac.com (Xserve/8.12.11/smtpout08/MantshX 4.0)
 with ESMTP id j7702Av8015947; Sat, 06 Aug 2005 17:02:10 -0700 (PDT)
Received: from [130.203.201.4] by brightmail11 (bmifilter); Sat,
 06 Aug 2005 16:58:14 -0700 (PDT)
Received: from email.esm.psu.edu ([130.203.247.204]) by engremail.engr.psu.edu
 with Microsoft SMTPSVC(5.0.2195.6713); Sat, 06 Aug 2005 20:00:09 -0400
Date: Sat, 06 Aug 2005 20:00:13 -0400
From: TeX on Mac OS X Mailing List 
Subject: MacOSX-TeX Digest #1456 - 08/06/05
Sender: MacOSX-TeX@email.esm.psu.edu
To: TeX on Mac OS X Mailing List 
Message-id: <3213.68384@email.esm.psu.edu>
MIME-version: 1.0
Content-type: text/plain; charset=iso-8859-1
Content-transfer-encoding: quoted-printable
Precedence: List
X-BLTSYMAVREINSERT: ZQElT4/1w0J3iIaqbDsbNzxL3bkA
X-LR-SENT-TO: mail.engr.psu.edu
List-Subscribe: 
List-Digest: 
List-Unsubscribe: 
List-Software: LetterRip Pro 4.05 (0531) by LetterRip Software, LLC.
X-OriginalArrivalTime: 07 Aug 2005 00:00:09.0853 (UTC)
 FILETIME=[FA0F72D0:01C59AE2]

MacOSX-TeX Digest #1456 - Saturday, August 6, 2005

  Re: [OS X TeX] WARMFigTo"EPS"?
          by "Jung-Tsung Shen" 

  Two issues -- need help
          by "M. Tamer =D6zsu" 

  Re: [OS X TeX] Re: Lucida from OS 9 to OS X
          by "Bruno Voisin" 

  [ANN] BibDesk-1.1.5
          by "Adam R. Maxwell" 

  Re: [OS X TeX] [ANN] BibDesk-1.1.5
          by "Gary L. Gray" 

  Re: [OS X TeX] [ANN] BibDesk-1.1.5
          by "Jung-Tsung Shen" 

  away from my mail
          by "via the vacation program" 

  Re: [OS X TeX] [ANN] BibDesk-1.1.5
          by "Adam R. Maxwell" 

  Re: [OS X TeX] [ANN] BibDesk-1.1.5
          by "Michael S. Hanson" 


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

Subject: Re: [OS X TeX] WARMFigTo"EPS"?
From: "Jung-Tsung Shen" 
Date: Fri, 5 Aug 2005 23:10:59 -0700

Just want to follow up my previous question. I adopted Siep
Kroonenberg's suggestion and installed the xpdf suite. There's a
pointer to the Mac OS X .pkg disk image file at the XPDF website
download section; alternatively, here's the direct link:

http://users.phg-online.de/tk/MOSXS

It comes with a nice installer.

After installation, you type the following command in terminal

pdftops -eps myfile.pdf

then it generates a myfile.eps in the same directory. The conversion
is done in a very fast manner -- actually the first time I tried it, I
wouldn't even notice that it took any split of second to do the job
[admittedly my test file was very small].

The output is excellent. The only pity is that, it seems there's no
way to add preview picture, but I am not complaining. :-)

JT

  > Another option is pdftops from the xpdf suite, with options '-eps'
> and '-paper match' but I don't know whether there exists a
> conveniently packaged version of the xpdf suite.
>=20
> --
> Siep Kroonenberg

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

Subject: Two issues -- need help
From: "M. Tamer =D6zsu" 
Date: Sat, 06 Aug 2005 13:49:37 -0400

---
I wonder if someone can help me with two issues:

1. I am writing a book for which the publisher has supplied some macros.
Among them there is a pair of macros for examples. Their definition are

\newcommand{\bex}[1]{\vspace{11pt}\par\noindent{\bf Example
#1}\vspace{11pt}\par\noindent\begin{inpar}\parskip=3D2pt plus 0.5pt}

\newcommand{\eex}{\end{inpar}\vspace{11pt}\par\noindent}

and their use are

\bex{4.1}
    ...
\eex

that generates

    Example 4.1
    ...

The problem is that if you add/delete any example then you need to do the
renumbering again. I am trying to add a counter to this so it can do the
renumbering automatically. The following works:

\newcounter{exmp}[chapter]
\newcommand{\bex}{\regstepcounter{exmp}\vspace{11pt}\par\noindent{\bf
Example 
\arabic{chapter}.\arabic{exmp}}\vspace{11pt}\par\noindent\begin{inpar}\par
skip=3D2pt plus 0.5pt}

(I know I can renewcommand \theexmp to be \arabic{chapter}.\arabic{exmp},
but that is not important right now). This works in assigning the right
numbers to the examples, but referencing the examples don't work right.
\ref{...} only produces \theexmp without the chapter prefix. I tried to
Fix this using

\newcounter{exmp}[chapter]
\newcommand{\bex}{\renewcommand{\theexmp}{\stepcounter{exmp}\thechapter.\a
rabic{exmp}}\vspace{11pt}\par\noindent{\bf Example
\theexmp}\vspace{11pt}\par\noindent\begin{inpar}\parskip=3D2pt plus 0.5pt}

but this did not work either. The numbering is OK, but \ref{...} simply
generates the number of the section within which the example occurs.

I would appreciate any help in changing the \bex definition so that it
generates the numbers prefixed with chapter numbers and also handles the
references right.

2. On one of my machines, files with .tex extension have defaulted to open
with the Script Editor. When I try to reset this to TexShop or iTexMac =
from
Get Info window, it asks me if I really wanted to change, but then it
reverts back to Script Editor. What might be going wrong? I did fix the
permissions, etc, but I can't think of what else to try.

(This is a more general problem with all file types, but I had to make it
tex relevant for this list -) )

Thanks for any suggestions.
-- 
M. Tamer Ozsu
University of Waterloo



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

Subject: Re: [OS X TeX] Re: Lucida from OS 9 to OS X
From: "Bruno Voisin" 
Date: Sat, 6 Aug 2005 20:15:58 +0200

Le 5 ao=FBt 05 =E0 10:57, Bruno Voisin a =E9crit :

> Regarding the Lucida fonts, there's the general tutorial at  homepage.mac.com/bkerstetter/tex/fonttutorial-current.html> and a =20
> number of past threads at the Mac OS X TeX list. A few years back, =20
> I think, Gary Gray has posted a message describing the conversion =20
> and installation process in detail, for the Textures Lucida fonts, =20
> though I cannot locate this message in the list archive.

After some search through my OS X TeX mailbox (pity that search in =20
Mail cannot accept several criteria, like "=46rom contains Gary L. =20
Gray" + "Body contains Lucida" + "Body contains Installation"), I've =20
finally dug a message from 26 March 2002 by Gary Gray, dealing with =20
the installation of Lucida fonts. It's possible that since then Gary =20
has posted another updated message, but I've not had the time to look =20=

more extensively.

The pasted message is below. Two precisions to add though:

- It's no longer strictly necessary to use CMacTeX to convert the =20
LWFN fonts to PFB format. You can simply use the command-line tool =20
t1unmac included in Gerben Wierda's distribution of TeX. The syntax =20
is a bit odd: for example, for LucidBri it would be something like =20
(to be typed in Terminal, after moving to the directory containing =20
the fonts)

     t1unmac -r LucidBri/rsrc lbr.pfb

The "-r .../rsrc" tells t1unmac to extract the corresponding font =20
resource from the resource fork of the file LucidBri.

- After installing the fonts at the appropriate places, you need to =20
update the map files. For this, type in sequence in Terminal (with a =20
return at the end of each line, and you'll be asked for an =20
administrator password):

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

The updating process after each line may take some time (1 or 2 =20
minutes, say, depending on hardware).

It would be nice if somebody someday would write a script doing all =20
of this automatically (copying all Lucid* fonts from the Classic font =20=

folder to a temporary directory, converting them, renaming them, =20
putting them at the appropriate places, running updmap). A problem, =20
though, is that the Classic font folder has its name localized: in =20
the English OS it is, I think, /System Folder/Fonts/, and in French, =20
for example, /Dossier Syst=E8me/Polices/. By localized here, I mean =20
that the actual directory name is localized, not as in OS X where the =20=

names are always English and it is only the Finder which displays =20
them as localized, displaying for example /Library as /Biblioth=E8que =20=

when the language is French.

Hope this helps,

Bruno Voisin



> De : "Gary L. Gray"
> Date : 26 mars 2002 23:44:48 HNEC
> =C0 : TeX on Mac OS X Mailing List
> Objet : R=E9p : [OS X TeX] Fonts included with Textures?
> R=E9pondre =E0 : "TeX on Mac OS X Mailing List"
>
> On 3/26/02 1:29 PM, "Zachary Davis" wrote:
>
>
>> I had purchased Textures before OS X had been released, when I was =20=

>> just
>> learning TeX.  I really like the Lucida Grande font, and would =20
>> somehow
>> like to include that font in my documents.  I have since moved to =20
>> teTeX
>> in conjunction with TeXShop, and was wondering whether the necessary
>> files to install a Lucida Grande font might be included on the =20
>> Textures
>> disk I still have lying around.  I remember Gary awhile ago posting
>> something to this affect, where he had gotten a Lucida family =20
>> installed
>> into his teTeX installation.
>>
>
> Here are some details on the installation of the Lucida Bright =20
> family (I
> assume that is what you are referring to -- if not, I apologize):
>
> [1] Take your existing Lucida fonts and convert them to .pfb files =20
> using Tom
> Kiffe's conversion utility. You can find it at:
>
> 
>
> You will want to open his "essential" AppleScript "lwfn2pfb script =20
> txt" in
> the Script Editor and save it as an application so that you can =20
> drag and
> drop your fonts on it for conversion. This AppleScript will call =20
> the CMacTeX
> binary "t1utils", so be sure you have that too. After creating the
> AppleScript, drag and drop all 41 of your Lucida fonts onto the =20
> AppleScript
> and after a few seconds, 41 .pfb files will appear (you will have =20
> 41 if you
> have the entire Lucida set from Y&Y).
>
> [2] You will now need to rename those new .pfb files. Here is a =20
> list of the
> the new names and the corresponding old names:
>
> New     Old
> =3D=3D=3D     =3D=3D=3D
> lbc     LucidCalIta
> lbd     LucidBriDem
> lbdsc   LucidBriSmaDem
> lbdi    LucidBriDemIta
> lbh     LucidHanIta
> lbi     LucidBriIta
> lbki    LucidCasIta
> lbkr    LucidCas
> lbl     LucidBla
> lbma    LucidNewMatArr
> lbme    LucidNewMatExt
> lbmi    LucidNewMatIta
> lbmo    LucidNewMatAltIta
> lbms    LucidNewMatSym
> lbmsd   LucidNewMatSymDem
> lbr     LucidBri
> lbrsc   LucidBriSma
> lbsl    LucidBriObl
> lbtb    LucidTypBol
> lbtbo   LucidTypBolObl
> lbto    LucidTypObl
> lbtr    LucidTyp
> lfd     LucidFaxDem
> lfdi    LucidFaxDemIta
> lfi     LucidFaxIta
> lfr     LucidFax
> lsb     LucidSanBol
> lsbi    LucidSanBolIta
> lsd     LucidSanDem
> lsdi    LucidSanDemIta
> lsi     LucidSanIta
> lsr     LucidSan
> lstb    LucidSanTypBol
> lstbo   LucidSanTypBolObl
> lsto    LucidSanTypObl
> lstr    LucidSanTyp
> lbmad   LucidNewMatArrDem
> lbmd    LucidNewMatDem
> lbmdi   LucidNewMatDemIta
> lbmdo   LucidNewMatAltDemIta
> lbmr    LucidNewMatRom
>
> Be sure and leave the .pfb extensions on the renamed files.
>
> [3] Once you have renamed the files, then you simply need to put =20
> them in the
> right place. Put the .pfb files in the following places:
>
> In: ~/Library/texmf/fonts/type1/yandy/lubright
> Put:
> lbd.pfb
> lbdi.pfb
> lbdsc.pfb
> lbi.pfb
> lbr.pfb
> lbrsc.pfb
> lbsl.pfb
>
>
> In: ~/Library/texmf/fonts/type1/yandy/lucida
> Put:
> lbc.pfb
> lbh.pfb
> lbki.pfb
> lbkr.pfb
> lbl.pfb
> lbtb.pfb
> lbtbo.pfb
> lbto.pfb
> lbtr.pfb
>
>
> In: ~/Library/texmf/fonts/type1/yandy/lucidfax
> Put:
> lfd.pfb
> lfdi.pfb
> lfi.pfb
> lfr.pfb
>
>
> In: ~/Library/texmf/fonts/type1/yandy/lucsans
> Put:
> lsb.pfb
> lsbi.pfb
> lsd.pfb
> lsdi.pfb
> lsi.pfb
> lsr.pfb
> lstb.pfb
> lstbo.pfb
> lsto.pfb
> lstr.pfb
>
>
> In: ~/Library/texmf/fonts/type1/yandy/lumath
> Put:
> lbma.pfb
> lbmad.pfb
> lbmd.pfb
> lbmdi.pfb
> lbmdo.pfb
> lbme.pfb
> lbmi.pfb
> lbmo.pfb
> lbmr.pfb
> lbms.pfb
> lbmsd.pfb
>
>
> [4] Now it should work. Simply create a new LaTeX document and include
> something like:
>
> \usepackage[expert]{lucidabr}
>
> and you it should use the Lucida fonts. I know people don't like
> attachments, so here is a nice summary of the options available:
>
> -----------------------------------------------------------------
> Options for the lucidabr package (paraphrased from lucidabr.txt):
> -----------------------------------------------------------------
>
> See lucidabr.txt for details on the package options.
> To get the documentation for the lucidabr package, run TeX
> (or LaTeX) on the file lucidabr.dtx and print the result.
>
> The lucidabr package contains the code to support the Lucida Bright
> and Lucida New Math fonts. You invoke it using
>
>     \usepackage[...]{lucidabr}
>
> where the ... indicated optional arguments.  This package supports
> several options.  The default options are:
>
>     [noexpert,lucidascale,mathitalic1,slantedgreek,errorshow]
>
> (*) [noexpert] Lucida Bright Expert fonts *not* available
> (*) [expert] Lucida Bright Expert fonts available (needed for bold =20
> math)
>
> Special scaling has been set up for Lucida Bright fonts to control
> the relative sizes of text and math fonts.
> The default is to scale, but two options allow you to
> revert to `normal' behaviour, or get even smaller.
>
> (*) [lucidascale]
> (*) [nolucidascale]
> (*) [lucidasmallscale]
>
> Choose style of letters in math. Italic3 is not really italic at all,
> more a roman font with math spacing. Italic2 is not really
> slanted but a different style of italic.
>
> (*) [mathitalic1]            % `alternate' math italic (lbmo) default
> (*) [mathitalic2]            % original math italic (lbmi)
> (*) [mathitalic3]            % upright `math italic' (lbmr)
>
> Choose between slanted and upright lowercase Greek.
> Uppercase Greek is always upright.
>
> (*) [slantedgreek]
> (*) [uprightgreek]
>
> Define extra command names to access:
> uppercase slanted Greek (\varGamma...)
> lowercase upright Greek (\upalpha...)
> Irrespective of whether \alpha is accessing upright or
> slanted Greek alphabet.
>
> (*) [vargreek]
>
> Do not define individual command names to all the AMS
> math symbols (and a few extra Lucida math symbols).
> This makes this package emulate the amsfonts package rather
> than the amssymbl package. It saves a lot of space for smaller
> TeX systems. You can then just define commands for the symbols
> you are going to use.
>
> (*) [noamssymbols]
>
> Font encoding for the operators font.
> Normally this options does not need to be explicitly
> given as the default is to use the current default text
> encoding, so if \usepackage[T1]{fontenc} is used before
> loading this package, T1 encoding will be used.
> These options are similar to the ones provided by the
> mathtime package. Note that when cm fonts are being used
> the OT1 encoding is always used for the operators font
> as it is required to access Greek in that case. However
> Lucida Bright provides upper and lowercase Greek in the math fonts.
>
> (*) [OT1]        % TeX text
> (*) [LY1]        % TeX 'n ANSI
> (*) [T1]        % Cork
>
> (*) [seriftt]    % use Lucida Typewriter instead of Lucida Sans =20
> Typewriter
> (*) [fax]        % use Lucida Fax instead of Lucida Bright
> (*) [casual]    % Use Lucida Casual instead of Lucida Bright
> (*) [calligraphic]    % Use Lucida Calligraphic for italic text
> (*) [handwriting]    % Use Lucida Handwriting Italic for italic text
>
> This package makes a lot of font re-assignments. Normally these
> generate warning messages on the terminal, however getting so many
> messages would be distracting, so a further three options control the
> font tracing. Even more control may be obtained by loading the
> tracefnt package.
>
> (*)    [errorshow] Only show font *errors* on the terminal.
>     Warnings are just sent to the log file. This is the default
>     for this package.
>
> (*)    [warningshow] Show font warnings on the terminal. This
>     corresponds to the usual LaTeX 2e behaviour.
>
> (*)    [nofontinfo] Suppress all font warnings, even from the log =20
> file.
>
>
> Good luck,
>
> Gary

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

Subject: [ANN] BibDesk-1.1.5
From: "Adam R. Maxwell" 
Date: Sat, 6 Aug 2005 13:13:33 -0700

We've just released a new version of BibDesk that should fix the hang =20=

that people experienced with TeX previewing enabled, and we have also =20=

fixed a few other obscure bugs that were potential crashers with TeX =20
previewing.  My apologies for the rash of releases this last week; it =20=

hasn't really been pleasant for any of us!

The new release can be downloaded from , and bugs should be reported at .  Thanks to =20
those of you who submitted feedback on these last releases.


Changes since 1.1.4

Bugs Fixed
   =95  TeX previewing no longer causes BibDesk to hang
   =95  Fixed another crashing bug in the TeX previewing
   =95  Make sure all TeX previewing tasks are stopped before quitting


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

Subject: Re: [OS X TeX] [ANN] BibDesk-1.1.5
From: "Gary L. Gray" 
Date: Sat, 6 Aug 2005 16:19:47 -0400

I am only getting 1.1.4 from SourceForge.


On Aug 6, 2005, at 4:13 PM, Adam R. Maxwell wrote:

> We've just released a new version of BibDesk that should fix the =20
> hang that people experienced with TeX previewing enabled, and we =20
> have also fixed a few other obscure bugs that were potential =20
> crashers with TeX previewing.  My apologies for the rash of =20
> releases this last week; it hasn't really been pleasant for any of us!
>
> The new release can be downloaded from  bibdesk.sourceforge.net/>, and bugs should be reported at  sourceforge.net/tracker/?group_id=3D61487&atid=3D497423>.  Thanks to =20=

> those of you who submitted feedback on these last releases.
>
>
> Changes since 1.1.4
>
> Bugs Fixed
>   =95  TeX previewing no longer causes BibDesk to hang
>   =95  Fixed another crashing bug in the TeX previewing
>   =95  Make sure all TeX previewing tasks are stopped before quitting
>
> --------------------- 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] [ANN] BibDesk-1.1.5
From: "Jung-Tsung Shen" 
Date: Sat, 6 Aug 2005 13:22:50 -0700

VGhlIHNhbWUgaGVyZS4gQWx0aG91Z2ggaXQgc2F5cyAiQ3VycmVudCBWZXJzaW9uOiAxLjEuNSI=
s
IHRoZSBkb253bG9hZApsaW5rIHNheXMgb3RoZXJ3aXNlLiBEb24ndCBrbm93IGlmIGl0cyBjb25=
0
ZW50IGlzIDEuMS41IHRob3VnaC4KCkpUCgpPbiA4LzYvMDUsIEdhcnkgTC4gR3JheSA8Z3JheUB=
l
bmdyLnBzdS5lZHU+IHdyb3RlOgo+IEkgYW0gb25seSBnZXR0aW5nIDEuMS40IGZyb20gU291cmN=
l
Rm9yZ2UuCj4gCj4gCj4gT24gQXVnIDYsIDIwMDUsIGF0IDQ6MTMgUE0sIEFkYW0gUi4gTWF4d2V=
s
bCB3cm90ZToKPiAKPiA+IFdlJ3ZlIGp1c3QgcmVsZWFzZWQgYSBuZXcgdmVyc2lvbiBvZiBCaWJ=
E
ZXNrIHRoYXQgc2hvdWxkIGZpeCB0aGUKPiA+IGhhbmcgdGhhdCBwZW9wbGUgZXhwZXJpZW5jZWQ=
g
d2l0aCBUZVggcHJldmlld2luZyBlbmFibGVkLCBhbmQgd2UKPiA+IGhhdmUgYWxzbyBmaXhlZCB=
h
IGZldyBvdGhlciBvYnNjdXJlIGJ1Z3MgdGhhdCB3ZXJlIHBvdGVudGlhbAo+ID4gY3Jhc2hlcnM=
g
d2l0aCBUZVggcHJldmlld2luZy4gIE15IGFwb2xvZ2llcyBmb3IgdGhlIHJhc2ggb2YKPiA+IHJ=
l
bGVhc2VzIHRoaXMgbGFzdCB3ZWVrOyBpdCBoYXNuJ3QgcmVhbGx5IGJlZW4gcGxlYXNhbnQgZm9=
y
IGFueSBvZiB1cyEKPiA+Cj4gPiBUaGUgbmV3IHJlbGVhc2UgY2FuIGJlIGRvd25sb2FkZWQgZnJ=
v
bSA8aHR0cDovLwo+ID4gYmliZGVzay5zb3VyY2Vmb3JnZS5uZXQvPiwgYW5kIGJ1Z3Mgc2hvdWx=
k
IGJlIHJlcG9ydGVkIGF0IDxodHRwOi8vCj4gPiBzb3VyY2Vmb3JnZS5uZXQvdHJhY2tlci8/Z3J=
v
dXBfaWQ9NjE0ODcmYXRpZD00OTc0MjM+LiAgVGhhbmtzIHRvCj4gPiB0aG9zZSBvZiB5b3Ugd2h=
v
IHN1Ym1pdHRlZCBmZWVkYmFjayBvbiB0aGVzZSBsYXN0IHJlbGVhc2VzLgo+ID4KPiA+Cj4gPiB=
D
aGFuZ2VzIHNpbmNlIDEuMS40Cj4gPgo+ID4gQnVncyBGaXhlZAo+ID4gICCVICBUZVggcHJldml=
l
d2luZyBubyBsb25nZXIgY2F1c2VzIEJpYkRlc2sgdG8gaGFuZwo+ID4gICCVICBGaXhlZCBhbm9=
0
aGVyIGNyYXNoaW5nIGJ1ZyBpbiB0aGUgVGVYIHByZXZpZXdpbmcKPiA+ICAglSAgTWFrZSBzdXJ=
l
IGFsbCBUZVggcHJldmlld2luZyB0YXNrcyBhcmUgc3RvcHBlZCBiZWZvcmUgcXVpdHRpbmcKPiA=
+
Cj4gPiAtLS0tLS0tLS0tLS0tLS0tLS0tLS0gSW5mbyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0KPiA=
+
IE1hYy1UZVggV2Vic2l0ZTogaHR0cDovL3d3dy5lc20ucHN1LmVkdS9tYWMtdGV4Lwo+ID4gICA=
g
ICAgICAgICYgRkFROiBodHRwOi8vbGF0ZXgueWF1aC5kZS9mYXEvCj4gPiBUZVggRkFROiBodHR=
w
Oi8vd3d3LnRleC5hYy51ay9mYXEKPiA+IExpc3QgUG9zdDogPG1haWx0bzpNYWNPU1gtVGVYQGV=
t
YWlsLmVzbS5wc3UuZWR1Pgo+ID4KPiA+Cj4gPgo+IAo+IC0tLS0tLS0tLS0tLS0tLS0tLS0tLSB=
J
bmZvIC0tLS0tLS0tLS0tLS0tLS0tLS0tLQo+IE1hYy1UZVggV2Vic2l0ZTogaHR0cDovL3d3dy5=
l
c20ucHN1LmVkdS9tYWMtdGV4Lwo+ICAgICAgICAgICAgJiBGQVE6IGh0dHA6Ly9sYXRleC55YXV=
o
LmRlL2ZhcS8KPiBUZVggRkFROiBodHRwOi8vd3d3LnRleC5hYy51ay9mYXEKPiBMaXN0IFBvc3Q=
6
IDxtYWlsdG86TWFjT1NYLVRlWEBlbWFpbC5lc20ucHN1LmVkdT4KPiAKPiAKPgo=3D

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

Subject: away from my mail
From: "via the vacation program" 
Date: Sat,  6 Aug 2005 15:23:26 -0500 (CDT)

I am on vacation until late August.  Your mail
regarding "" will be read when I return.

	- John


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

Subject: Re: [OS X TeX] [ANN] BibDesk-1.1.5
From: "Adam R. Maxwell" 
Date: Sat, 6 Aug 2005 13:38:35 -0700


On Aug 6, 2005, at 13:19, Gary L. Gray wrote:

> I am only getting 1.1.4 from SourceForge.

sorry, forgot to edit the link itself.  should work now.

thanks,
Adam

>
>
>
> On Aug 6, 2005, at 4:13 PM, Adam R. Maxwell wrote:
>
>
>> We've just released a new version of BibDesk that should fix the =20
>> hang that people experienced with TeX previewing enabled, and we =20
>> have also fixed a few other obscure bugs that were potential =20
>> crashers with TeX previewing.  My apologies for the rash of =20
>> releases this last week; it hasn't really been pleasant for any of =20=

>> us!
>>
>> The new release can be downloaded from > bibdesk.sourceforge.net/>, and bugs should be reported at > sourceforge.net/tracker/?group_id=3D61487&atid=3D497423>.  Thanks to =20=

>> those of you who submitted feedback on these last releases.
>>
>>
>> Changes since 1.1.4
>>
>> Bugs Fixed
>>   =95  TeX previewing no longer causes BibDesk to hang
>>   =95  Fixed another crashing bug in the TeX previewing
>>   =95  Make sure all TeX previewing tasks are stopped before quitting
>>
>> --------------------- 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: 
>>
>>
>>
>>
>
> --------------------- 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] [ANN] BibDesk-1.1.5
From: "Michael S. Hanson" 
Date: Sat, 6 Aug 2005 16:41:01 -0400

On Aug 6, 2005, at 4:19 PM, Gary L. Gray wrote:

> I am only getting 1.1.4 from SourceForge.

	Slow updating of mirrors perhaps?  I was able to download successfully  
from  
.  YMMV.

                                         -- Mike


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