From: Fred J. <ph...@ya...> - 2006-05-10 10:57:41
|
Hi where do I get the numpy book from? a link would be fine. and thanks for making it available for such a low price. --------------------------------- New Yahoo! Messenger with Voice. Call regular phones from your PC and save big. |
From: Jonathan T. <jon...@st...> - 2006-07-07 15:18:28
|
I bought a copy of the numpy book sometime in January which I have since lost in a careless mistake. Is there a way to get another (updated) copy? I couldn't see how this was done on the website. Thanks, Jonathan -- ------------------------------------------------------------------------ Jonathan Taylor Tel: 650.723.9230 Dept. of Statistics Fax: 650.725.8977 Sequoia Hall, 137 www-stat.stanford.edu/~jtaylo 390 Serra Mall Stanford, CA 94305 |
From: Sven S. <sve...@gm...> - 2006-11-02 12:24:09
|
Hi, now that 1.0 is out I would like to ask again about the status of the numpy ebook. Is there any mechanism in place where owners can get the updates? Note that this is not a request to Travis to send me the latest version by private email. That would be inefficient and my need is not that urgent. Nevertheless I think that issue should be settled. Excuse me if I've missed something obvious in that respect. Thanks, Sven |
From: Travis O. <oli...@ee...> - 2006-11-02 15:41:35
|
>Note that this is not a request to Travis to send me the latest version >by private email. That would be inefficient and my need is not that >urgent. Nevertheless I think that issue should be settled. > > There will be an update, soon. I'm currently working on the index, corrections, and formatting issues. The update will be sent in conjunction with the release of 1.0.1 which I am targetting in 2 weeks. Thanks for everybody's patience. If you need an update now, I'm happy to send it to you by private email. Best regards, -Travis O. |
From: Fernando P. <fpe...@gm...> - 2006-11-02 16:00:55
|
On 11/2/06, Travis Oliphant <oli...@ee...> wrote: > > >Note that this is not a request to Travis to send me the latest version > >by private email. That would be inefficient and my need is not that > >urgent. Nevertheless I think that issue should be settled. > > > > > There will be an update, soon. I'm currently working on the index, > corrections, and formatting issues. If I may make a suggestion, it would greatly increase the usability of the PDF if it had internal and external clickable links, as well as a PDF table of contents (the one that appears on the left sidebar of acroread). Since I know the original is in Lyx, here's my standard preamble for these kinds of documents, which includes all the goodies for generating such a PDF, with some color and formatting tweaks so that it prints legibly on black and white as well as looking nice on screen. If you add this to your preamble, a simple 'view->pdflatex' should work. I'll be happy to help if you have any issues. Cheers, f %%% My preamble; tweak and season to taste: % This gives us a better font in URL links (otherwise the default % MonoSpace font is bitmapped, and it looks horrible in PDF) \usepackage{courier} \usepackage{fullpage} \usepackage{color} % so we can use red for the fixme warnings % The hyperref package gives us a pdf with properly built % internal navigation ('pdf bookmarks' for the table of contents, % internal cross-reference links, web links for URLs, etc.) % A few colors to replace the defaults for certain link types \definecolor{darkorange}{rgb}{.71,0.21,0.01} \definecolor{darkgreen}{rgb}{.12,.54,.11} \usepackage[ %pdftex, % needed for pdflatex breaklinks=true, % so long urls are correctly broken across lines colorlinks=true, urlcolor=blue, linkcolor=darkorange, citecolor=darkgreen, ]{hyperref} % This helps prevent overly long lines that stretch beyond the margins \sloppy % Define a \fixme command to mark visually things needing fixing in the draft. % For final printing or to simply disable these bright warnings, simply % uncomment the \renewcommand redefinition below \newcommand{\fixme}[1] { \textcolor{red}{ {\fbox{ {\bf FIX} \ensuremath{\blacktriangleright \blacktriangleright \blacktriangleright}} {\bf #1} \fbox{\ensuremath{ \blacktriangleleft \blacktriangleleft \blacktriangleleft } } } } } % Uncomment the next line to make the \fixme command be a no-op %\renewcommand{\fixme}[1]{} %%% If you also want to use the listings package for nicely formatted %%% Python source code, this configuration produces good on-paper and %%% on-screen results: \definecolor{orange}{cmyk}{0,0.4,0.8,0.2} % Use and configure listings package for nicely formatted code \usepackage{listings} \lstset{ language=Python, basicstyle=\small\ttfamily, commentstyle=\ttfamily\color{blue}, stringstyle=\ttfamily\color{orange}, showstringspaces=false, breaklines=true, postbreak = \space\dots } |
From: Torgil S. <tor...@gm...> - 2006-11-02 19:32:55
|
> generating such a PDF, with some color and formatting tweaks so that > it prints legibly on black and white as well as looking nice on > screen. This sounds promising. I actually have had problems printing the guide, every information box showed up completely black except for the emblem. On 11/2/06, Fernando Perez <fpe...@gm...> wrote: > On 11/2/06, Travis Oliphant <oli...@ee...> wrote: > > > > >Note that this is not a request to Travis to send me the latest version > > >by private email. That would be inefficient and my need is not that > > >urgent. Nevertheless I think that issue should be settled. > > > > > > > > There will be an update, soon. I'm currently working on the index, > > corrections, and formatting issues. > > If I may make a suggestion, it would greatly increase the usability of > the PDF if it had internal and external clickable links, as well as a > PDF table of contents (the one that appears on the left sidebar of > acroread). > > Since I know the original is in Lyx, here's my standard preamble for > these kinds of documents, which includes all the goodies for > generating such a PDF, with some color and formatting tweaks so that > it prints legibly on black and white as well as looking nice on > screen. If you add this to your preamble, a simple 'view->pdflatex' > should work. I'll be happy to help if you have any issues. > > Cheers, > > f > > %%% My preamble; tweak and season to taste: > > % This gives us a better font in URL links (otherwise the default > % MonoSpace font is bitmapped, and it looks horrible in PDF) > \usepackage{courier} > > \usepackage{fullpage} > > \usepackage{color} % so we can use red for the fixme warnings > > % The hyperref package gives us a pdf with properly built > % internal navigation ('pdf bookmarks' for the table of contents, > % internal cross-reference links, web links for URLs, etc.) > > % A few colors to replace the defaults for certain link types > \definecolor{darkorange}{rgb}{.71,0.21,0.01} > \definecolor{darkgreen}{rgb}{.12,.54,.11} > > \usepackage[ > %pdftex, % needed for pdflatex > breaklinks=true, % so long urls are correctly broken across lines > colorlinks=true, > urlcolor=blue, > linkcolor=darkorange, > citecolor=darkgreen, > ]{hyperref} > > % This helps prevent overly long lines that stretch beyond the margins > \sloppy > > % Define a \fixme command to mark visually things needing fixing in the draft. > % For final printing or to simply disable these bright warnings, simply > % uncomment the \renewcommand redefinition below > > \newcommand{\fixme}[1] { > \textcolor{red}{ > {\fbox{ {\bf FIX} > \ensuremath{\blacktriangleright \blacktriangleright \blacktriangleright}} > {\bf #1} > \fbox{\ensuremath{ \blacktriangleleft \blacktriangleleft \blacktriangleleft } > } } } > } > % Uncomment the next line to make the \fixme command be a no-op > %\renewcommand{\fixme}[1]{} > > %%% If you also want to use the listings package for nicely formatted > %%% Python source code, this configuration produces good on-paper and > %%% on-screen results: > > \definecolor{orange}{cmyk}{0,0.4,0.8,0.2} > % Use and configure listings package for nicely formatted code > \usepackage{listings} > \lstset{ > language=Python, > basicstyle=\small\ttfamily, > commentstyle=\ttfamily\color{blue}, > stringstyle=\ttfamily\color{orange}, > showstringspaces=false, > breaklines=true, > postbreak = \space\dots > } > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Numpy-discussion mailing list > Num...@li... > https://lists.sourceforge.net/lists/listinfo/numpy-discussion > |
From: Travis O. <oli...@ee...> - 2006-11-02 16:03:25
|
Fernando Perez wrote: >On 11/2/06, Travis Oliphant <oli...@ee...> wrote: > > >>>Note that this is not a request to Travis to send me the latest version >>>by private email. That would be inefficient and my need is not that >>>urgent. Nevertheless I think that issue should be settled. >>> >>> >>> >>> >>There will be an update, soon. I'm currently working on the index, >>corrections, and formatting issues. >> >> > >If I may make a suggestion, it would greatly increase the usability of >the PDF if it had internal and external clickable links, as well as a >PDF table of contents (the one that appears on the left sidebar of >acroread). > >Since I know the original is in Lyx, here's my standard preamble for >these kinds of documents, which includes all the goodies for >generating such a PDF, with some color and formatting tweaks so that >it prints legibly on black and white as well as looking nice on >screen. If you add this to your preamble, a simple 'view->pdflatex' >should work. I'll be happy to help if you have any issues. > > Thanks for the pre-amble. Does it require pdflatex? I use ps2pdf because to generate the shaded boxes and graphics. I could probably try to do it with pdflatex and png files but I haven't tried, yet. -Travis |
From: Fernando P. <fpe...@gm...> - 2006-11-02 16:07:25
|
On 11/2/06, Travis Oliphant <oli...@ee...> wrote: > Thanks for the pre-amble. Does it require pdflatex? I use ps2pdf > because to generate the shaded boxes and graphics. I could probably try > to do it with pdflatex and png files but I haven't tried, yet. I just tested it with ps2pdf on a document, and it worked fine. If you have problems, play with commenting (or not) the first option line to hyperref: \usepackage[ %pdftex, % needed for pdflatex In the copy I gave you it's commented out, so it /should/ work for ps2pdf. But I've had documents where I've had to uncomment it, and I think at that point they stop working with ps2pdf, and yes, you lose the usage of PostScript specials in that case (which I use for things like whole-page DRAFT watermarks). Cheers, f |
From: Steven H. R. <st...@sh...> - 2006-05-10 12:37:04
|
http://www.trelgol.com/ Fred J. wrote: > Hi > > where do I get the numpy book from? a link would be fine. and thanks for > making it available for such a low price. > > ------------------------------------------------------------------------ > New Yahoo! Messenger with Voice. Call regular phones from your PC > <http://us.rd.yahoo.com/mail_us/taglines/postman5/*http://us.rd.yahoo.com/evt=39666/*http://messenger.yahoo.com> > and save big. -- Steven H. Rogers, Ph.D., st...@sh... Weblog: http://shrogers.com/weblog "He who refuses to do arithmetic is doomed to talk nonsense." -- John McCarthy |
From: Alan G I. <ai...@am...> - 2006-05-10 14:21:21
|
On Wed, 10 May 2006, "Fred J." apparently wrote: > where do I get the numpy book from? http://www.tramy.us/ Cheers, Alan Isaac |
From: Nicolas G. <gr...@as...> - 2006-05-10 16:46:23
|
and the new version? I bought mine there are sometimes and I have been very= =20 surprised to see that some people does have a newer version. I'm not=20 complaining I'm pretty sure that Travis is overbusy with Numpy but perhaps = a=20 good things to do will be to send automatically a link to the last version = of=20 the book. Parhpas a web site with login+passwd gave when you're buying the= =20 book will be the perfect solution. Travis can update is version to the site= =20 and people can check it themselve. Only some suggestion but I would like to have my book update my version is = dat=20 from October 27 2005...=20 N. Le Wednesday 10 Mai 2006 10:28, Alan G Isaac a =E9crit=A0: > On Wed, 10 May 2006, "Fred J." apparently wrote: > > where do I get the numpy book from? > > http://www.tramy.us/ > > Cheers, > Alan Isaac > > > > > > > ------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > _______________________________________________ > Numpy-discussion mailing list > Num...@li... > https://lists.sourceforge.net/lists/listinfo/numpy-discussion |