File: graphicspath.tex

package info (click to toggle)
latex2rtf 2.3.18a-5
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,392 kB
  • sloc: ansic: 20,424; makefile: 660; sh: 478; perl: 22
file content (34 lines) | stat: -rwxr-xr-x 743 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
\documentclass[a4paper,11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}

\setlength{\oddsidemargin}{0pt}
\setlength{\evensidemargin}{0pt}
\setlength{\textwidth}{6in}
\setlength{\parindent}{0pt}

\usepackage{graphicx}
\graphicspath{{./graphs}{./figures}}

\title{graphicspath support for LaTEX2rtf}
\author{Pedro A. Aranda Guti\'errez}
\begin{document}
\maketitle

\section {Tests}

I have two new directories and I import the graphics
from them instead of having them in the same directory
where the TeX file resides

\begin{figure}
\includegraphics{fig_oval}
\caption{Figure included from graphs} 
\end{figure}

\begin{figure}
\includegraphics{fig_tex}
\caption{Figure included from figures} 
\end{figure}

\end{document}