[OS X TeX] Dealing with Word

Adam R. Maxwell amaxwell at mac.com
Sun Jul 28 14:20:51 EDT 2013


On Jul 28, 2013, at 10:02 , Arthur Snoke <snoke at vt.edu> wrote:

> I had to wrok a bit to get latex2rtf to work for me.  Here are my header lines

Here's another latex2rtf tip that might help. You can use \iflatextortf to hack around limitations, or disable unrecognized packages (as I do with xspace and fontspec here).

\newif\iflatextortf
\iflatextortf
\providecommand{\xspace}{~}
\providecommand{\text}{}
\else
\usepackage{xspace}
\fi

\iflatextortf
\usepackage[utf8]{inputenc}
\else
\usepackage{fontspec}
\defaultfontfeatures{Mapping=tex-text}
\setromanfont{Hoefler Text}
\setsansfont[Scale=0.94]{Gill Sans}
\setmonofont[Scale=0.9]{Lucida Sans Typewriter}
\fi

It doesn't support biblatex/biber, of course, but the bibtex/natbib support is very good.

Adam



More information about the MacOSX-TeX mailing list