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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
Description: Replace psfig by graphicx
psfig is non-free and graphicx can do the same job
Bug-Debian: https://bugs.debian.org/820797
Author: Andreas Tille <tille@debian.org>
Last-Update: Fri, 20 Jan 2017 11:21:20 +0100
--- a/GenericFunctions/doc/genericFunctions.tex
+++ b/GenericFunctions/doc/genericFunctions.tex
@@ -1,5 +1,5 @@
\documentclass{report}
-\input{psfig.sty}
+\usepackage{graphicx}
\oddsidemargin 0.0in
\evensidemargin 0.0in
\setlength{\unitlength}{1mm}
@@ -122,14 +122,14 @@ enough to be built easily but complicate
features of the library.
\begin{figure}
-\centerline{\makebox{\psfig{figure=example.ps}}}
+\centerline{\makebox{\includegraphics{example.ps}}}
\caption{Example. Use of Generic Functions libary. See text for explanation.}
\label{ref:ExampleCode}
\end{figure}
\begin{figure}
-\centerline{\makebox{\psfig{figure=WideOpen.ps}}}
+\centerline{\makebox{\includegraphics{WideOpen.ps}}}
\caption{Picture of the example application which is discussed in the text.
Above, the impulse function shows both slots wide open. Each of the sliders
changes parameters and causes the plotter to update. Below, the response function
@@ -138,7 +138,7 @@ shows the classic two-slit interference
\end{figure}
\begin{figure}
-\centerline{\makebox{\psfig{figure=PartiallyClosed.ps}}}
+\centerline{\makebox{\includegraphics{PartiallyClosed.ps}}}
\caption{The parameter values are now changed. All of the functions, both primitive
and derived, change their shape in response. Not that changing one parameter has
affected both functions.}
@@ -146,7 +146,7 @@ affected both functions.}
\end{figure}
\begin{figure}
-\centerline{\makebox{\psfig{figure=TotallyClosed.ps}}}
+\centerline{\makebox{\includegraphics{TotallyClosed.ps}}}
\caption{The second slit has been effectively closed, by setting the intensity
of light through this slit to zero. The two-slit interference pattern then
reduces to single-slit diffraction. This simple classroom demonstration program
@@ -496,7 +496,7 @@ by forming a three dimensional function
the illustration is the probability density function for a higher excited
state of hydrogen.
\begin{figure}
-\centerline{\makebox{\psfig{figure=hydrogen.ps}}}
+\centerline{\makebox{\includegraphics{hydrogen.ps}}}
\caption{Multidimensional functions can be expressed as a direct product
of lower dimensional functions; this example combines a Legendre Polynomial
with the product of an exponential, a power function and a Laguerre Polynomial
--- a/GenericFunctions/doc/CMakeLists.txt
+++ b/GenericFunctions/doc/CMakeLists.txt
@@ -6,5 +6,4 @@ clhep_latex( GenericFunctions genericFun
hydrogen.ps
PartiallyClosed.ps
TotallyClosed.ps
- WideOpen.ps
- psfig.sty )
+ WideOpen.ps )
|