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 69 70 71 72 73
|
Description: Avoid full pathnames for included images in PDF documentation
This should make the package build reproducible, by avoiding the
inclusion of the whole path of the included PDF files, which appear in
the /PTEX.FileName directive of pdfTeX.
Author: Rafael Laboissiere <rafael@debian.org>
Forwarded: https://savannah.gnu.org/bugs/index.php?55130
Last-Update: 2020-04-16
--- octave-queueing-1.2.6.orig/doc/queueingnetworks.texi
+++ octave-queueing-1.2.6/doc/queueingnetworks.texi
@@ -384,7 +384,7 @@ average number of visits to server @math
@noindent @strong{EXAMPLE}
@float Figure,fig:qn_closed_single
-@center @image{qn_closed_single,3in}
+@center @image{./qn_closed_single,3in}
@caption{Closed network with a single class of requests}
@end float
@@ -433,7 +433,7 @@ station, can be computed with:
@noindent @strong{EXAMPLE}
@float Figure,fig:qn_open_single
-@center @image{qn_open_single,3in}
+@center @image{./qn_open_single,3in}
@caption{Open Queueing Network with a single class of requests}
@end float
@@ -3774,7 +3774,7 @@ University, Feb 15, 1982.
Let us consider the following multiclass QN with three servers and two classes
@float Figure,fig:apl
-@center @image{qn_closed_multi_apl}
+@center @image{./qn_closed_multi_apl}
@end float
Servers 1 and 2 (labeled @emph{APL} and @emph{IMS}, respectively) are
@@ -3834,7 +3834,7 @@ UBLCS-2010-04}, Department of Computer S
Italy, February 2010.
@float Figure,fig:web_model
-@center @image{qn_web_model,3in}
+@center @image{./qn_web_model,3in}
@caption{Three-tier enterprise system model}
@end float
@@ -3911,7 +3911,7 @@ the first row of matrix @var{V}, so @cod
computes @math{\sum_k R_{1,k} V_{1,k}}.
@float Figure,fig:web
-@center @image{web,5in}
+@center @image{./web,5in}
@caption{Throughput and Response Times as a function of the population mix}
@end float
@@ -3927,7 +3927,7 @@ class with higher population exhibits wo
higher contention on the resources.
@float Figure,fig:power
-@center @image{power,5in}
+@center @image{./power,5in}
@caption{System Power as a function of the population mix}
@end float
@@ -3938,7 +3938,7 @@ The example is taken from @ref{Sch82}, a
@ref{fig:class_switching}.
@float Figure,fig:class_switching
-@center @image{qn_closed_multi_cs,3in}
+@center @image{./qn_closed_multi_cs,3in}
@caption{Multiclass Model with Class Switching}
@end float
|