Ask Slashdot: Tablets For Papers; Are We There Yet?
An anonymous reader writes "When I was younger, engineering and science offices didn't have computers yet. It was the tradition: Piled Higher and Deeper desks, and overloaded bookcases. I ended up doing other things, and haven't been in a regular office for a couple of decades. Now I'm older, spending a lot more time with the screen, and finding my aging butt and back aren't as pliable for the long hours of reading papers. And while looking at rather expensive chairs, etc for a solution, what I'm remembering is we used to be able to lean back, feet up, while reading the stapled print-outs — makes a change from hunched-over writing and typing. So I'm what wondering is this: Are We There Yet with tablets? You guys would know — What makes a good tablet for reading, sorting, annotating, and searching PDFs, etc? Hardware and software — what tablets have gotten this really right?"
Works well for me. I just stuff PDFs into my dropbox folder on my desktop, and read em on the iPad. Makes for a happy combination. There is also an Android tablet in the house, works about as well. Seems like a solved problem from my perspective. I never print anything for reading any more...
The iPad has several good PDF reader apps, including some that do annotating. There are a few free PDF readers like BlueFire, but the best one that I've seen is a $5 one called Goodreader for iPad. With the advent of free online storage like DropBox, SkyDrive, or Box, you can put your PDFs online and just download them when you want to read them. I'm sure some of the better Android tablets will also do a pretty good job as a PDF reader, but I haven't gotten my hands on a Galaxy, XyBoard, or Nexus to play with them.
My Sysadmin Blog
My wife is finishing up her PhD in a biological science field. A couple years ago she was carrying like 70+ printed out papers around with her so she could reference them when writing at home or at a coffee shop. She got an original iPad and started using GoodReader and said it changed the game completely for her. She's on an iPad 3 now but the effect is the same.
I got her old iPad when she upgraded and I loaded literally a couple thousand papers and other documents I've saved over the years (mostly IEEE and ACM papers and a ton of standards documents I reference for work), luckily all already organized. GoodReader will let you load things and keep whatever directory/folder organization you have. It's great!
Or any e-reader tablet that uses e-ink (unlike kindle fires). I find that it's just as easy to read as print without the eyestrain that comes from reading LCD screens. Also the battery on those things are AMAZING. I rarely have to charge mine more than once per month.
LCD screen tablets == eyestrain after a long reading period. If you do not read for long periods of time, perhaps a 10" would work for you.
E-Ink screens are too small and/or too slow to render a typical journal article well.
I am frequently checking the state of tablet technology to do paper annotation. I write and annotate documents a lot. And any interface which is not paper and pencil like is typically useless to me. So all the tablet tend to be terrible on their own. I had a look at those stylus for ipad, that's better but still not enough. It is too imprecise which prevent proper annotation and drawings
Though, Itried a galaxy note (the phone one) with the spen, and that was a very convenient device to annotate a document. Except it is phone size so it is too small for real life use. The tablet version should be perfect. If you want to annotate stuff, you should check it out and see if it works for you.
My company makes software for allied health professionals, and a large number of our customers are chiropractors. They are starting to use tablets quite extensively for recording their medical notes, so I am perfectly positioned to offer a slightly tangential response. Full disclosure: I am not a chiropractor - I've just worked with thousands of them, so I know a bit about spines and posture.
Subby, you mentioned that your back isn't what it used to be. This is an important factor.
During our lab trials of tablets, we received a lot of feedback about the ergonomics of tablets - and one tester actually had to be excused from testing after a measly 15 minutes due to neck pain developing. Here's the problem:
- A tablet has a very small screen. Don't let anybody trick you into thinking that a 10.1" screen is big. Its not. You have to hold the tablet quite close to your face to be able to read it comfortably.
- Even the lightest tablets still have significant weight. You can safely anticipate that your tablet will weigh about a kilogram.
- When you hold a kilogram weight up in front of your face, it distorts your body's centre of balance. In order to compensate, your body transfers weight either resulting in you leaning backwards, or sticking your backside out. Either of these are posturally abnormal positions. For the first 5 minutes, no problems - but for extended periods, this can (and likely will) result in back pain, neck pain and headaches. Over weeks and months, it will damage your spine.
- The alternative is to sit in a relaxed position and hold the device in your lap. Sounds good until you realise that your entire body is falling into a C shape (when seen from the side). This is also an abnormal position for the spine - and creates the same problems. We see a lot of x-rays of children who spent excessive time with the iPod/PST/handheld device in their lap - their spine is worse than that of a 40 year old.
In the end, we published an official white paper advising our customers that A) tablets work fine; the technology is sound and reasonably mature; B) we DO NOT recommend that they use them.
imho we ARE there.
I initially tried out a Lenovo Thinkpad tablet but the n-trig based pen system wasn't responsive enough. I've since switched to the Samsung Galaxy Note 10.1 and it is AMAZING. My wife uses it to take notes, lecture from, annotate, email etc etc. Between S-Pen, Kno and other pen aware apps, this tablet fills all of our needs. She works in neuroscience for a university and in a lab and reads and annotates on many papers on her Note 10.1.
I'd strongly recommend you check it out.
Regards,
Anonymous
The newer iPads have the resolution and speed to do PDFs justice; but capacitive touchscreens aren't exactly god's gift to stylus-based annotation. Yeah, they sell capacitive styluses; but it isn't exactly a Wacom...
The Samsung Note tablets are not just capacitive. They can distinguish between your fingers and the pen. It's not even modal. In other words, if you're reading something, you can just use your finger(s) to flip the pages and the pen to highlight what you want. The tablet even knows when you're just hovering your pen over it, or whether you're actually touching the screen with it. It's quite amazing.
My only recommendation is that you if you get such a tablet, you get the latest version of the Note -- not the original Note. Samsung did a much better job integrating this technology in their latest version.
Autodesk do a handy app sketchbook express, its a sketch pad
I note you are using Android, so my suggestion may not be worthwhile, but I am using PenUltimate for all my hand-written notes, and, for that simple task, it does an excellent job. No OCR, but, frankly, I'm not sure how much processing power you'd need to throw at my handwriting...
One more issue some pdf files are locked and cannot be edited or annotated. Some software will ignore this and let you annotate others will not.
I may be able to help you here, if you have access to a Linux machine (heck, it may work natively on Android; I don't know): use ghostscript to assist in removing the lock. I have this as unlock_pdf.sh:
#! /bin/bash
# takes specified file and prints output using ghostscript
gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=output.pdf -c .setpdfwrite -f $1
Just save the file in question to your machine, and run sh unlock_pdf.sh pdfname.pdf and wait for output.pdf to be generated.
There may be better ways of doing this, but this has worked pretty well for me over the last couple of years, so I hope it offers some assistance.