vote up 2 vote down star

Scenario:
I have a document I created using LaTeX (my resume in this case), it's compiling in pdflatex correctly and outputting exactly what I'd like. Now I need the same document to be converted to plain old ASCII.

Example:
I have seen this done (at least once) here, where the author has a PDF version and an ASCII version that matches the PDF version in almost every way, including margins, spacing and bullet points.

I realize this type of conversion cannot be exact due to limitations in the ASCII format, but a very close approximation does seem possible based on what I have found so far. What is the process for doing this?

flag

80% accept rate

5 Answers

vote up 3 vote down check

CatDVI can convert DVI to text and attempts to preserve the formatting.

link|flag
Do you know how to turn off "justified" alignment? – chuckg Feb 9 at 22:35
I sure don't, sorry. – Bearddo Feb 10 at 4:08
vote up 6 vote down

You can try some of the proposed programs here:

TeX to ASCII

link|flag
vote up 1 vote down

My usual strategy is to use hyperlatex to turn it into a web page, and then cope and paste from a web browser. I find that this gives the best formatting.

I usually then have to go through and manually fix some line-wrapping...

link|flag
I tried this out, but unfortunately it doesn't support using an external cls file. I'm using a class file to handle repetitive formatting tasks, along with the enumitem class. Thanks though! – chuckg Feb 9 at 22:02
hmmm, I don't think I've had problems with that... but it's been a while since I've used it... and I don't have any of my files at work... – Brian Postow Feb 10 at 14:48
vote up 1 vote down

Another option is to use htlatex to create a web page from the LaTeX sources, then use links to convert to plain text. I used the command line

links -dump -no-numbering -no-references input.html > output.txt

in the past which gave a rather nice result. This will of course rather match the view of the rendered HTML than the original PDF, thus maybe not exactly what you want.

link|flag
vote up 0 vote down

you can import into lyx and use lyx's export to text feature.

kind of silly if you don't use lyx but if you already have it, very quick and easy solution. Good result for me, although to be fair my files are pretty simple. Not sure how more elaborate files get converted.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.