Posts Tagged ‘hidden’

Add hidden, searchable text-layer to PDF via OCR with Adobe Acrobat

Friday, March 29th, 2013

Forgot that I knew how to do this.

Document > OCR Text Recognition > Recognize Text Using OCR …

Title with hidden axis in matlab figure

Thursday, July 5th, 2012

I often hide the current axis in a matlab plot figure using:


set(gca, 'visible', 'off');

But then if I call


title('Hello');

The title is not visible (as it is a child object of a hidden axis).
The fix is simple:


title('Hello','Visibility','on');