Displaying 1 result from an estimated 1 matches for "numberpages".
2003 Jul 25
0
Sweave and Printing Lattice Figures From Loop
...Thus the
# list called 'created' is correctly ordered
# I hve nine known figures in my 'real' Sweave
# file --- can on anything
# probably NumberFigures+1 is good
# The following is used to discove how many
# pages were produced from the known number of
# of figures
NumberPages <- length(created)
FileNameLength <- unlist(lapply(created,nchar))
# Use this to take advantage of that fact
# that file names with the same number of
# characters are pages to a given
UniqueLength <- unique(FileNameLength)
# unique length = base figure count
PagesPerFigu...