I have previously mentioned Preview-Latex and AUCTeX. I was trying to set it up on the work computer, but the previews weren’t showing up properly. I thought I had had the problem before, but it was a different problem. This TeX Stack Exchange question had the answer, though: disable SAFER for Ghostscript. I do not know why this works.
Tuesday, August 7, 2012
Friday, November 5, 2010
Allow me to recommend AUCTeX, preview-latex, and Vincent Goulet's Emacs for OS X Modified
I am wanting to start typesetting my articles in LaTeX rather than using Pages+Endnote+Mathtype or, worse, Word. I don't like the LaTeX writing process of write, run LaTeX, run LaTeX again a couple of times to get the equation numbering correct, convert the dvi to a pdf, open the pdf, find a typo in an equation, cry, go to the bathroom, make a cup of tea, write some more. AUCTeX is a package for Emacs that makes it easier to write LaTeX with handy keyboard shortcuts and syntax highlighting, for example. Most notably, AUCTeX comes bundled with a tool, preview-latex, which presents rendered math equations in-line.
This requires a GUI-enabled Emacs. On the Mac, Cocoa Emacs is the most current. Vincent Goulet has prepared a special build of Cocoa Emacs, Emacs for OS X Modified, which includes AUCTeX as well as ESS and psvn if you're interested in those, too.
I don't know if this is a common problem, but for my installation, preview-latex didn't work properly until I disabled TeX-PDF-mode by C-c C-t C-p or adding (TeX-PDF-mode nil) to my .emacs file. I got the idea from this mailing list discussion.
Monday, May 31, 2010
Allow me to recommend Cyberduck
Thursday, May 13, 2010
Pages' proofreading
- in terms of: Wordy in certain contexts. Consider simplifying with 'with', 'for', or 'of'.
- "this same": Redundant expression. Consider deleting 'same'.
- "for the purpose of": Wordy expression. Simplify by replacing with 'to' and an infinitive verb.
- relative to: Wordy expression. Consider rephrasing with a more precise preposition.
- "in general": Stock phrase. Use sparingly.
Monday, May 10, 2010
Allow me to recommend TextExpander and Dropbox
Tuesday, April 13, 2010
iWork Numbers Automator Actions to import text
As near as I can tell, the only way for Numbers to import plaintext table data is as a CSV file. The file needs to be comma-delimited, and ending in a .csv extension. I often want to grab data from the terminal, though. The Import CSV Text To Numbers Service takes selected comma delimited text and pops open a new Numbers document with it. The Import Whitespace Text To Numbers Service does the same, with whitespace delimited text. You can install these services by extracting them from the .zip files and moving them to your ~/Library/Services directory.
Note 1: For both of these Services, a scratch file is generated. A dialog box will pop up, asking to delete the scratch file. Only click OK once the file has finished loading.
Note 2: These Services operate on blocks of text, not text files; you can open a file and select the text you want imported to Numbers, that works fine.
Pedantic note on Import Whitespace Text To Numbers: This works via the sed command
sed -E 's/^[[:space:]]+//;s/[[:space:]]+/,/g'
which actually takes all blocks of whitespace and converts them to commas. The file is then saved as a .csv, and is opened by Numbers. This means that any commas in the source text will be treated as delimiters, as well.
Import CSV Text To Numbers
Import Whitespace Text To Numbers