Text Formatting ⇒ Importing rich text
Importing rich text
Is there a way to import at least basic features (italic, bold etc...) into LaTex? I mean, is there a way to avoid reformatting it from scratch?
NEW: TikZ book now 40% off at Amazon.com for a short time.

Importing rich text
What format is it in now, RTF?
Take a look at rtf2latex2e or wvWare or pandoc, for example. Here's a blog post on converting documents to LaTeX format which might provide some tips.
Take a look at rtf2latex2e or wvWare or pandoc, for example. Here's a blog post on converting documents to LaTeX format which might provide some tips.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Importing rich text
I guess the rtf2latex2e project is what you are searching for. There are OS specific versions available on the project page.
Thorsten
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Importing rich text
Thank you guys, I'll let you know if those solutions may satisfy me. Going to tell you soon.
Importing rich text
OK, trying to ./configure rtf2latex I get this error message:
What's wrong with it??? 
Code: Select all
loading cache ./config.cachechecking for a BSD compatible install... /usr/bin/install -cchecking whether build environment is sane... yeschecking whether make sets ${MAKE}... yeschecking for working aclocal... missingchecking for working autoconf... missingchecking for working automake... missingchecking for working autoheader... missingchecking for working makeinfo... foundchecking host system type... ./config.guess: 1015: Syntax error: end of file unexpected (expecting ")")configure: error: can not guess host type; you must specify one

Importing rich text
I remember having the same kind of problem when I tried to compile rtf2latex2e. I guess the config.guess program it comes with is faulty.
For me, the solution was to use the --host option to configure program to manually specify the host. For me, this was:
But obviously that only makes sense for a 64-bit version of Linux, and I don't know what you're using. (E.g., you might use i686-pc-linux-gnu instead if you've got a 32 bit version of Linux running, or maybe i486-pc-linux-gnu for an older processor, etc.
For me, the solution was to use the --host option to configure program to manually specify the host. For me, this was:
Code: Select all
./configure --host=x86_64-pc-linux-gnu
Re: Importing rich text
OK I configured, made and installed it. It works!
Thank you everybody!
Thank you everybody!