73

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?

chuckg
  • 9,195
  • 7
  • 28
  • 26
  • 1
    From the second-to-last paragraph of the Todd C. Miller page you linked to (emphasis mine): "Please note that **the ASCII version was hand-formatted**. I'm not aware of a latex to ascii translator that preserves formatting, though detex can be used to extract the actual text." – Kevin J. Chase Apr 07 '17 at 23:18

14 Answers14

46

Opendetex is available both for Windows and Linux (compiles fine on a Mac as well). It can be downloaded from https://github.com/pkubowicz/opendetex

Usage:

detex project

opens project.tex, reads all files included using \include or \includeonly commands, outputs resulting text to standard output.

detex -n project > out.txt

opens project.tex, does not follow \include or \includeonly commands, outputs resulting text to out.txt

detex --help

shows full help

Extract it to any directory of your choice. Say you extracted it to your Downloads directory.

Create another directory of any name in that (this is optional but recommended). Let's say the directory name is “my_paper”. Put your paper in the “my_paper” directory. Assume your paper name is project.tex.

Navigate to the path

    cd ~/Downloads/opendetex

Run the command

    detex my_paper/project.tex  > out.txt

generic form

    detex -n full_path_to_tex_file.tex > output_text_file.txt
Flow
  • 23,572
  • 15
  • 99
  • 156
Mayank Agarwal
  • 885
  • 1
  • 9
  • 7
17

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

Beardo
  • 1,542
  • 1
  • 14
  • 27
14

You can try some of the programs proposed here:

TeX to ASCII

Diego Sevilla
  • 28,636
  • 4
  • 59
  • 87
13

pdftotext can preserve layout

If you are using pdflatex, you probably don't want to mess around with your package options to switch to latex to generate a DVI.

Instead, take your pdf file and convert that. This worked for my CV/resume made with the Curve package:

pdftotext  -layout MyResume.pdf

Note the -layout to give a result for human eyeballing that resembles the structure of the original pdf but does break lines to achieve that. Leave off the layout for a result that is more suitable for further processing and doesn't break lines.

ahcox
  • 9,349
  • 5
  • 33
  • 38
  • 1
    This solution works great for me - thank you! I tried the python script above, and got an error, and pandoc.org/try didn't return anything while the console listed a 500 error for a GET request. I didn't have much time to debug either one, but this works great! – modulitos Sep 15 '17 at 04:19
  • 1
    One issue with this solution is, that it includes line-wraps. In case that is not wanted, you should leave out `-layout`. – darthn Dec 11 '22 at 11:15
9

You can also try Pandoc, it can transform latex to many other formats. I suggest reading its documentation, for there may be some tricky cases that you need pass some arguments to handle.

MajidL
  • 731
  • 6
  • 11
LittleSweet
  • 534
  • 2
  • 6
  • 9
  • 1
    Pandoc is superb. For programmatic conversion in Python, including automatic conversion to plain text of many mathematical constructs with reasonable plain text equivalents, I made a little hacky function which might be useful: http://pastebin.com/z7EMvfkZ – andybuckley Jun 10 '13 at 13:30
8

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.

bluebrother
  • 8,636
  • 1
  • 20
  • 21
3

The solution that works best for me is the following. Assuming you have the latex document name (without extension) stored in ${BASENAME} you apply these 3 steps:

htlatex ${BASENAME}.tex

iconv -f iso-8859-1 -t utf-8 ${BASENAME}.html > ${BASENAME}-utf8.html

html2markdown ${BASENAME}-utf8.html > ${BASENAME}.txt

Apparently, you need to have tex4ht and python-html2text installed.

Bo Persson
  • 90,663
  • 31
  • 146
  • 203
3

Try the steps here: http://zanedp.livejournal.com/201222.html

Here is a sequence that converts my LaTeX file to plain text:

$ latex file.tex
$ catdvi -e 1 -U file.dvi | sed -re "s/\[U\+2022\]/*/g" | sed -re "s/([^^[:space:]])\s+/\1 /g" > file.txt

The -e 1 option to catdvi tells it to output ASCII. If you use 0 instead of 1, it will output Unicode. Unicode will include all the special characters like bullets, emdashes, and Greek letters. It also include ligatures for some letter combinations like "fi" and "fl." You may not like that. So, use -e 1 instead. Use the -U option to tell it to print out the unicode value for unknown characters so that you can easily find and replace them.

The second part of the command finds the string [U+2022] which is used to designate bullet characters (•) and replaces them with an asterisk (*).

The third part eats up all the extra whitespace catdvi threw in to make the text full-justified while preserving spaces at the start of lines (indentation).

After running these commands, you would be wise to search the .txt file for the string [U+ to make sure no Unicode characters that can't be mapped to ASCII were left behind and fix them.

user255191
  • 31
  • 1
  • This answer may still be useful?? But for me this messes up many letter combinations including all double-"f"s. Should I specify some non-proportional font or etc first to avoid those problems? – CPBL Jan 26 '22 at 15:24
3

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...

Brian Postow
  • 11,709
  • 17
  • 81
  • 125
  • 1
    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 09 '09 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 '09 at 14:48
3

When I needed to get the plain text from my TEX file for indexing and searching, I found LaTeX2RTF to be a good solution - it has an installer and GUI for windows, and it produced a RTF file of my 50 pages thesis that I could open in Word.

tsvikas
  • 16,004
  • 1
  • 22
  • 12
2

Pandoc allows you to convert files from one format to other Use following pandoc command:

pandoc -s /path/to/foobar.tex -o foobar.txt

If you want your lines to break at a certain column use --column flag. Use --columns 10000 for non-breaking line.

You can convert -o foobar.txt to a number of other formats like markdown (.md) etc. If you don't specify the -o foobar.txt, pandoc will print the html that you can render in any online tool.

To install pandoc follow this official documentation

Shubham Chaudhary
  • 47,722
  • 9
  • 78
  • 80
2

I've tried LyX and it works pretty well. The only nuance is that if you have a TeX file that is including other TeX files, you will need to export them all separately, unless I'm missing something.

0

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.

DDD
  • 1
0

Emacs has the commands iso-iso2tex and iso-tex2iso that work very well, except it doesn't convert single commands like \OE to Œ.

Geremia
  • 4,745
  • 37
  • 43