<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-18922912</id><updated>2012-01-29T10:44:01.169+01:00</updated><category term='osx'/><category term='latex'/><title type='text'>My tools of the trade</title><subtitle type='html'>This blog is just a simple repository for sharing some information on the tools I use as an economics professor. In my activities, I use computing tools for writing articles (mainly in LaTeX). I am also a computational economist and I develop models studied using computer simulations and statistical analysis...
&lt;p align="right"&gt;&lt;a href="http://yildizoglu.info"&gt;&lt;i&gt;&lt;b&gt; Murat Yildizoglu&lt;/b&gt;&lt;/i&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p align="right"&gt; &lt;a href="http://plus.yildizoglu.info"&gt;&lt;i&gt;&lt;b&gt; My Google+ &lt;/b&gt;&lt;/i&gt;&lt;/a&gt;&lt;/p&gt;</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>29</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-18922912.post-7472488773768448770</id><published>2012-01-16T19:07:00.004+01:00</published><updated>2012-01-16T19:37:11.146+01:00</updated><title type='text'>Using multiple processor cores in R-Projet</title><content type='html'>&lt;p style="text-align: left"&gt;My laptop is equipped with a  Core i7 processor with 4 cores that can execute in parallel 8 processes. My R-Project computations use only one single core,  if I use the default instructions. I have ended up by thinking that it is a pity that other cores are just sitting idle (sort of), instead of contributing to the speed of my computations, even if I do not run yet really heavy  ones in my research. As a consequence, I have started to look for an easy way to use all cores in R-project. And, indeed, there is an easy solution to this problem. It uses the &lt;strong&gt;&lt;a href="http://cran.r-project.org/web/packages/doMC/index.html"&gt;doMC&lt;/a&gt;&lt;/strong&gt; library, and the instructions &lt;strong&gt;foreach&lt;/strong&gt; and &lt;strong&gt;%dopar%&lt;/strong&gt;.&lt;/p&gt;&lt;p style="text-align: left"&gt;For example, for computing linear models with different dependent variables and a given set of exogenous ones, one can do the following computations:&lt;/p&gt;&lt;p style="text-align: left"&gt;&lt;span class="Apple-style-span"&gt;&lt;span style="font-size: 10pt;"&gt;l&lt;/span&gt;&lt;span&gt;ibrary(doMC) # There are other parallel computing libraries&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;&lt;span class="Apple-style-span"&gt;registerDoMC() # You mud register one of them for foreach&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;&lt;span&gt;getDoParWorkers() # Indicates you how many cores have been detected by registerDoMC()&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;Suppose that you have a dataset called mydata, containing the dependent variables y1, y2, y3, and the independent variables, x1,x2,x3.&lt;br /&gt;We can execute in parallel the estimation of linear models of each y on the set of independent variables, by executing the following code:&lt;br /&gt;&lt;p style="text-align: left"&gt;&lt;span class="Apple-style-span"&gt;myVariableList &amp;lt;- c("y1", "y2", "y3")&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;&lt;span class="Apple-style-span"&gt;results &amp;lt;- &lt;strong&gt;foreach&lt;/strong&gt;(i = 1:length(myVariableList),.errorhandling="stop",.inorder=TRUE)&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;&lt;span class="Apple-style-span"&gt;&lt;b&gt;%&lt;/b&gt;&lt;strong&gt;dopar% &lt;/strong&gt;{&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;      &lt;/span&gt;model &amp;lt;- lm(as.formula(paste(myVariableList[i],"~x1+x2+x3")),data=mydata)&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;      &lt;/span&gt;return(model)&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;&lt;span class="Apple-style-span"&gt;}&lt;/span&gt;&lt;/p&gt;&lt;strong&gt;%dopar%&lt;/strong&gt; executes these estimations on different cores, in parallel and a list of the estimated models is saved in the variable results.&lt;br /&gt;We can now look at the characteristics of the estimated models, by printing them successively on the output of R:&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span"&gt;for (i in 1:length(results)) {  print(summary(results[[i]])) }&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Voilà!&lt;br /&gt;&lt;br /&gt;Of course, this possibility is especially useful for more complex computations, like stepwise regressions with many independent variables, that can take some time, or regression trees with big datasets, etc.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-7472488773768448770?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/7472488773768448770/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=7472488773768448770&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7472488773768448770'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7472488773768448770'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2012/01/using-multiple-processor-cores-in-r.html' title='Using multiple processor cores in R-Projet'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-4574443131197659345</id><published>2012-01-07T14:21:00.000+01:00</published><updated>2012-01-07T14:34:25.529+01:00</updated><title type='text'>Broken XQuartz applications under OSX Lion</title><content type='html'>&lt;p style="text-align: left"&gt;So, my new laptop runs OSX Lion. I have been able to migrate my data from the old laptop (but the automatic process provided by the Migration assistant was a failure, Apple support had to help me to do it manually).&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align: left"&gt;Many of the migrated applications have worked without a hitch as soon as the migration ended, but some other applications, like gretl -the GNU econometric software- and some wine-based windows tools, have refused to start. I was quite annoyed by this, but have not had any time to take care of it until today. I have installed wine using MacPorts (instead of the WineBottler that I normally use), the problem persisted. I have discovered PlayItOnMac (PION) implementation of Wine and installed it, but the installation stalled during the creation of the virtual disk needed by this soft. &lt;/p&gt;&lt;br /&gt;&lt;p style="text-align: left"&gt;Now, the support page of PION tells that you should start XQuartz to complete the installation process if you get stalled the first time. And I have tried to do launch it (it lives in Applications/Utilities), but it crashed by telling that the version I am trying to launch is maybe not compatible with my OS. Actually, that was an important clue. I have directly jumped on the &lt;a href="http://xquartz.macosforge.org/trac/wiki/Releases"&gt;XQuartz website&lt;/a&gt; and seen that there was a new version waiting for me. I have installed it and &lt;strong&gt;BINGO!&lt;/strong&gt; All my Wine and X11 softs are working again.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align: left"&gt;So, if you have difficulties to launch Wine-based or XWindows softs after having upgraded to Lion (or on your new Mac under Lion), you should download and install the most recent version of XQuartz, from their &lt;a href="http://xquartz.macosforge.org/trac/wiki/Releases"&gt;web site&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-4574443131197659345?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/4574443131197659345/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=4574443131197659345&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/4574443131197659345'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/4574443131197659345'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2012/01/broken-xquartz-applications-under-osx.html' title='Broken XQuartz applications under OSX Lion'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-7903552026498867086</id><published>2011-12-30T15:31:00.003+01:00</published><updated>2011-12-30T15:53:05.628+01:00</updated><title type='text'>Graphical interfaces (apps) for launching ipe7 and batch converting drawings from ipe6 to ipe7</title><content type='html'>&lt;p style="text-align: left"&gt;As promised below, I propose here some small graphical interfaces created with Platypus for:&lt;/p&gt;&lt;ul style="list-style-type: disc"&gt;&lt;li style="text-align: left"&gt;&lt;span style="text-decoration: underline;"&gt;Launching ipe&lt;/span&gt;.     &lt;strong&gt;ipe7.app&lt;/strong&gt; can be launched to open pdf/eps/ipe files created with ipe7. It contains the necessary environment variables (pointing to the standard TeX pdflatex path under TexLive - /usr/texbin/pdflatex) to allow the compilation of Latex text snippets. You can also associate .ipe files with this app and directly open them from finder. You can also right-click on an ipe7 pdf/eps file and « open with »  this app. &lt;/li&gt;&lt;li style="text-align: left"&gt;&lt;span style="text-decoration: underline;"&gt;Batch converting ipe6 files&lt;/span&gt;.     &lt;strong&gt;ipe6to7-BatchConvert.app&lt;/strong&gt; will open a small dropping windows on which you can … drop pdf/eps files created by ipe6. For each dropped file, it will save in the same folder as the dropped files two files with the same name as the dropped file (lets assume, &lt;span style="font-size: 10pt;"&gt;&lt;strong&gt;filename.pdf&lt;/strong&gt;&lt;/span&gt;), but different extensions: &lt;span style="font-size: 10pt;"&gt;&lt;strong&gt;filename.xml &lt;/strong&gt;&lt;/span&gt;is the extracted file;,you do not really need it and delete it if you desire; &lt;span style="font-size: 10pt; color: rgb(18,7,206);"&gt;&lt;strong&gt;filename.ipe&lt;/strong&gt;&lt;/span&gt; is the one you want. You can open it in ipe (using ipe7.app, for example ;-)  ).&lt;/li&gt;&lt;li style="text-align: left"&gt;&lt;span style="text-decoration: underline;"&gt;Converting and opening a single ipe6 file&lt;/span&gt;.    &lt;strong&gt;ipe6to7-ConvertOpen.app&lt;/strong&gt; will also open a dropping window where you will be able to drop a single ipe6 file (pdf or eps). The app will create the corresponding .xml and .ipe files in the same folder as the original file, and directly open the .ipe file in ipe7 for editing.&lt;/li&gt;&lt;/ul&gt;&lt;strong&gt;You can download these small apps from &lt;a href="http://yildizoglu.info/files/ipe7-tools.zip"&gt;my web site&lt;/a&gt;&lt;/strong&gt;. You will get a small zip archive that you can uncompress in any folder and copy in your Applications folder (but you do not need to, you can launch them from anywhere). I have tried to design them relatively generic, but ave not tried on another Mac.  I have at least one small operation that is specific to my configuration, but it should not be blocking for you. Let me know if you meet any problems with these tools.&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align: left"&gt;&lt;strong&gt;Note:&lt;/strong&gt; These tools assume that you have installed on your Mac OSX:&lt;/p&gt;&lt;ul style="list-style-type: disc"&gt;&lt;li style="text-align: left"&gt;ipe7 and ipe-tools using MacPorts (please see below my post on this installation process);&lt;/li&gt;&lt;li style="text-align: left"&gt;TexLive (a recent version, I use 2011).&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-7903552026498867086?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/7903552026498867086/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=7903552026498867086&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7903552026498867086'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7903552026498867086'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2011/12/graphical-interface-for-launching-ipe7.html' title='Graphical interfaces (apps) for launching ipe7 and batch converting drawings from ipe6 to ipe7'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-3819232187419812972</id><published>2011-12-30T13:41:00.002+01:00</published><updated>2011-12-30T15:52:05.737+01:00</updated><title type='text'>Using Penn World Tables with R-Project, the easy way</title><content type='html'>&lt;p style="text-align: left"&gt;&lt;strong&gt;&lt;a href="http://pwt.econ.upenn.edu/php_site/pwt_index.php"&gt;Penn World Tables (PWT)&lt;/a&gt;&lt;/strong&gt; is a very nice data collection on economic growth. It covers a large set of countries (from their web site):&lt;/p&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;table style="text-align: center;empty-cells: show; border-collapse: collapse; "&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="width: 394px;padding: 0px,5px,0px,5px;border: 2px solid rgb(191,191,191);margin: 0px,0px,0px,0px;"&gt;&lt;div style="text-align: justify;"&gt;&lt;em&gt;« The Penn World Table provides purchasing power parity and national income accounts converted to international prices for 189 countries/territories for some or all of the years 1950-2009. The European Union or the OECD provide more detailed purchasing power and real product estimates for their countries and the World Bank makes current price estimates for most PWT countries at the GDP level. »&lt;/em&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;I use these data for creating graphics for my economic growth course. My workflow was based on importing them in &lt;strong&gt;csv&lt;/strong&gt; format into R-Project. But I have very recently discovered that there is much better way of using them ;-) Just loading the &lt;strong&gt;&lt;a href="http://cran.r-project.org/web/packages/pwt/index.html"&gt;pwt library&lt;/a&gt;&lt;/strong&gt; in your R-project code, thanks to Achim Zeileis, Guan Yang who provide this library. You must first install it from CRAN, using the usual R command for this. Once it is installed, it is enough to run the following commands to gain access to the data contained in PWT 7:&lt;br /&gt;&lt;p style="text-align: left"&gt;        &lt;span style="font-size: 10pt; color: rgb(0,0,0);"&gt;&lt;strong&gt;library(pwt)&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;        &lt;span style="font-size: 10pt; color: rgb(0,0,0);"&gt;&lt;strong&gt;data(pwt7.0)&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;You can check the names of the included variables:&lt;/p&gt;&lt;p style="text-align: left"&gt;        &lt;span style="font-size: 10pt; color: rgb(0,0,0);"&gt;&lt;strong&gt;names(pwt7.0)&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;And the help of the package gives you the exact definition of these variables:&lt;/p&gt;&lt;p style="text-align: left"&gt;        &lt;span style="font-size: 10pt; color: rgb(0,0,0);"&gt;&lt;strong&gt;help("pwt7.0")&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;If you prefer, you can use a more user-friendly name for this table:&lt;/p&gt;&lt;p style="text-align: left"&gt;        &lt;span style="font-size: 10pt; color: rgb(0,0,0);"&gt;&lt;strong&gt;myData &amp;lt;- pwt7.0&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;And clean the row names:&lt;/p&gt;&lt;p style="text-align: left"&gt;        &lt;span style="font-size: 10pt; color: rgb(0,0,0);"&gt;&lt;strong&gt;row.names(total) &amp;lt;- NULL&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left"&gt;And voilà! &lt;/p&gt;&lt;p style="text-align: left"&gt;Simple and easy, thanks to Achim and Guan :-)&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-3819232187419812972?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/3819232187419812972/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=3819232187419812972&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/3819232187419812972'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/3819232187419812972'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2011/12/using-penn-world-tables-with-r-project.html' title='Using Penn World Tables with R-Project, the easy way'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-7644601797602811637</id><published>2011-12-30T12:22:00.002+01:00</published><updated>2011-12-30T14:07:59.741+01:00</updated><title type='text'>Installing ipe 7 under OSX Lion</title><content type='html'>&lt;p style="text-align: left"&gt;After having tried other solutions for my pdflatex graphics, I am reconsidering again &lt;strong&gt;&lt;a href="http://ipe7.sourceforge.net/"&gt;ipe&lt;/a&gt;&lt;/strong&gt; (see below my post about this very nice and useful program that allows you to put latex instructions in your drawings). My initial wanderings were motivated by the unavailability of a reliable ipe version under Snow Leopard. I have been able to compile a 6pre28 version (see below), but it was nor as reliable as I desired and it became completely unusable as soon as I have switched to Lion (mainly because of the Qt framework version I have used to compile it). I have also played with versions available in MacPorts and this is the solution I will propose to you for installing ipe7 under Lion.&lt;/p&gt;&lt;p style="text-align: left"&gt;&lt;strong&gt;A/&lt;/strong&gt; &lt;b&gt;&lt;span class="Apple-style-span" &gt;Installing MacPorts.&lt;/span&gt;&lt;/b&gt; First of all, you must download and install MacPorts. It could look daunting at a first look, but the process is quite painless (if you already have MacPorts on your Mac, go to the step B below):&lt;/p&gt;&lt;ol style="list-style-type: decimal"&gt;&lt;li style="text-align: left"&gt;You first download the dmg archive corresponding to your system (Lion for me) from the &lt;strong&gt;&lt;a href="http://www.macports.org/install.php"&gt;install page&lt;/a&gt;&lt;/strong&gt; of Macports;&lt;/li&gt;&lt;li style="text-align: left"&gt;Double-click on the downloaded &lt;span style="font-size: 10pt;"&gt;&lt;strong&gt;MacPorts-2.0.3-10.7-Lion.dmg&lt;/strong&gt;&lt;/span&gt; file to mount it in Finder and open it in the finder (I assume that you know how to use a dmg file);&lt;/li&gt;&lt;li style="text-align: left"&gt;Switch in Finder to the folder corresponding to the dmg volume and double-click on c to launch the installer. You follow the instructions (they are very straightforward). MacPorts installs itself, by default, in &lt;span style="font-size: 10pt;"&gt;&lt;strong&gt;/opt/local&lt;/strong&gt;&lt;/span&gt; folder on your system hard disk.&lt;/li&gt;&lt;li style="text-align: left"&gt;Once the installation finishes, restart your Mac to be sure that everything (PATH and all will be correctly fixed).&lt;/li&gt;&lt;li style="text-align: left"&gt;When your system is back, open a Terminal session and type: « &lt;span style="font-size: 10pt;"&gt;&lt;strong&gt;sudo port selfupdate&lt;/strong&gt;&lt;/span&gt; » to update the repository of your macport installation with the list of the most recent packages (you will have to type your administrative password for this).&lt;/li&gt;&lt;/ol&gt;&lt;strong&gt;B/&lt;/strong&gt; &lt;b&gt;&lt;span class="Apple-style-span" &gt;Installing ipe and and ipe-tools.&lt;/span&gt;&lt;/b&gt; You are now ready to install ipe :&lt;ol style="list-style-type: decimal"&gt;&lt;li style="text-align: left"&gt;You can check the availability of ipe, by typing  « &lt;span style="font-size: 10pt;"&gt;&lt;strong&gt;port search ipe&lt;/strong&gt;&lt;/span&gt; »;&lt;/li&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;You will get the list of all packages that have « ipe » as a part of their name. The two packages that interest us are: &lt;span style="font-size: 10pt;"&gt;&lt;strong&gt;ipe &lt;a href="mailto:@7.0.14"&gt;@7.0.14&lt;/a&gt; (graphics)&lt;/strong&gt;&lt;/span&gt; (The Ipe extensible drawing editor, the main program) and &lt;span style="font-size: 10pt;"&gt;&lt;strong&gt;ipe-tools @20110916 (graphics)&lt;/strong&gt;&lt;/span&gt; (Tools for the Ipe extensible drawing editor, utility tools for converting old ipe drawings to ipe7 - see below about this point).&lt;/li&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;You install them by typing in the Terminal:&lt;br /&gt;&lt;ul style="list-style-type: hyphen"&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;sudo port install ipe&lt;/li&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;sudo port install ipe-tools&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;The installation process will download other all necessary MacPorts packages, and it will take some time depending on the sped of your internet connection and of your Mac. If ever the process stop, you just relaunch the installation instruction. MacPorts will in general give you tips for solving the problem, if you meet any (generally it just works, you must be patient, that’s all). &lt;/li&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;You will have a bunch of command in the &lt;span style="font-size: 10pt;"&gt;&lt;strong&gt;/opt/local/&lt;/strong&gt;&lt;/span&gt;bin folder now, and the ones which interest us are:&lt;br /&gt;&lt;ul style="list-style-type: hyphen"&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;ipe  (the main program, ipe7);&lt;/li&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;ipeextract (the utility for extracting ipe instruction from ipe created PDF or EPS files -&amp;gt; ipeextract myfile.pdf gives myfile.xml as output);&lt;/li&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;ipe6upgrade (the utility for upgrading ipe6 drawings to ipe7 format -&amp;gt; ipe6upgrade myfile.xml gives myfile.ipe as output);&lt;/li&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;These programs are supposed to be launched in the Terminal, but I have created solution for launching them from the Applications menu (using Platypus - see below; I will do another post on this point).&lt;/li&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;MacPorts will also install a MacPorts menu in your Applications menu. There will even be an « ipe » item in this menu and it will launch the program. You will be able to draw with it, but, since it does not correctly import the environment variables, you will not be able to run Latex from it. Everything works better if you launch ipe from the command line (or if you use the utilities I have developed using Platypus).&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;br /&gt;&lt;li style="text-align: left"&gt;Now you have a working version of ipe7 on your Mac. Have fun!&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-7644601797602811637?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/7644601797602811637/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=7644601797602811637&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7644601797602811637'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7644601797602811637'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2011/12/installing-ipe-7-under-osx.html' title='Installing ipe 7 under OSX Lion'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-4482886561298258246</id><published>2011-08-15T15:59:00.003+02:00</published><updated>2011-09-11T12:25:04.767+02:00</updated><title type='text'>Switching to GooglePlus</title><content type='html'>&lt;div class="posterous_autopost"&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p&gt;Posterous does not accept autoposts by mail from/to GooglePlus, so some of my articles can now only be seen on my G+ page.&lt;/p&gt;  &lt;p&gt;Moreover, given the complexity of managing Facebook, Twitter, a blog (Posterous was a potential solution for merging these streams) and now G+, I will progressively group everything in the latter stream.&lt;/p&gt;  &lt;p&gt;You can read my Google+ stream from this address: &lt;a href="http://plus.yildizoglu.info/"&gt;My GooglePlus&lt;/a&gt;. &lt;/p&gt;   My Posterous: &lt;a href="http://yildizoglu.posterous.com"&gt;http://yildizoglu.posterous.com  &lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-4482886561298258246?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://plus.yildizoglu.info' title='Switching to GooglePlus'/><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/4482886561298258246/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=4482886561298258246&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/4482886561298258246'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/4482886561298258246'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2011/08/untitled.html' title='Switching to GooglePlus'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-6674833162214850589</id><published>2011-02-24T19:41:00.001+01:00</published><updated>2011-02-24T19:41:15.742+01:00</updated><title type='text'>A very nice free tool for OSX: Platypus helps you to make your scripts more user-friendly</title><content type='html'>&lt;div class='posterous_autopost'&gt;&lt;a href='http://posterous.com/getfile/files.posterous.com/yildizoglu/Bh1BQy7T5ucOojfHMgDFtAXaDAOnPS3J38UmhH7rkH9dDn1WzvzymaSuvLrV/platypus.jpg'&gt;&lt;img src="http://posterous.com/getfile/files.posterous.com/yildizoglu/Bh1BQy7T5ucOojfHMgDFtAXaDAOnPS3J38UmhH7rkH9dDn1WzvzymaSuvLrV/platypus.jpg" width="580" height="485.090909090909"/&gt;&lt;/a&gt; &lt;p&gt;      I have just discovered a very nice tool. I was looking for a solution that would allow me to include software installed via MacPorts in my Applications menu. I was looking for more than a simple symbolic link to a bash script. Something nicer, with an icon and some interactivity. Then I have found a reference to Platypus on a forum. &lt;p /&gt;  &lt;a href="http://www.sveinbjorn.org/platypus"&gt;Platypus&lt;/a&gt; allows you to pack any command-line based software into an .app bundle with a nice icon, or a droplet on which you can "drop" a set of files for batch processing. &lt;br /&gt; You can bundle many different programs as an App: your scripts - Perl, Php, Python, AppleScript- , command line tools included in OSX or installed via MacPorts,etc.&lt;p /&gt;  Platypus is quite simple to use and comes with nice and helpful documentation. &lt;br /&gt; If you like it, you can support the project with a donation.&lt;p /&gt; &lt;/p&gt;   My Posterous: http://yildizoglu.posterous.com  &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-6674833162214850589?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/6674833162214850589/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=6674833162214850589&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/6674833162214850589'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/6674833162214850589'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2011/02/very-nice-free-tool-for-osx-platypus.html' title='A very nice free tool for OSX: Platypus helps you to make your scripts more user-friendly'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-231228172067950222</id><published>2011-01-23T20:19:00.004+01:00</published><updated>2011-01-23T20:24:21.808+01:00</updated><title type='text'>A nice tool for presenting dynamic data for teaching: Gapminder</title><content type='html'>&lt;div class="posterous_autopost"&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://www.gapminder.org/"&gt;&lt;/a&gt;&lt;a href="http://posterous.com/getfile/files.posterous.com/yildizoglu/F7Wyraz8IeA3bpTwqLiPwTCvp6jTrY6WFJE7U5x1MShnLupSWtGAl18XTYw7/gapmind.jpg"&gt;&lt;img style="width: 367px; height: 277px;" src="http://posterous.com/getfile/files.posterous.com/yildizoglu/F7Wyraz8IeA3bpTwqLiPwTCvp6jTrY6WFJE7U5x1MShnLupSWtGAl18XTYw7/gapmind.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;This time I will write on my first impression about a gorgeous teaching tool that I have discovered thanks to a &lt;a href="http://www.ted.com/talks/hans_rosling_shows_the_best_stats_you_ve_ever_seen.html"&gt;TED video by Hans Rosling&lt;/a&gt;: &lt;b style="color: rgb(255, 0, 0);"&gt;&lt;a href="http://www.gapminder.org/"&gt;Gapminder&lt;/a&gt;&lt;/b&gt;.&lt;br /&gt;Gapminder is a web site that allows dynamic presentation of many interesting time series (economic indicators, demographics, education, technology). It is also possible to download an off-line version made with Adobe Air.&lt;br /&gt;It is very straightforward to use (just click to select the data to show on both axes, for the size of the bubbles and the categorization (geographic regions, countries, etc.) for the coloring of the points. You can animate the evolution of the variables in time and show very lively graphs to your students.&lt;br /&gt;In my courses on economic growth, I generally confront theories with empirics and this tool will give me much better speaking graphs.&lt;p&gt;Unfortunately, there is no way to include your data in the tool and the real utility of it will finally depend on the data sets you need. But GapMinder web site is kind enough to show how to animate your data using &lt;a href="http://www.gapminder.org/upload-data/motion-chart/"&gt;Google Motion Chart&lt;/a&gt;. I was not aware of the existence of this tool...&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-231228172067950222?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.gapminder.org' title='A nice tool for presenting dynamic data for teaching: Gapminder'/><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/231228172067950222/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=231228172067950222&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/231228172067950222'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/231228172067950222'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2011/01/nice-tool-for-presenting-dynamic-data.html' title='A nice tool for presenting dynamic data for teaching: Gapminder'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-1645791079339615146</id><published>2010-12-14T19:18:00.001+01:00</published><updated>2010-12-14T19:18:39.996+01:00</updated><title type='text'>LyX 2.0.0 beta 2 released</title><content type='html'>&lt;div class='posterous_autopost'&gt; &lt;div&gt;&lt;img height="16" alt="star" width="16" /&gt;LaTeX Community News &lt;br /&gt;10 décembre 2010 16:24 &lt;br /&gt;by &lt;a href="mailto:mailrobot@latex-community.org"&gt;mailrobot@latex-community.org&lt;/a&gt; (Stefan_K)&lt;/div&gt; &lt;div&gt; &lt;h2&gt;&lt;a href="http://feedproxy.google.com/~r/LatexCommunityNews/~3/gKmkFiIPE9g/index.php"&gt;LyX 2.0.0 beta 2 released&lt;/a&gt;&lt;/h2&gt; &lt;div&gt;&lt;div&gt;The second beta version of LyX 2.0.0 has been released.&lt;/div&gt;&lt;div style="float: right;"&gt; 	&lt;div&gt; 		&lt;div&gt; 			&lt;div&gt; 				&lt;h3&gt;News provided by&lt;/h3&gt; 				&lt;a href="http://texblog.net/"&gt;&lt;img src="http://texblog.net/texblog.png" /&gt;&lt;/a&gt; 			&lt;/div&gt; 		&lt;/div&gt; 	&lt;/div&gt; &lt;/div&gt;&lt;br /&gt; &lt;p&gt;The second beta version of LyX 2.0.0 has been released. Testers of the first beta are encouraged to test the new version.&lt;/p&gt; &lt;p&gt;The current stable release for any serious work remains 1.6.&lt;/p&gt; &lt;p&gt;For a list of new features have a look at a &lt;a href="http://texblog.net/latex-archive/ide-editor/lyx-200-beta/" rel="nofollow"&gt;previous blog post&lt;/a&gt; or visit&lt;/p&gt; &lt;ul&gt; &lt;li&gt;the &lt;a href="http://wiki.lyx.org/LyX/NewInLyX20" rel="nofollow"&gt;List of new features and changes&lt;/a&gt;,&lt;/li&gt; &lt;li&gt;the &lt;a href="http://www.lyx.org/" rel="nofollow"&gt;LyX Homepage&lt;/a&gt;,&lt;/li&gt; &lt;li&gt;the &lt;a href="http://www.mail-archive.com/lyx-announce@lists.lyx.org/msg00129.html" rel="nofollow"&gt;announcement of the 2nd beta&lt;/a&gt; on the mailing list,&lt;/li&gt; &lt;li&gt;the 2nd beta on the &lt;a href="ftp://ftp.lyx.org/pub/lyx/devel/lyx-2.0/beta2/" rel="nofollow"&gt;FTP server&lt;/a&gt;.&lt;/li&gt; &lt;/ul&gt; &lt;hr /&gt; &lt;p&gt;This text is available &lt;a href="http://texblog.net/latex-archive/german/lyx-2.0.0-beta2-de/" rel="nofollow"&gt;in German&lt;/a&gt;. Dieser Text ist auch &lt;a href="http://texblog.net/latex-archive/german/lyx-2.0.0-beta2-de/-de/" rel="nofollow"&gt;in Deutsch&lt;/a&gt; verfügbar.&lt;/p&gt; &lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/1H5Bn2-i_eihWCdCBrcamsH9_I8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1H5Bn2-i_eihWCdCBrcamsH9_I8/0/di" border="0" /&gt;&lt;/a&gt;&lt;br /&gt; &lt;a href="http://feedads.g.doubleclick.net/~a/1H5Bn2-i_eihWCdCBrcamsH9_I8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1H5Bn2-i_eihWCdCBrcamsH9_I8/1/di" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div&gt; &lt;a href="http://feeds.feedburner.com/~ff/LatexCommunityNews?a=gKmkFiIPE9g:skdWPxPOpVg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LatexCommunityNews?d=yIl2AUoC8zA" border="0" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LatexCommunityNews?a=gKmkFiIPE9g:skdWPxPOpVg:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LatexCommunityNews?d=63t7Ie-LG7Y" border="0" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LatexCommunityNews?a=gKmkFiIPE9g:skdWPxPOpVg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LatexCommunityNews?d=qj6IDK7rITs" border="0" /&gt;&lt;/a&gt; &lt;/div&gt;&lt;/div&gt; &lt;/div&gt; &lt;div class="categories"&gt;LaTeX&lt;/div&gt; LaTeX Community News 10 décembre 2010 16:24 by mailrobot@latex-community.org (Stefan_K)  LyX 2.0.0 beta 2 released The second beta version of LyX 2.0.0 has been released. 	 		 			 				News provided by 				 			 		 	  The second beta version of LyX 2.0.0 has been released. Testers of the first beta ar ... http://yildizoglu.posterous.com/lyx-200-beta-2-released My Posterous: http://yildizoglu.posterous.com {{hash_tags}}&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-1645791079339615146?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/1645791079339615146/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=1645791079339615146&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/1645791079339615146'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/1645791079339615146'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2010/12/lyx-200-beta-2-released.html' title='LyX 2.0.0 beta 2 released'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-5228092265154924852</id><published>2010-12-10T22:29:00.002+01:00</published><updated>2010-12-10T22:38:59.256+01:00</updated><title type='text'>Moving time: Adopting Posterous for blogging</title><content type='html'>Hello,&lt;br /&gt;&lt;br /&gt;I am progressively moving this blog to Posterous: &lt;a style="font-weight: bold;" href="http://yildizoglu.posterous.com"&gt;http://yildizoglu.posterous.com&lt;/a&gt;. I will keep its focus on the tools I use in mys research projects, but I will also post, from time to time, articles on other subjects and photographic experiments.&lt;br /&gt;&lt;br /&gt;I hope that you will continue to appreciate it. Posterous provides interesting new possibilities for sharing articles on other social networks. Tumblr was also another possibility but I Posterous better articulates with my way of blogging.&lt;br /&gt;&lt;br /&gt;Some of my new articles on Posterous will also be automatically posted on this blog (when they are in-line with its focus), but they will not be necessarily nicely typeset (because of automatic posting). So, ideally, I would invite you to follow the Posterous blog.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-5228092265154924852?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://yildizoglu.posterous.com' title='Moving time: Adopting Posterous for blogging'/><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/5228092265154924852/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=5228092265154924852&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/5228092265154924852'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/5228092265154924852'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2010/12/moving-time-adopting-posterous-for.html' title='Moving time: Adopting Posterous for blogging'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-9192946184843150976</id><published>2010-08-10T21:07:00.000+02:00</published><updated>2010-08-10T21:19:38.066+02:00</updated><title type='text'>Compiling Ipe 6.0pre32 on Mac OS X 10.6 (Snow</title><content type='html'>&lt;p&gt;Using these instructions proposed by Sherif Ghali on the ipe mailing list, I have been able to compile it for OSX 1.6.4. Thanks a lot Sherif!&lt;/p&gt;&lt;p&gt;You can read Sherif’s instructions on the &lt;a href="https://mail.cs.uu.nl/pipermail/ipe-discuss/2010-June/001097.html"&gt;IPE mailing list archives&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-9192946184843150976?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/9192946184843150976/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=9192946184843150976&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/9192946184843150976'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/9192946184843150976'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2010/08/compiling-ipe-60pre32-on-mac-os-x-106.html' title='Compiling Ipe 6.0pre32 on Mac OS X 10.6 (Snow'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-6919012555825110045</id><published>2010-08-10T20:57:00.000+02:00</published><updated>2010-08-10T21:03:47.054+02:00</updated><title type='text'>Installing Dictionnaire de de l'Académie Française in the OSX Dictionary application</title><content type='html'>&lt;p&gt;You can download from &lt;strong&gt;&lt;a href="http://www.etresoft.com/etreref/EtreRef_Dictionnaire-AcademieFrancaise_1935_101.zip"&gt;this link&lt;/a&gt;&lt;/strong&gt;  a zip file that contains a packager for this dictionary. Thanks a lot to &lt;em&gt;&lt;a href="http://www.etresoft.com"&gt;Etresoft&lt;/a&gt;&lt;/em&gt;! Unzip the archive and double-click on the « Dictionnaire-AcademieFrancaise_1935.pkg » file. After installation, open the Dictionary application and activate this dictionary in the preferences. Voilà!&lt;/p&gt;&lt;p&gt;Thanks to &lt;a href="http://www.macosxhints.com/article.php?story=20100809085441916"&gt;MacOSXHints&lt;/a&gt; for this tip!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-6919012555825110045?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/6919012555825110045/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=6919012555825110045&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/6919012555825110045'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/6919012555825110045'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2010/08/installing-dictionnaire-de-de-l.html' title='Installing Dictionnaire de de l&amp;#39;Académie Française in the OSX Dictionary application'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-7041818050873064830</id><published>2010-07-31T02:14:00.000+02:00</published><updated>2010-07-31T02:32:08.973+02:00</updated><title type='text'>Replacing PowerPro for Windows with OSX tools</title><content type='html'>&lt;p&gt;As I have written in my initial switching post, one of the softs that i am missing under OSX is the magical PowerPro (&lt;strong&gt;PP&lt;/strong&gt;) program for Windows. PowerPro is a very small program but it is a real Swiss Army Knife with a very rich set of functionalities (I am sure that during all years I have used it, I have not been able to discover all of them!). I have first find Butler to replace PowerPro for some of the facilities, but inserting text templates (like different greetings in mails or small LateX snippets) was rather painful. First open the shortcuts screen of Butler, then type the alias for the snippet, then type return, etc. Under PowerPro, I could just type ;prop and PP would replace it with &lt;/p&gt;&lt;p&gt;\begin{proposition} &lt;/p&gt;&lt;p&gt;\end{proposition}&lt;/p&gt;&lt;p&gt;I was used to have at mys disposition a whole set of such snippets for different softs, and was missing them under OSX. &lt;/p&gt;&lt;p&gt;Enter KeyBoard Maestro (&lt;strong&gt;KM&lt;/strong&gt;)! It is definitely not as powerful as PowerPro, but it brings the exact function that I was missing. I can now type ;prop and get the corresponding snippet. Or type CTRL+F and activate the French spelling dictionary in FireFox (combining the  very nice Quick Locale Switcher plugin with Keyboard Maestro). KM can do many other tricks (launching programs, resizing their windows, opening some default document by simulating clicks on menu items, etc.). It is not free, but it is not unaffordable either.&lt;/p&gt;&lt;p&gt;You can check its features from &lt;a href="http://www.keyboardmaestro.com/documentation/4/features.html"&gt;this page&lt;/a&gt; and, if you are convinced by its possibilities, you can order it from &lt;a href="http://www.stairways.com/action/kmdiscount?REF3RME"&gt;this page&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-7041818050873064830?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/7041818050873064830/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=7041818050873064830&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7041818050873064830'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7041818050873064830'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2010/07/replacing-powerpro-for-windows-with-osx.html' title='Replacing PowerPro for Windows with OSX tools'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-1256460105252106356</id><published>2010-07-31T01:46:00.000+02:00</published><updated>2010-07-31T02:12:23.228+02:00</updated><title type='text'>Living with the reflective screen of the MacBook Pro</title><content type='html'>&lt;p&gt;My switch to Mac is now complete and I very rarely start Parallels Windows 7 VM. One of the major difficulties I have met with the MBPro is the eye (and brain) strain caused by the very reflective screen of this laptop, when I work outside, under high sun light. Apple indeed does not propose a matte option for the MBPro 13’. Since I have used anti-reflective filters for my PDAs, I knew that such a solution exists. After having done some research on the Net, I have ordered a &lt;em&gt;&lt;a href="http://www.nushield.com"&gt;Nushield&lt;/a&gt; DayVue Screen Protector&lt;/em&gt; that I have received today.&lt;/p&gt;&lt;p&gt;Installing the filter has been quite a hassle, as its is always the case with this kind of protections. The important point is to install it without capturing any dust between the filter and the screen. I have spent some time to clean the screen of the laptop. I had to admit that I would not be able to eliminate all traces from the glass, since at least one of them has completely resisted all my rubbing efforts. Since it was a very small bump point, I have decide to install the filter anyway. You must be very careful not to capture supplementary dust during the installation. Consequently, you need a dust free environment. Doing the installation in the bathroom, after a hot shower is the trick, since the humidity captures dust particles. With the help of my daughter (installing a 13’ filter is a little bit more complex than a 3’ filter I have used for my PDAs!), we have been able to make quite a nice installation, without many particles and bubbles. When I have finished pushing all bubbles to the borders of the filter, using a credit card, I was ready to test my new screen in the garden:&lt;/p&gt;&lt;ul style="list-style-type: disc"&gt;&lt;li&gt;Anti-reflection works really! I continue to see some reflective light on the screen, but it is much less disturbing. The result was quite impressive indeed.&lt;/li&gt;&lt;li&gt;The filter does not reduce much the light emitted by the screen. I have read for other filters that their users were complaining about the necessity of using the screen with maximal brightness. I have not observed such a negative effect.&lt;/li&gt;&lt;li&gt;The filter does not introduce any distortion in the screen. In fact, I am totally unable to see it on the screen (except in on the very small dust point that I have not been able to eliminate from my screen).&lt;/li&gt;&lt;li&gt;My experience with this filter is very satisfactory until now. If I observe new problems, I will edit this post to share them with you. &lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-1256460105252106356?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/1256460105252106356/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=1256460105252106356&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/1256460105252106356'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/1256460105252106356'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2010/07/living-with-reflective-screen-of.html' title='Living with the reflective screen of the MacBook Pro'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-8094671401940438551</id><published>2010-04-27T22:08:00.003+02:00</published><updated>2010-04-28T20:04:52.010+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='osx'/><title type='text'>Switching to Mac OSX (Snow Leopard)</title><content type='html'>I am starting to migrate to Mac OSX my working environment. I am an old Linux user for my servers but I have never been completely convinced by the Desktops for Linux (mainly KDE and Gnome) and gone back to Windows with the introduction of its first usable version (XP). I have deliberately missed the Vista wagon, and have not been impressed by Windows 7. Being tired by the quirks of XP, I wanted to adopt a more reliable and modern interface. OSX seems to me to comply with this demand, and the Unix that is behind the interface is quite a standard one, quite easy to understand for a person used to Linux. I am a happy camper concerning the very well thought interface of OSX.&lt;br /&gt;&lt;br /&gt;Migrating my working environment to OSX has not been completely simple. Before the switch, I have, of course, checked that this migration is broadly possible. Here I indicate what was very simple, what was more bumpy, and the points for which I have not yet found a completely satisfactory solution.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Immediate transition for:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Internet tools, starting with &lt;span style="font-weight: bold; font-style: italic;"&gt;Firefox&lt;/span&gt; (I really need it for &lt;a href="http://www.zotero.org/"&gt;Zotero&lt;/a&gt; and other tools that do not exist under Safari or Chrome);&lt;/li&gt;&lt;li&gt;Latex compilation, just install &lt;span style="font-weight: bold; font-style: italic;"&gt;TexLive&lt;/span&gt;, it is perfect.&lt;/li&gt;&lt;li&gt;For many aspects of Tex on OSX, check the &lt;a href="http://mactex-wiki.tug.org/wiki/index.php?title=Main_Page"&gt;wiki&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Simple Latex editors: &lt;a href="http://www.xm1math.net/texmaker/"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;TexMaker&lt;/span&gt;&lt;/a&gt; is a very nice multi-platform editor. &lt;a href="http://aquamacs.org/"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Aquamacs&lt;/span&gt;&lt;/a&gt; (Xemacs with an Aqua interface) comes standard with AUCTex, which a very powerful Tex editing and compiling tool.&lt;/li&gt;&lt;li&gt;Graphical Latex editors: I was using &lt;a href="http://www.lyx.org"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Lyx&lt;/span&gt;&lt;/a&gt; under Windows, there is an OSX version.&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.mendeley.com"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Mendeley Desktop&lt;/span&gt;&lt;/a&gt; (very nice, bibtex compatible library manager) has an OSX version.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Statistical tools: &lt;a href="http://www.r-project.org"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;R-project&lt;/span&gt;&lt;/a&gt; offers an OSX version, perfect for me; it was my main tool under Windows.  I am using &lt;a href="http://aquamacs.org/"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Aquamacs&lt;/span&gt;&lt;/a&gt; also for R, since it comes with ESS (Emacs speaks statistics), which is also very powerful. &lt;a href="http://gretl.sourceforge.net/osx.html"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Gretl&lt;/span&gt;&lt;/a&gt; (econometrics) works under OSX.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Java programming: &lt;span style="font-weight: bold; font-style: italic;"&gt;Eclipse&lt;/span&gt; works under OSX.&lt;/li&gt;&lt;li&gt;&lt;a href="http://ccl.northwestern.edu/netlogo/"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;NetLogo&lt;/span&gt;&lt;/a&gt; works under OSX.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Bitmap graphics: &lt;span style="font-weight: bold; font-style: italic;"&gt;Gimp&lt;/span&gt; also offers an OSX version.&lt;/li&gt;&lt;li&gt;Vectorial graphics: &lt;a href="http://jpicedt.sourceforge.net"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;JPicEDT&lt;/span&gt;&lt;/a&gt; is written in Java, so you can use it also under OSX, without any problem&lt;/li&gt;&lt;li&gt;MS Office: I am using Office 2008.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Picasa&lt;/span&gt; has an OSX version (I prefer it to iPhoto, probably because I am too lazy to replace an old software that satisfies me).&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Skype&lt;/span&gt; has on OSX version.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Evernote&lt;/span&gt; works nicely with OSX.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Freemind&lt;/span&gt; mind map software also works under OSX (Java).&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.zipeg.com"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Zipeg&lt;/span&gt;&lt;/a&gt; is a nice and free zip archive manager.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Problems begin:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt; One difficult point has been to find a nice substitute to &lt;a href="http://powerpro.webeddie.com"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;PowerPro&lt;/span&gt;&lt;/a&gt; (this  very nifty and talented swiss-army knife utility for managing many  aspects of windows and automatizing many tasks). &lt;a href="http://www.petermaurer.de/butler/"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Butler&lt;/span&gt;&lt;/a&gt; is able to  replace some of them. I am learning AppleScript for some other aspects.  Don't call this an easy transition ;-)&lt;/li&gt;&lt;li&gt;Lyx has problems to import some big Latex files I have written with  Scientific Word, so I continue to use the latter under a Parallel's  virtual machine :-(  I would really have an OSX version of SWP, even if I  love Lyx...&lt;/li&gt;&lt;li&gt;Unfortunately Entourage in Office 2008 is not compatible with Outlook (such a stupid  strategy!); I am waiting Office 2010 that will reintroduce Outlook. I  like quite well Apple-Mail but my several years old mail archive is  under Outlook format and I do not want to loose mails during the  conversion process...&lt;/li&gt;&lt;li&gt;Making &lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;a href="http://www.inkscape.org"&gt;Inkscape&lt;/a&gt; + &lt;a href="http://pav.iki.fi/software/textext/"&gt;TexText&lt;/a&gt;&lt;/span&gt; work under OSX has been a pain. I do not even remember how I have been able to do it (I have followed and mixed several forum post on this topic).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://tclab.kaist.ac.kr/ipe/"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Ipe&lt;/span&gt;&lt;/a&gt; graphics editor for Latex does not propose an OSX version out of the box. It seems possible to compile it for OSX, but I have not had yet the time to do it (it seems a little bit painful).&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.xara.com"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Xara X&lt;/span&gt;&lt;/a&gt; drawing software for vector graphics. I am really missing this one. I had to install it in the virtual machine.&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Nice surprises:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Bibliography management for bibtex: I like &lt;a href="http://jabref.sourceforge.net"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Jabref&lt;/span&gt;&lt;/a&gt; (it is multi-platform), but &lt;a href="http://bibdesk.sourceforge.net"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Bibdesk&lt;/span&gt;&lt;/a&gt; is a very nice reference management tool.&lt;/li&gt;&lt;li&gt;Backup:  &lt;span style="font-weight: bold; font-style: italic;"&gt;Time machine&lt;/span&gt; is very nice and you have also nice imaging tools under OSX. You can use &lt;a href="http://timesoftware.free.fr/timemachineeditor/"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;TimeMachineEditor&lt;/span&gt;&lt;/a&gt; to customize some of its aspects. &lt;a href="http://www.backblaze.com"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Backblaze&lt;/span&gt;&lt;/a&gt; also works for OSX and I have been able to transfer my subscription to the new machine without any problem (be just ready to loose all your old Windows backups).&lt;/li&gt;&lt;li&gt;The&lt;span style="font-weight: bold; font-style: italic;"&gt; Agenda&lt;/span&gt; of OSX is very nice and simply synchronizes with Google calendar.&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.bean-osx.com"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Bean&lt;/span&gt;&lt;/a&gt; is a very nice and light Word file editor.&lt;/li&gt;&lt;li&gt;&lt;a href="http://skim-app.sourceforge.net"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Skim&lt;/span&gt;&lt;/a&gt; is a very useful free Acrobat viewer (and editor). &lt;span style="font-weight: bold; font-style: italic;"&gt;Preview&lt;/span&gt; in OSX also very useful (deleting pages, etc.). &lt;a href="http://code.google.com/p/formulatepro/"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;FormulatePro&lt;/span&gt;&lt;/a&gt; allows the filling of Acrobat forms.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.sebastian-krauss.de/software/#mymind"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;MyMind&lt;/span&gt;&lt;/a&gt; is a very nice idea editor.&lt;/li&gt;&lt;li&gt;&lt;a href="http://winebottler.kronenberg.org"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;WineBottler&lt;/span&gt;&lt;/a&gt; (free) is a very nice Wine version that allows the installation of some small Windows programs under OSX. I have tested &lt;span style="font-weight: bold; font-style: italic;"&gt;CrossOverX&lt;/span&gt;, but have not really been convinced by its advantages.&lt;/li&gt;&lt;li&gt;OSX comes with many small and nice utilities (managing hard disk, writing DVDs, etc.).&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Conclusion: &lt;/span&gt;I am using my virtual machine only for Scientific Word (only for some files, all new files are written under LyX or Aquamacs), Ipe and Xara X. I am quite happy with the coherent working environment provided by OSX. I am not ready to switch back to Windows for some time... :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-8094671401940438551?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/8094671401940438551/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=8094671401940438551&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/8094671401940438551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/8094671401940438551'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2010/04/switching-to-mac-osx-snow-leopard.html' title='Switching to Mac OSX (Snow Leopard)'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-5506463112246512826</id><published>2009-09-10T23:28:00.003+02:00</published><updated>2009-09-10T23:48:14.092+02:00</updated><title type='text'>Sumatra: Quick PDF viewer for Windows</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Acq8SvLu-Kw/SqlysZ7sXJI/AAAAAAAAAns/KnnY0C_MzVc/s1600-h/sumatra.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 193px;" src="http://1.bp.blogspot.com/_Acq8SvLu-Kw/SqlysZ7sXJI/AAAAAAAAAns/KnnY0C_MzVc/s320/sumatra.jpg" alt="" id="BLOGGER_PHOTO_ID_5379957337071836306" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;If you use pdfLaTeX under Windows, you are maybe tired of waiting Acrobat reader to open, each time you compile your document and want to check the preview. I like Acrobat for its professional features but I rarely need them. For all other occasions where I just want to quickly check a PDF file, Acrobat is just a pain to launch.&lt;br /&gt;I have tested FoxReader in the past but I was not fullt happy with it. I think that I have now found the perfect quick PDF reader, thanks to a post in the Lyx's users-forum: &lt;a href="http://blog.kowalczyk.info/software/sumatrapdf/index.html"&gt;Sumatra PDF Reader&lt;/a&gt;. It has even a full screen mode that works quite well (even Acrobat's better fills the screen). It gets along quite well with any LaTeX editor (Lyx, TexMaker, Scientific Word, etc.).&lt;br /&gt;It is also quite easy to drive using keyboard shortcuts, as you can learn this in the &lt;a href="http://blog.kowalczyk.info/software/sumatrapdf/manual.html"&gt;"manual"&lt;/a&gt;.&lt;br /&gt;&lt;span style="background: gray none repeat scroll 0% 0%; overflow: auto ! important; position: absolute; left: 0px; top: 142px; width: 5px; height: 100%; z-index: 10000000; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; opacity: 0; font-weight: bold ! important; font-size: medium ! important; font-style: normal ! important;" id="hwContLayer"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-5506463112246512826?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://blog.kowalczyk.info/software/sumatrapdf/index.html' title='Sumatra: Quick PDF viewer for Windows'/><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/5506463112246512826/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=5506463112246512826&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/5506463112246512826'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/5506463112246512826'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2009/09/sumatra-quick-pdf-viewer-for-windows.html' title='Sumatra: Quick PDF viewer for Windows'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_Acq8SvLu-Kw/SqlysZ7sXJI/AAAAAAAAAns/KnnY0C_MzVc/s72-c/sumatra.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-7434198588098541638</id><published>2009-06-19T00:36:00.004+02:00</published><updated>2009-06-19T00:49:15.999+02:00</updated><title type='text'>A very nice and free text editor: Notepad++</title><content type='html'>&lt;span xmlns=''&gt;&lt;p style='text-align: center'&gt;&lt;a href='http://1.bp.blogspot.com/_Acq8SvLu-Kw/SjrCA5mhM8I/AAAAAAAAAhk/7jWNk0M6FOc/s1600-h/notepadplus.gif'&gt;&lt;img border='0' alt='' src='http://1.bp.blogspot.com/_Acq8SvLu-Kw/SjrCA5mhM8I/AAAAAAAAAhk/7jWNk0M6FOc/s320/notepadplus.gif'/&gt;&lt;/a&gt;&lt;br /&gt;			&lt;/p&gt;&lt;p&gt;&lt;a href='http://notepad-plus.sourceforge.net/uk/site.htm'&gt;&lt;span style='font-family:ItalianGarmnd BT'&gt;Notepad++&lt;/span&gt;&lt;/a&gt;&lt;span style='font-family:ItalianGarmnd BT'&gt; is a free text editor with a lot of very useful functionality and it has replaced PSPAD for me.&lt;/span&gt;&lt;br /&gt;			&lt;/p&gt;&lt;p&gt;&lt;span style='font-family:ItalianGarmnd BT'&gt;You can edit source code in many languages, benefitting from syntax highlighting and auto-insertion of the main commands.&lt;/span&gt;&lt;br /&gt;			&lt;/p&gt;&lt;p&gt;&lt;span style='font-family:ItalianGarmnd BT'&gt;It places itself in the context menu of the explorer, for facilitating the quick opening of any text files from a right click in the explorer. It is difficult to exhaustively indicate all its functions.&lt;/span&gt;&lt;br /&gt;			&lt;/p&gt;&lt;p&gt;&lt;span style='font-family:ItalianGarmnd BT'&gt;It is based on the Scintilla platform; it is both very easy to use and very powerful.&lt;/span&gt;&lt;br /&gt;			&lt;/p&gt;&lt;p&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;&lt;strong&gt;Here are the features of Notepad++, as indicated on the web site:&lt;/strong&gt;&lt;br /&gt;				&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Syntax Highlighting and Syntax Folding&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;WYSIWYG&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;User Defined Syntax Highlighting&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Auto-completion&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Multi-Document&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Multi-View&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Regular Expression Search/Replace supported&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Full Drag 'N' Drop supported&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Dynamic position of Views&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;File Status Auto-detection&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Zoom in and zoom out&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Multi-Language environment supported&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Bookmark&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Brace and Indent guideline Highlighting&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;div&gt;&lt;span style='color:black; font-family:ItalianGarmnd BT'&gt;Macro recording and playback&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt; &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Link: &lt;a href='http://notepad-plus.sourceforge.net/uk/site.htm'&gt;http://notepad-plus.sourceforge.net/uk/site.htm&lt;/a&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-7434198588098541638?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/7434198588098541638/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=7434198588098541638&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7434198588098541638'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7434198588098541638'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2009/06/very-nice-and-free-text-editor-notepad.html' title='A very nice and free text editor: Notepad++'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_Acq8SvLu-Kw/SjrCA5mhM8I/AAAAAAAAAhk/7jWNk0M6FOc/s72-c/notepadplus.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-3659175273636999724</id><published>2009-02-25T22:03:00.005+01:00</published><updated>2009-02-25T22:47:02.161+01:00</updated><title type='text'>ChkTex  with LyX and Miktex 2.7 under Windows XP</title><content type='html'>ChkTeX is a LaTeX utility for... checking your Latex syntax. It is maintained by &lt;a href="http://baruch.ev-en.org/proj/chktex/"&gt;Baruch Even&lt;/a&gt;.&lt;br /&gt;&lt;a href="http://www.lyx.org/"&gt;LyX&lt;/a&gt; can  use &lt;a href="http://baruch.ev-en.org/proj/chktex/"&gt;ChkTex&lt;/a&gt; utility. But &lt;a href="http://www.miktex.org/"&gt;Miktex&lt;/a&gt; does not come with this utility.&lt;br /&gt;&lt;br /&gt;I propose here a way to activate this functionality using the chktex binary that is distributed in the &lt;a href="http://www.tug.org/texlive/"&gt;TeXLive&lt;/a&gt; LaTeX system. This is quite simple indeed.&lt;br /&gt;&lt;br /&gt;I assume that you have installed Miktex in the "&lt;span style="font-weight: bold;font-family:courier new;" &gt;C:\MiKTeX2.7"&lt;/span&gt; folder.&lt;br /&gt;&lt;br /&gt;First download the &lt;a href="http://www.vcharite.univ-mrs.fr/PP/yildi/files/ChktexFiles.zip"&gt;chkTexFiles.zip&lt;/a&gt; archive from my web server. It contains the necessary files for the installation of chktex under Miktex.&lt;br /&gt;This archive contains the following files:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;.chktexrc&lt;/li&gt;&lt;li&gt;ChkTeX.exe&lt;/li&gt;&lt;li&gt;tl90geturl.dll&lt;/li&gt;&lt;li&gt;tl90gnu.dll&lt;/li&gt;&lt;li&gt;tl90kpse.dll&lt;/li&gt;&lt;/ul&gt;The first file (.chktexrc) is the chktex configuration file. You must put it under in the following folder:&lt;span style="font-weight: bold;font-family:courier new;" &gt; "C:\MiKTeX2.7\tex\chktex&lt;/span&gt;"&lt;br /&gt;The other four files are the executable for chktex and the necessary libraries. You must put them in the folder &lt;span style="font-weight: bold;font-family:courier new;" &gt;C:\MiKTeX2.7\miktex\bin&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;You must now tell LyX how to find these files.&lt;br /&gt;&lt;br /&gt;You activate "&lt;span style="font-weight: bold;"&gt;Tools/Preferences&lt;/span&gt;" menu item in LyX, and in the Output/Latex item in the left menu, you must give the following command for ChkTex:&lt;br /&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;span style="font-family:courier new;"&gt;ChkTeX.exe -l "C:\MiKTeX 2.7\tex\chktex\.chktexrc" -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38 &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;I must admit that I have not dug all the options for ChkTeX, you can probably finetune them using the &lt;a href="http://baruch.ev-en.org/proj/chktex/"&gt;ChkTeX documentation&lt;/a&gt; but these default options work on my installation. If you execute &lt;span style="font-weight: bold;font-family:courier new;" &gt;chktex -h&lt;/span&gt; in a Dos box, you will get an output that will indicate the role of different options.&lt;br /&gt;&lt;br /&gt;Once you save the configuration (do not forget to click on the Save button in the preferences box ;-)  ), you can execute "&lt;span style="font-weight: bold;"&gt;Tools/Check Tex&lt;/span&gt;" menu item and it will indicate the potential problems with your LaTeX file. Don't be afraid by the results! :-)&lt;br /&gt;&lt;br /&gt;ChkTeX source files are also available from &lt;a href="http://www.ctan.org/tex-archive/support/chktex/"&gt;CTAN&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-3659175273636999724?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/3659175273636999724/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=3659175273636999724&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/3659175273636999724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/3659175273636999724'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2009/02/chktex-with-lyx-and-miktex-27-under.html' title='ChkTex  with LyX and Miktex 2.7 under Windows XP'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-7377652786847660072</id><published>2009-02-15T23:29:00.011+01:00</published><updated>2012-01-29T10:40:57.022+01:00</updated><title type='text'>Lyx and Sweave under Windows XP</title><content type='html'>These instructions propose a solution for making Sweave work under Windows XP, using Lyx 1.6.1 and R-project 2.8.x.&lt;br /&gt;&lt;br /&gt;Adapted from the instructions provided by Paul Johnson and Cheng-shan (Frank) Liu:&lt;br /&gt;(see &lt;a href="http://n2.nabble.com/Converter-failure-with-Sweave-td479669.html" style="font-family: courier new;"&gt;http://n2.nabble.com/Converter-failure-with-Sweave-td479669.html&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;These instructions correct some small problems that were impeding the original instructions from working under the recent version of R that I use. I also take into account the fact that the default installation folders of R and Lyx are under Program Files, a path that contains a space, and can cause problems.&lt;br /&gt;&lt;br /&gt;We will suppose that Lyx 1.6.1 is installed in &lt;span style="font-family: 'courier new';"&gt;C:\Program Files\LyX16&lt;/span&gt; and R in &lt;span style="font-family: 'courier new';"&gt;C:\Program Files\R\R-2.8.1&lt;/span&gt; (their default folders under Windows).&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Place &lt;a href="http://www.ctan.org/tex-archive/web/noweb/"&gt;&lt;span style="font-family: 'courier new';"&gt;noweb.sty&lt;/span&gt;&lt;/a&gt; and &lt;span style="font-family: 'courier new';"&gt;sweave.sty&lt;/span&gt; (part of the R installation - see the share\texmf subfolder of R, see the next instruction) in a folder that can be find by your Latex installation (under texmf-local for example).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Copy the content of the &lt;span style="font-family: 'courier new';"&gt;C:\Program Files\R\R-2.8.1\share\texmf&lt;/span&gt; folder in the previous folder or in another folder under your texmf tree.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Refresh the file catalogue of Latex (execute &lt;span style="font-family: 'courier new';"&gt;mktexlsr &lt;/span&gt;for TexLive in a Dos command box, for example). You can now check the placement of these files by executing &lt;span style="font-family: 'courier new';"&gt;kpsewhich noweb.sty&lt;/span&gt; in a Dos command box.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Reconfigure Lyx (go to Edit-&amp;gt; Reconfigure). Check if you have document class "article(noweb)" or "article(Sweave noweb)" (in Document-&amp;gt; Settings-&amp;gt;Document class). If not, you will need to reinstall Lyx.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Create a batch script called &lt;span style="font-weight: bold;"&gt;Rweave.bat&lt;/span&gt; and put it in the folder &lt;span style="font-family: 'courier new';"&gt;C:\Program Files\Lyx16\bin\&lt;/span&gt;. You can create this file using notepad or any other text editor (&lt;a href="http://www.pspad.com/fr/"&gt;PSPad &lt;/a&gt;is a very nice and free one). The file should contain a one line instruction:&lt;br /&gt;&lt;span style="font-size: 85%;"&gt;"C:\Program Files\R\R-2.8.1\bin\Rterm" --no-save --args "%1" &amp;lt; "C:/Program Files/LyX16/bin/MakeSweave.R" &amp;gt; "%1.log"&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Create a R file &lt;span style="font-weight: bold;"&gt;MakeSweave.R&lt;/span&gt; with the following lines and put it in &lt;span style="font-family: 'courier new';"&gt;C:\Program Files\Lyx16\bin\&lt;/span&gt;:&lt;br /&gt;&lt;span style="font-size: 85%;"&gt;&lt;br /&gt;&lt;span style="font-family: 'courier new';"&gt;&lt;br /&gt;library(tools)&lt;br /&gt;&lt;br /&gt;args &amp;lt;- commandArgs()  filename &amp;lt;-  args[length(args)]  Sweave(filename)  basename &amp;lt;- sub("\\.(Rnw|Rtex|nw)$", "",filename)  texi2dvi(paste(basename, ".tex",sep=""), pdf=TRUE) &lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;You must now configure in Lyx the converter for noweb files. Go to Edit-&amp;gt;Preferences-&amp;gt;File Handlers-&amp;gt;Converters. In the "From" pulldown, choose Noweb. In the "To" pulldown, choose PDF (pdflatex).In the box called "Converter" type "&lt;span style="font-family: 'courier new';"&gt;Rweave $$i&lt;/span&gt;" without the quotation marks. If necessary, click the “Modify” button and save the new command.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;You can now test your installation by opening an example file that contains R &lt;span style="font-style: italic;"&gt;scraps&lt;/span&gt;. For example &lt;a href="http://pj.freefaculty.org/stat/Distributions/Gamma-02.lyx"&gt;Paul Johnson's Gamma distribution lyx document&lt;/a&gt;.&lt;br /&gt;You can typeset this document using the pdf icon and the resulting file should open in the acrobat viewer you have configured in Lyx.&lt;br /&gt;You should be able to read the results of computations and see the plots.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;Links:&lt;br /&gt;&lt;ul&gt;&lt;li&gt; &lt;a href="http://www.stat.uni-muenchen.de/~leisch/Sweave/"&gt;Sweave web page&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://wiki.lyx.org/LyX/LyxWithRThroughSweave"&gt;Lyx Wiki page for Sweave&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://gregor.gorjanc.googlepages.com/lyx-sweave"&gt;Using LyX with Sweave&lt;/a&gt; by Gregor Gorjanc&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.scribd.com/doc/26633825/LyX-and-Sweave-with-R-on-Windows-XP-or-Vista-by-Je%EF%AC%80-Laake" target="_blank"&gt;Complementary instructions by&amp;nbsp;&amp;nbsp;Jeff Laake&lt;/a&gt; (if &amp;nbsp;mines are not enough in your case)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-7377652786847660072?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/7377652786847660072/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=7377652786847660072&amp;isPopup=true' title='21 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7377652786847660072'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/7377652786847660072'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2009/02/lyx-and-sweave-under-windows-xp.html' title='Lyx and Sweave under Windows XP'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>21</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-8249346288230343545</id><published>2009-02-14T20:46:00.005+01:00</published><updated>2009-02-16T23:10:20.790+01:00</updated><title type='text'>A free and powerful text processor : LyX</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Acq8SvLu-Kw/SZnkPn_9z5I/AAAAAAAAAYc/mnNmTZf0jYE/s1600-h/lyx.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 190px;" src="http://3.bp.blogspot.com/_Acq8SvLu-Kw/SZnkPn_9z5I/AAAAAAAAAYc/mnNmTZf0jYE/s320/lyx.jpg" alt="" id="BLOGGER_PHOTO_ID_5303520993291915154" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;LyX is a nearly WSYWIG front end for Latex. It constitutes a very credible open source alternative to my other preferred (commercial and quite expensive) Latex editor (Scientific Word).&lt;br /&gt;&lt;br /&gt;I have been following LyX's development for some years, without being fully convinced by its facilities. I consider that it now constitutes a very useful front-end to Latex: it is very stable  and it fully interfaces with all the facilities characterizing Latex (typesetting mathematics, bibliography management, cross references, graphics, integrating results of statistical computations using R-Project - thanks to the Sweave interface, etc). It definitely offers today  more functionality than Scientific Word (see below).&lt;br /&gt;As a consequence, I do not have any reserve in advising you to test LyX, I think you will love it. Binary versions are available for all plateforms (Windows, Linux, Mac OS X).&lt;br /&gt;&lt;a href="http://www.lyx.org/"&gt;&lt;br /&gt;Web site&lt;/a&gt;&lt;a href="http://wiki.lyx.org/"&gt;&lt;br /&gt;Wiki&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-8249346288230343545?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.lyx.org' title='A free and powerful text processor : LyX'/><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/8249346288230343545/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=8249346288230343545&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/8249346288230343545'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/8249346288230343545'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2009/02/free-and-powerful-text-processor-lyx.html' title='A free and powerful text processor : LyX'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_Acq8SvLu-Kw/SZnkPn_9z5I/AAAAAAAAAYc/mnNmTZf0jYE/s72-c/lyx.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-8558894719957333942</id><published>2008-09-08T21:32:00.003+02:00</published><updated>2008-09-08T21:55:11.831+02:00</updated><title type='text'>A very  nice file explorer for Windows: Q-dir</title><content type='html'>This time I am presenting a tool that is not directly related to the production of documents with LaTeX. &lt;a style="font-weight: bold; color: rgb(204, 0, 0);" href="http://www.softwareok.com/?seite=Freeware/Q-Dir&amp;amp;language=english"&gt;Q-dir&lt;/a&gt; a very nice and free file manager that I have discovered recently. It manages to be very small and, nevertheless, very flexible and efficient. For me, the main two very nice properties are the possibility of&lt;br /&gt;&lt;ul&gt;&lt;li&gt; opening several folders side by side for intensive files copying;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;saving typical folder configurations as favourites and open them all in the same time by calling the corresponding favourite;&lt;/li&gt;&lt;/ul&gt;I have for example a fovourite for all folders corresponding to LateX file editing and another for HTML editing. Switching from one to the other is very quick and easy. You can also create favourites to your important folder for opening them directly, by two clicks of the mouse (one for calling the function and another for chosing the favourite folder.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Acq8SvLu-Kw/SMWC-jjY7oI/AAAAAAAAASU/PEeafN_iSco/s1600-h/q-dir.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_Acq8SvLu-Kw/SMWC-jjY7oI/AAAAAAAAASU/PEeafN_iSco/s320/q-dir.jpg" alt="" id="BLOGGER_PHOTO_ID_5243741352349986434" border="0" /&gt;&lt;/a&gt;It has of course many other very nice features. You cab also install it on a USB stick.&lt;br /&gt;I invite you to check the website and download it for learning more about the possibilities it offers.&lt;br /&gt;To repeat the slogan of it's creator:  "Once Q-Dir, always Q-Dir ;)!"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-8558894719957333942?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.softwareok.com/?seite=Freeware/Q-Dir&amp;language=english' title='A very  nice file explorer for Windows: Q-dir'/><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/8558894719957333942/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=8558894719957333942&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/8558894719957333942'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/8558894719957333942'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2008/09/very-nice-file-explorer-for-windows-q.html' title='A very  nice file explorer for Windows: Q-dir'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Acq8SvLu-Kw/SMWC-jjY7oI/AAAAAAAAASU/PEeafN_iSco/s72-c/q-dir.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-6246663172587738252</id><published>2008-08-18T01:29:00.003+02:00</published><updated>2008-08-18T01:43:48.186+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='latex'/><title type='text'>Editing Latex Files under Windows with LatexEditor</title><content type='html'>Another very interesting tool for editing and compiling Latex files under Windows is &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;LatexEditor&lt;/span&gt; (&lt;span style="font-weight: bold;"&gt;LED&lt;/span&gt;). It has the advantage over Scientific Word of being free.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Acq8SvLu-Kw/SKi15CsJZjI/AAAAAAAAAJo/G-fPI2hJzZ4/s1600-h/led1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_Acq8SvLu-Kw/SKi15CsJZjI/AAAAAAAAAJo/G-fPI2hJzZ4/s320/led1.jpg" alt="" id="BLOGGER_PHOTO_ID_5235634558397408818" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;It is not WYSIWYG or WYSIWYM (WhatYouSeeIsWhatYouMean) but it included a DVI viewer that can show the compiled document just next to the Latex source window.&lt;br /&gt;LED also has many customizable tool bars (and you should customize them because the default configuration is not really as useful as what you get when you configure them to your needs) that lighten the burden of text typing .&lt;br /&gt;It also integrates quite powerful spell check dictionaries and thesaurus. It can also convert files between different code pages during the opening and saving of the files: you can have an 8-bits version with accents on the screen (allowing easy spell check and readibility) and keep on the hard disk the 7-bits version where é is coded, as usual in Latex, \'{e}. You must customize filters to obtain such functionality (see, for example, the filter for French characters I have proposed on the &lt;a href="http://forum.latexeditor.org/viewtopic.php?t=915&amp;amp;highlight="&gt;LED support forums&lt;/a&gt;).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-6246663172587738252?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/6246663172587738252/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=6246663172587738252&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/6246663172587738252'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/6246663172587738252'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2008/08/editing-latex-files-under-windows-with.html' title='Editing Latex Files under Windows with LatexEditor'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_Acq8SvLu-Kw/SKi15CsJZjI/AAAAAAAAAJo/G-fPI2hJzZ4/s72-c/led1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-115836214944962453</id><published>2008-08-18T00:43:00.000+02:00</published><updated>2008-08-18T01:22:25.927+02:00</updated><title type='text'>Migrating to a new laptop</title><content type='html'>I have recently received a new laptop and I had to proceed with the migration of my stupidly complex XP Pro installation to the new computer. Such a migration normally takes to me at least one whole week if I proceed through an install from the scratch. Given that I am terribly busy these days, I was desperately looking for a solution to make easier this migration. For years I have effectively been asking myself why someone (why not Microsoft? It's basic data transfer tool is jut ... too basic!) cannot invent a convenient tool for transferring the complete software setup from one computer to another.&lt;br /&gt;This time I was motivated to better search and I have discovered that such a miraculous tool now exists and it is called &lt;a href="http://www.spearit.com/about_MoveMe.html"&gt;Move Me by Spearit Software&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;You install Move Me on the original computer and on the new computer, you plug both of them on the same network (it also handles transfer through USB or parallel connections) and start it on both of them. Then a wizard allows you to easily setup the system. It compares files on both systems and decides to transfer necessary new files to the new computer.&lt;br /&gt;This part of the process could seem just stupid to you and you could think that any backup of copy software could do it. If you effectively try this by yourself, you will very quickly discover that it is not enough to transfer program files; many libraries and other configuration files will be missing in the Windows folder of the new computer and the programs will not in general work correctly. If you try to transfer also the files in the Windows folder, then you will very quickly see that this is not a good idea since it will mess up the Windows installation of the new computer. Another source of problem will be missing Registry entries and even if you are able to intelligently transfer just the necessary DLL files, your programs will not work or you will have to reconfigure them to your taste from scratch. This just normally takes a huge amount of time too.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;This is where Move Me shines:&lt;/span&gt; it intelligently transfer system files installed by the programs, without messing with the Windows installation and it transfers the registry settings and imports them in the Registry of the new computer.&lt;br /&gt;When the transfer finishes (that can take quite some time in a complex installation like mine), you boot the new compute and find your original configuration with the usual softwares and your customization. This is just magical and marvellous!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Caveats :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Move Me is not free. You pay a fix fee for each transfer (I have paid $47 including VAT). When you pay this amount, you do not buy the software but just the right to migrate from one single particular computer (but you can migrate to as many computers as you want from this computer - so the licence you but sticks to the original laptop). I have thought that spending 50 bucks for economizing one week's job was reasonable and I do not regret it: In one night my new laptop became fully functional!).&lt;/li&gt;&lt;li&gt;Move me does not transfer the active services and hardware configurations in order to preserve the system of the destination laptop. This means that you will have to reinstall some software in the new computer, mainly the softs that are intricately articulated with the operating system (eg. Anti-virus, firewall, virtual printers, Adobe Acrobat, Diskkeeper, etc.). It is even better to install first these softs on the new computer before beginning the migration.&lt;/li&gt;&lt;li&gt;Move Me does not duplicate user accounts existing in the original computer onto the new laptop, but each user can log in the original computer to migrate his/her personal data. I have found that the migration was really successful if you log under exactly the same administrative account (with the same name, and hence the same Documents and Settings folder name). This makes the migration much more robust and reliable.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;I know now that I can migrate to a new laptop without spending 7-10 days for restoring my working environment on it. This is just marvelous and I thank Spearit for its inventiveness.&lt;br /&gt;Note: The same software seems  to also be commercialized by Laplink.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 153);"&gt;Update (August 18, 2008):&lt;/span&gt; MoveMe does not seem to handle the migration towards Windows Vista, while the Laplink version (&lt;a href="http://www.laplink.com/pcmover/"&gt;PcMover&lt;/a&gt;) pretends to do. I have not yet tested this possibility.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-115836214944962453?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.spearit.com/about_MoveMe.html' title='Migrating to a new laptop'/><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/115836214944962453/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=115836214944962453&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/115836214944962453'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/115836214944962453'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2006/09/migrating-to-new-laptop.html' title='Migrating to a new laptop'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-114699288451567357</id><published>2006-05-07T10:55:00.001+02:00</published><updated>2009-05-31T15:40:55.029+02:00</updated><title type='text'>Writing articles in English</title><content type='html'>If you write in English (this is probably the case if you are reading this page :-) ), you can definitely learn something from &lt;a style="font-style: italic; font-weight: bold;" href="http://www.bartleby.com/141/"&gt;The Elements of Style&lt;/a&gt;. This small text by William Strunk, Jr. corrects many potential errors we can make when we write in English, especially if we are not native speakers (even if the book is not originally dedicated to foreign writers). But some &lt;a href="http://itre.cis.upenn.edu/%7Emyl/languagelog/archives/001604.html"&gt;adverse opinion&lt;/a&gt; also exists about this book.&lt;br /&gt;&lt;br /&gt;Another very interesting small book about style is &lt;span style="font-style: italic; font-weight: bold;"&gt;Simple &amp;amp; Direct&lt;/span&gt; by Jacques Barzun (published by Quill). Again, this book incites you to clarify your ideas in order to craft sentences with a clear meaning.&lt;br /&gt;&lt;br /&gt;More on the grammar side, I would also recommend &lt;span style="font-style: italic; font-weight: bold;"&gt;Practical English Usage&lt;/span&gt; by Michael Swan (Oxford University Press). It is really very easy to use thanks to a very intelligent organization. A small excerpt from the table of contents:&lt;br /&gt;173 - &lt;span style="font-weight: bold;"&gt;each&lt;/span&gt;&lt;br /&gt;174- &lt;span style="font-weight: bold;"&gt;each &lt;/span&gt;and &lt;span style="font-weight: bold;"&gt;every&lt;br /&gt;&lt;/span&gt;175 - &lt;span style="font-weight: bold;"&gt;each other&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;one another&lt;/span&gt;&lt;br /&gt;...&lt;br /&gt;&lt;br /&gt;If you mainly write scientific articles, you could benefit from &lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;Successful Scientific Writing&lt;/span&gt; &lt;/span&gt;by Matthews, Bowen and Mathews (Cambridge University Press). This book is dedicated to biological and medical sciences but the tips it contains can help for articles in any discipline (I am an economist and I have learned a lot of tricks from it, even if my writing remains quite awful in English :-)).&lt;br /&gt;&lt;br /&gt;And if your mother tongue is French, just a single major tip: forget the passive voice, it terribly blurs the significance of sentences in English. Passive voice also gives rise to terribly cumbersome sentences very prone to errors...&lt;br /&gt;&lt;br /&gt;And, if English is your third language (as in my case), I wish you good luck ;-)&lt;br /&gt;&lt;br /&gt;Other interesting pages:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.economist.com/research/styleGuide/"&gt;The Economist's style guide&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.davemckay.co.uk/philosophy/russell/russell.php?name=how.i.write"&gt;'How I write' by Bertrand Russel&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-114699288451567357?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/114699288451567357/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=114699288451567357&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/114699288451567357'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/114699288451567357'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2006/05/writing-articles-in-english.html' title='Writing articles in English'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-114458135251662799</id><published>2006-04-09T13:00:00.001+02:00</published><updated>2009-02-25T23:15:48.973+01:00</updated><title type='text'>Open source statistical analysis plateform: R-project</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/7567/1862/1600/screenR.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/7567/1862/320/screenR.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(153, 0, 0);"&gt;&lt;br /&gt;R&lt;/span&gt; is the statistical open source software that I use for analyzing the results of my economic simulations and other statistical data. R is a very powerful tool developed by a considerable and very active community. It is not really very user-friendly when you use it out of the box, through the command line, but some of the included packages try to make easier your life (like the RCommander package that is visible on the screenshot above). Other visual user interface projects are also in development. For example, Sciviews already proposes two nice tools: a very flexible and powerful script editor&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;a style="font-weight: bold;" href="http://www.sciviews.org/Tinn-R/index.html"&gt;Tinn--R&lt;/a&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;and a graphical gui that replaces the standard Rgui, &lt;a style="font-weight: bold;" href="http://www.sciviews.org/SciViews-R/"&gt;Sciviews-R&lt;/a&gt;. The latter enriches the standard Rgui with some widgets that give an easy access to obkects in memory, for example, and a more flexible editor (but it is also possible to use Tinn-R in combination with this GUI).&lt;br /&gt;The main website of R is the &lt;a href="http://www.r-project.org/"&gt;www.r-project.org&lt;/a&gt;. You can also download R, other packages and tools from a CRAN repository close to you (check the list of the mirror sites &lt;a href="http://cran.r-project.org/mirrors.html"&gt;here&lt;/a&gt;).&lt;br /&gt;&lt;br /&gt;From the &lt;a href="http://www.r-project.org/"&gt;website&lt;/a&gt; of R:&lt;br /&gt;&lt;p style="color: rgb(102, 102, 102);"&gt; R is a language and environment for statistical computing and graphics.  It is a &lt;a href="http://www.gnu.org/" target="_top"&gt;GNU project&lt;/a&gt; which is similar to the S language and environment which was developed at Bell Laboratories (formerly AT&amp;amp;T, now Lucent Technologies) by John Chambers and colleagues.  R can be considered as a different implementation of S. There are some important differences, but much code written for S runs unaltered under R.  &lt;/p&gt;&lt;p style="color: rgb(102, 102, 102);"&gt; R provides a wide variety of statistical (linear and nonlinear modelling, classical statistical tests, time-series analysis, classification, clustering, ...) and graphical techniques, and is highly extensible.  The S language is often the vehicle of choice for research in statistical methodology, and R provides an Open Source route to participation in that activity.  &lt;/p&gt;&lt;p style="color: rgb(102, 102, 102);"&gt; One of R's strengths is the ease with which well-designed publication-quality plots can be produced, including mathematical symbols and formulae where needed.  Great care has been taken over the  defaults for the minor design choices in graphics, but the user retains full control.&lt;/p&gt;&lt;p&gt;I really invite you to download R and begin to play with it. You can find very useful tutorials on R on the website, in the  &lt;a href="http://cran.r-project.org/other-docs.html"&gt;Contributed documentation page&lt;/a&gt;. Check, for example, &lt;strong&gt;“Using R for Data Analysis and Graphics -       Introduction, Examples and Commentary”&lt;/strong&gt; by John Maindonald. You can download the PDF file &lt;a href="http://cran.r-project.org/doc/contrib/usingR-2.pdf"&gt;from this link&lt;/a&gt;.  &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-114458135251662799?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.r-project.org/' title='Open source statistical analysis plateform: R-project'/><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/114458135251662799/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=114458135251662799&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/114458135251662799'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/114458135251662799'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2006/04/open-source-statistical-analysis.html' title='Open source statistical analysis plateform: R-project'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-114433982598271218</id><published>2006-04-06T17:40:00.002+02:00</published><updated>2006-04-06T18:13:15.280+02:00</updated><title type='text'>Editing LaTeX files under Windows: Scientific WorkPlace</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/7567/1862/1600/figswp.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/7567/1862/320/figswp.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This one is not  a freeware or open source (it is even quite expensive - especially in France) :-( but I find that SWP is the most powerful, compatible and user-friendly LaTeX editor that we actually have. There are other open source competitors like the very beautiful &lt;a href="http://www.texmacs.org/"&gt;TeXMacs&lt;/a&gt; or &lt;a href="http://www.lyx.org/"&gt;Lyx&lt;/a&gt; , but he first is not as compatible as SWP and the second is not yet as flexible as SWP, especially concerning the editing of mathematical expressions. Another nice open source but not at all WYSWYG editor is &lt;a href="http://www.toolscenter.org/front_content.php?idcat=26"&gt;TeXnicCenter&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;SWP can save your files in a compatible format that is called "portable latex" and you can easily compile your files using a standard LaTeX motor (I, for example, use Miktex instead of the specific compiler that comes with SWP: TrueTex).&lt;br /&gt;&lt;br /&gt;Mackichan provides two versions of this editor: Scientific Word (the editor only) and Scientific Workplace. The workplace version is more expensive because it comes with a algebraic computation system: Mupad. If you have an official version of Maple, you can also use the kernel provided by the latter (I find it more powerful by the way). In fact I do not possess a complete copy of Maple but I have conserved the last kernel that I have had with an old version of SWP (SWP was used to come with Maple) and I configure SWP for this kernel and this sea tup  perfectly works. As consequence, I can do computations or plot expressions directly from SWP.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-114433982598271218?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.mackichan.com/products/swp.html' title='Editing LaTeX files under Windows: Scientific WorkPlace'/><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/114433982598271218/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=114433982598271218&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/114433982598271218'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/114433982598271218'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2006/04/editing-latex-files-under-_114433982598271218.html' title='Editing LaTeX files under Windows: Scientific WorkPlace'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-114399619829024543</id><published>2006-04-02T18:43:00.000+02:00</published><updated>2006-04-02T19:25:32.983+02:00</updated><title type='text'>Drawing figures for LaTeX - jpicEdt - Java Picture editor</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/7567/1862/1600/jpicedt.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/7567/1862/320/jpicedt.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 0);font-family:georgia;" &gt;&lt;br /&gt;&lt;b&gt;jPicEdt &lt;/b&gt; &lt;/span&gt;&lt;span style="font-family:georgia;"&gt; is a very user-friendly open source software for creating and editing your drawings for LaTeX documents. Its main strength is, in my opinion, its capacity to generate drawings based on the very nice package PSTRICKS. This is gives a very powerful environment for creating sophisticated drawings.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:georgia;"&gt;From the web site (&lt;/span&gt;&lt;a style="font-family: georgia;" href="http://www.jpicedt.org" target="_blank"&gt;www.jpicedt.org&lt;/a&gt;&lt;span style="font-family:georgia;"&gt;):&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 102, 102); font-style: italic;font-family:georgia;font-size:85%;"  &gt;jPicEdt can generate LaTeX, eepic and PsTricks code from a user-friendly graphical interface! This may include:&lt;br /&gt;&lt;br /&gt;* Every graphical element allowed by the picture environment commands: lines, arrows, circles, boxes.&lt;br /&gt;* Emulated elements, for example lines of any slope (which LaTeX doesn't support natively), circles of any size, ellipses, arcs and polygons. This makes a strong use of the \multiput command.&lt;br /&gt;* Nearly every object allowed by the epic/eepic packages (excluding grids and textured filling): dashed lines, filled (whitened, blackened or shaded) ellipses or polygons, arcs,... Using this package is optional.&lt;br /&gt;* As of version 1.3.2, nearly every object allowed by the pstricks.sty package (this include : filling with colours, hatches, textures, setting various stroke parameters...). Support for pstnode.sty and other related packages is underway.&lt;br /&gt;&lt;br /&gt;jPicEdt can parse LaTeX files that include a \begin{picture}...\end{picture} (or \begin{pspicture}...\end{pspicture}) block, and is able to interpret a great deal of commands, either LaTeX-, PsTricks- or eepic-compliant (this allows in particular to load files generated by GnuPlot with a gset term eepic command).&lt;br /&gt;jPicEdt is written in JAVA. As a result, it can run on any platform where a JVM (Java Virtual Machine) is installed (nearly every Unix flavors, plus Window 9x/2000/XP and MacOS, at least...)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:georgia;"&gt;If you configure jpicEdt for compiling the drawings with LaTeX and dvips, you can very easily convert them to PDF for also using them with PDFLaTeX.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-114399619829024543?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/114399619829024543/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=114399619829024543&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/114399619829024543'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/114399619829024543'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2006/04/drawing-figures-for-latex-jpicedt-java.html' title='Drawing figures for LaTeX - jpicEdt - Java Picture editor'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-114381116558622337</id><published>2006-03-31T15:19:00.000+02:00</published><updated>2006-04-06T18:14:58.846+02:00</updated><title type='text'>Drawing figures for Latex - Ipe extensible drawing editor</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/7567/1862/1600/figipe.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/7567/1862/320/figipe.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:Georgia;"&gt;&lt;b&gt;&lt;span style="color: rgb(128, 0, 0);"&gt;Ipe&lt;/span&gt; &lt;/b&gt;extensible drawing editor is a very nice tool for drawing figures for LaTeX. It is developed by Otfried Cheong. The source code and the binaries for Windows and Linux can be downloaded from &lt;a href="http://ipe.compgeom.org" target="_blank"&gt;ipe.compgeom.org&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The features of ipe are (from the web site):&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(91, 91, 91);"&gt;  * Entry of text as LaTeX source code. This makes it easy to enter mathematical expressions, and to reuse the LaTeX-macros of the main document. In the display text is displayed as it will appear in the figure.&lt;br /&gt;* Produces pure Postscript/PDF, including the text. Ipe converts the LaTeX-source to PDF or Postscript when the file is saved.&lt;br /&gt;* It is easy to align objects with respect to each other (for instance, to place a point on the intersection of two lines, or to draw a circle through three given points) using various snapping modes.&lt;br /&gt;* Users can provide Ipelets (Ipe plug-ins) to add functionality to Ipe. This way, Ipe can be extended for each task at hand.&lt;br /&gt;* The text model is based on Unicode, and has been tested with Korean, Chinese, and Japanese.&lt;br /&gt;* The UI is implemented using the portable toolkit Qt, and so can be compiled for Unix, Windows, and Mac OS X (see below).&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;It can save its figures in the EPS (encapsulated Postscript) format for using with dvips or in the PDF format for using with pdflatex.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="color: rgb(128, 0, 0);"&gt;Ipe&lt;/span&gt; &lt;/b&gt; is not very simple to use since it has some special tricks (for example the transition between different modes can be cumbersome sometime), but it is very powerful for drawing even complex figures for LaTeX and it is now my main drawing software.&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-114381116558622337?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/114381116558622337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=114381116558622337&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/114381116558622337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/114381116558622337'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2006/03/drawing-figures-for-latex-ipe.html' title='Drawing figures for Latex - Ipe extensible drawing editor'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18922912.post-113188738492383917</id><published>2005-11-13T14:00:00.000+01:00</published><updated>2006-04-02T19:21:50.896+02:00</updated><title type='text'>Introduction</title><content type='html'>&lt;span style="color: rgb(51, 51, 51);"&gt;I start this blog for sharing with you the tools I have discovered during the past years for&lt;/span&gt;&lt;br /&gt;&lt;ul style="color: rgb(51, 51, 51);"&gt;   &lt;li&gt;writing scientific texts;&lt;br /&gt;&lt;/li&gt;   &lt;li&gt;drawing figures for LaTeX;&lt;br /&gt;&lt;/li&gt;   &lt;li&gt;communicating my writings;&lt;br /&gt;&lt;/li&gt;   &lt;li&gt;keeping my laptop safe and clean;&lt;/li&gt;   &lt;li&gt;getting organized with a PDA.&lt;br /&gt;&lt;/li&gt; &lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);"&gt; The majority of them are free, some are commercial. I only use commercial software if I cannot find a reliable and efficient open alternative.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;I use a laptop under Windows XP as my main computer (I have in the past also used Linux as my main system) and a web server under Linux Mandrake (now called Mandriva).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;I hope you will appreciate these tools as much as me...&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;Murat&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18922912-113188738492383917?l=yildizoglu.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://yildizoglu.blogspot.com/feeds/113188738492383917/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18922912&amp;postID=113188738492383917&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/113188738492383917'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18922912/posts/default/113188738492383917'/><link rel='alternate' type='text/html' href='http://yildizoglu.blogspot.com/2005/11/introduction.html' title='Introduction'/><author><name>yildi</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
