File: epsfig.tex

package info (click to toggle)
latex2html 2023-debian1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,924 kB
  • sloc: perl: 34,024; makefile: 437; sh: 32
file content (32 lines) | stat: -rw-r--r-- 789 bytes parent folder | download | duplicates (2)
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
\documentclass{article}
\usepackage{html,epsfig}
\usepackage{graphicx,color,natbib}
\usepackage[margin=1in]{geometry}
\setlength{\unitlength}{1in}

\begin{document}

As of 2021, this figure is cropped by preview, because it is wider than \verb|\textwidth|
\begin{figure}[hbt]
  \begin{center}
    \begin{picture}(7,1.0)
      \put(0.28,0){\epsfig{file = allpasses.eps, width=6in}}
      \put(0,0.42){$x[n]$}
      \put(6.3,0.42){$y[n]$}
    \end{picture}
  \end{center}
  \caption{Test.}
\end{figure}
Test with makeimage:
\begin{figure}[hbt]
  \begin{makeimage}
    \begin{picture}(7,1.0)
      \put(0.28,0){\epsfig{file = allpasses.eps, width=6in}}
      \put(0,0.42){$x[n]$}
      \put(6.3,0.42){$y[n]$}
    \end{picture}
  \end{makeimage}
  \caption{Test.}
\end{figure}

\end{document}