Categories
Uncategorized

TexWriter app for iPad

I am aiming to transition away from using a laptop at work, ideally going to using an iPad for almost all work whilst I am in school.

There have been a few sticking points that have prevented this, mainly

  • Lack of a decent LaTeX editor on iOS.
  • Inability to compile computer code natively on an iPad
  • Lack of equation support in Microsoft Office applications for iOS

Finally, I have found an app that can do most of the LaTeX compilation I want. In the past I have used TexTouch with dropbox syncing to compile remotely on my Mac, however the delays of sending files, waiting for compilation, copying back the pdf made this a fairly unwieldy approach, suitable only for quick and minor edits.

Recently I have discovered the TeXWriter app (http://www.texwriterapp.com/) that can compile LaTeX natively in the app without the need for an internet connection. First impressions are good; on loading the app you are presented with the following window:

IMG_0509.PNG

To compile your code it is a simple case of pressing the play button in the top right hand corner. Once compiled the output is viewable, as is the full LaTeX error report.

IMG_0519.PNG

I have tried compiling some fairly involved documents, drawing in many different libraries and TexWriter seems to handle it well. The only downside with this app is the time it takes to compile. A set of lecture slides that take less than 5 seconds to build from scratch on my MacBook Air takes over 3 minutes on my iPad. However this is an iPad 3 with only an A5X SoC, I’m looking forward to examining the performance boost when I get an iPad that is running with an A8 SoC.

I am also investigating the writeLaTeX service that runs in a web browser, though this does need a working Internet connection to compile. I’ll make that a subject of a further blog post in the future I think.

I always thought that Apple’s App Store terms and conditions prohibited code compilation, I’m curious to know how TeXWriter have got round this?! Unless it is because you aren’t generating an executable program…

At the moment TexWriter is definitely the best solution I have found for compiling LaTeX on the go on the iPad, however I need to see significant improvements in compile time before it replaces compilation on my laptop.

If anyone else has used TexWriter please let me know what you think.

Categories
Software

Getting to know Excel

Microsoft Excel seems to be a mainstay in schools for analysing and querying all kinds of data. Until last year I had barely used Excel since I, myself, was a pupil at school. Having spent years using Matlab to display, manipulate and interrogate data of many different forms.
Getting used to using Excel I’ve found many things that irritate me (not only the fact that it is often used for serious statistics when it shouldn’t be) and I find counterintuitive.

One of these is the behaviour of the LOOKUP function. In the simple example shown below I wish to examine a table of test results sorted alphabetically to find out who scored 56. A quick google suggests LOOKUP as a common way to do this, however as you see this doesn’t work.

IMG_0513.PNG
It doesn’t work because the vector in which we are searching for 56 is not ordered in ascending order, looking at the next screenshot you can see that sorting the table so that the scores are in ascending order does lead to LOOKUP working

IMG_0515-0.PNG
In general I am not going to want to re-sort a table just to do a bit of analysis and then re-sort again at the end – that is just a massive waste of time.

Instead I prefer to combine the INDEX and MATCH functions that Excel provides. These functions do pretty much what you would expect, without any strange behaviour:

  • MATCH returns the location of an item in an array. The first argument is the item we are searching for, the second the array in which we are searching and the third is an optional argument specifying if we are happy to accept a nearest match instead of an exact match.
  • INDEX returns the value at a given location in an array. The first argument gives the array, the second tells which row of the array to return. There is an optional third argument that specifies a column number, for example if I wanted the entry in a table at the intersection of the 2nd row and 3r column.

Combining these two commands we can build a function that does not require data to be sorted into ascending order for the output to be trustworthy. This is shown in the following screen shot

IMG_0514.PNG

I think I will now very rarely use the LOOKUP function, or VLOOKUP.

As an aside, the screen shots shown are from the iOS version of Excel, which actually has pretty good functionality. I’m not a fan of Microsoft products, being a Mac guy, but the iOS Microsoft Office apps are actually really good. I’m trying to shift to doing a much work as possible on my iPad now (not being able to always find a computer at school in free periods) and I’m sure I will blog about other apps that I find particularly good for the iPad.