Text Formatting ⇒ Importing rich text
Importing rich text
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Importing rich text
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
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Importing rich text
Importing rich text
Code: Select all
loading cache ./config.cache
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal... missing
checking for working autoconf... missing
checking for working automake... missing
checking for working autoheader... missing
checking for working makeinfo... found
checking 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
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
Thank you everybody!