1\documentclass[a4paper,11pt]{article}
2\usepackage[T1]{fontenc}
3\usepackage[utf8x]{inputenc}
4
5\setlength{\oddsidemargin}{0pt}
6\setlength{\evensidemargin}{0pt}
7\setlength{\textwidth}{6in}
8\setlength{\parindent}{0pt}
9
10\usepackage{graphicx}
11\graphicspath{{./graphs}{./figures}}
12
13\title{graphicspath support for LaTEX2rtf}
14\author{Pedro A. Aranda Guti\'errez}
15\begin{document}
16\maketitle
17
18\section {Tests}
19
20I have two new directories and I import the graphics
21from them instead of having them in the same directory
22where the TeX file resides
23
24\begin{figure}
25\includegraphics{fig_oval}
26\caption{Figure included from graphs}
27\end{figure}
28
29\begin{figure}
30\includegraphics{fig_tex}
31\caption{Figure included from figures}
32\end{figure}
33
34\end{document}
35