[stahel@erna:hk] $  pdfjam --scale 1.3 --offset '0.5cm 0.5cm' rituale1.pdf --outfile rit1.pdf
          ----
  pdfjam: This is pdfjam version 3.03.
  pdfjam: Reading any site-wide or user-specific defaults...
          (none found)
  pdfjam: Effective call for this run of pdfjam:
          /usr/bin/pdfjam --scale '1.3' --offset '0.5cm 0.5cm' --outfile rit1.pdf -- rituale1.pdf - 
  pdfjam: Calling /usr/bin/pdflatex...
  pdfjam: Finished.  Output was written to 'rit1.pdf'.
[stahel@erna:hk] $  pdfjam --scale 1.3 --offset '0.5cm 0.5cm' rituale1.pdf --outfile --landscape rit1.pdf
          ----
  pdfjam: This is pdfjam version 3.03.
  pdfjam: Reading any site-wide or user-specific defaults...
          (none found)
  pdfjam: Effective call for this run of pdfjam:
          /usr/bin/pdfjam --scale '1.3' --offset '0.5cm 0.5cm' --outfile --landscape -- rituale1.pdf - rit1.pdf - 
  pdfjam: Calling /usr/bin/pdflatex...
  pdfjam: Finished.  Output was written to '--landscape'.
[stahel@erna:hk] $ pdfjam --help

pdfjam is a shell-script front end to the LaTeX 'pdfpages' package (for
which, see http://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages).

Usage: pdfjam [OPTIONS] [--] [FILE1 [SEL1]] [FILE2 [SEL2]]...
where
* 'FILE1' etc. are PDF files (JPG and PNG files are also allowed).  For 
   input from /dev/stdin, use the special name '/dev/stdin' in place of any 
   of FILE1, FILE2, etc: this can be mixed with 'real' files as needed, to 
   allow input through a pipe (note that if /dev/stdin is connected to tty, 
   an error results).  If 'FILE1' is absent, pdfjam will use '/dev/stdin' 
   (and will use '-' for the page selection -- see next item).
* 'SEL1' is a page selection for FILE1, etc.
   To select all pages (the default) use '-'.  See the pdfpages manual for
   more details.  An example:
          ... file1 '{},2,4-6,9-' ...
   makes an empty page, followed by pages 2,4,5,6 of file1, followed by pages
   9 onwards (up to the end of file1).
   A page selection can be applied to more than one file, e.g.,
          ... file1 file2 file3 1-7 ...
   applies page selection '1-7' to all three files; but for example
          ... file1 file2 2- file3 1-7 ...
   would apply the page selection '2-' to file1 and file2, and '1-7'
   to file3.  A page selection applies to all the files *immediately*
   preceding it in the argument list.  A missing page selection defaults to 
   '-'; this includes the case where 'FILE1' is absent and so /dev/stdin gets 
   used by default.
* 'options' are pdfpages specifications in the form '--KEY VALUE' (see
   below), or
     --help  (or -h, or -u)
                  Output this text only; no processing of PDF files.
     --configpath
                  Output the 'configpath' variable and exit immediately; no
                  processing of PDF files.
     --version (or -V)
                  Output the version number of pdfjam and exit immediately; no
                  processing of PDF files.
     --quiet  (or -q)
                  Suppress verbose commentary on progress.
     --batch
                  Run pdfjam sequentially on each input file in turn, and
                  produce a separate output file for each input, rather
                  than the default behaviour (which is a single run of
                  pdfjam on all of the input files, producing a single
                  output document).  For the location of output
                  files, see '--outfile'.  The --batch option cannot be
                  used in the case of input from stdin.
     --outfile PATH  (or -o PATH)
                  Specifies where the output file(s) will go.  If PATH is an
                  existing directory, pdfjam will attempt to write its
                  output PDF file(s) there, with name(s) derived from the
                  input file name(s) and the --suffix option (see below).
                  Otherwise the output file will be PATH.  If '/dev/stdin' 
                  is the only or last input file, PATH cannot be a directory.
                  Your current default PATH for output is: 
                  
     --suffix STRING
                  Specifies a suffix for output file names, to be used when
                  --outfile is either (a) a directory, or
                                      (b) not specified in a --batch call.
                  A good STRING should be descriptive: for example,
                           --suffix 'rotated'
                  would append the text '-rotated' to the name of the input
                  file in order to make the output file name, as in
                  'myfile-rotated.pdf'.  The STRING must not have zero
                  length.
                  [Default for you at this site: suffix=]
     --checkfiles
     --no-checkfiles
                  If the Unix 'file' utility is available, with options
                  -L and -b, the output of 'file -Lb FILE1' should be
                  'PDF document...' where '...' gives version information.
                  If this is the case on your system you should use
                  '--checkfiles'; otherwise use '--no-checkfiles',
                  in which case all input PDF files must have .pdf or .PDF
                  as their name extension.
                  [Default for you at this site: checkfiles=]
     --preamble STRING
                  Append the supplied STRING to the preamble of the LaTeX
                  source file(s), immediately before the '\begin{document}'
                  line.  An example:
                      pdfjam --nup 2x2 myfile.pdf -o myfile-4up.pdf \
                          --preamble '\usepackage{fancyhdr} \pagestyle{fancy}'
                  The '--preamble' option can be used, for example, to load 
                  LaTeX packages and/or to set global options.  If '--preamble'
                  is used more than once in the call, the supplied preamble 
                  strings are simply concatenated.  For a note on avoiding
                  clashes, see the PDFjam-README file (also available at
                  http://www.pdfjam.net).
     --keepinfo
     --no-keepinfo
                  Preserve (or not) Title, Author, Subject and Keywords
                  (from the last input PDF file, if more than one) in the
                  output PDF file.  This requires the pdfinfo utility, from
                  the xpdf package, and the LaTeX 'hyperref' package; if
                  either of those is not available, '--keepinfo' is ignored.
                  [Default for you at this site: keepinfo=]
     --pdftitle STRING
     --pdfauthor STRING
     --pdfsubject STRING
     --pdfkeywords STRING
                  Provide text for the  Title, Author, Subject and Keywords
                  in the output PDF file.  Requires the  LaTeX 'hyperref'
                  package.  These options, individually, over-ride --keepinfo.
     --landscape
     --no-landscape
                  Specify landscape page orientation (or not) in the
                  output PDF file.
                  [Default for you at this site: landscape=]
     --twoside
     --no-twoside
                  Specify (or not) the 'twoside' document class option.
                  [Default for you at this site: twoside=]
     --paper PAPERSPEC  (or simply --PAPERSPEC)
                  Specify a LaTeX paper size, for example
                  '--paper a4paper' or simply '--a4paper' for ISO A4 paper.
                  If the LaTeX 'geometry' package is installed, a wider range
                  of paper sizes is available.  For details see documentation
                  for LaTeX and/or the 'geometry' package.
                  [Default for you at this site: paper=]
     --papersize '{WIDTH,HEIGHT}'
                  Specify a custom paper size, e.g.,
                      --papersize '{10in,18cm}'
                  (Note the braces, and the comma!)
                  If the 'geometry' package is not found, this has no effect.
     --pagecolor RGBSPEC
                  Specify a background colour for the output pages.  The 
                  RGBSPEC must be a comma-separated trio of integers
                  between 0 and 255.  An example:
                         --pagecolor 150,200,150
                  [Default is no background colour]
     --tidy
     --no-tidy
                  Specify whether the temporary directory created by
                  pdfjam should be deleted.  Use '--no-tidy' to help debug
                  most errors.
                  [Default for you at this site: tidy=]
     --latex PATHTOLATEX
                  Specify the LaTeX engine to be used (one of pdflatex,
		  xelatex, lualatex).  The PATHTOLATEX string must be
		  the full path to a suitable LaTeX executable (for example
		  /usr/bin/xelatex on many unix systems).
		  [Default for you at this site: latex=]
     --runs N
                  Run latex N times, for each output document made. 
                  [Default for you at this site: runs=]
     --vanilla
                  Suppress the reading of any site-wide or user-specific
                  configuration files.
     --KEY VALUE
                  Specify options to '\includepdfmerge', in the LaTeX
                  'pdfpages' package.  Here KEY is the name of any of the
                  many options for '\includepdfmerge', and VALUE is a
                  corresponding value.  Examples are
                      --nup 2x1     (for 2-up side-by-side imposition)
                      --scale 0.7   (to scale all input pages to 70% size)
                      --offset '1cm 0.5cm'
                                    (to offset all pages -- note the quotes!)
                      --frame true  (to put a frame round each input page)
                      --trim '1cm 2cm 1cm 2cm' --clip true
                                    (to trim those amounts from left, bottom,
                                     right and top, respectively, of input 
                                     pages) 
                  etc., etc.  For more information see the manual for
                  the 'pdfpages' package, at
                  http://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages
* '--' can be used to signal that there are no more options to come.

Defaults for the options '--suffix', '--keepinfo', '--paper', '--outfile', 
'--landscape', '--twoside', '--tidy', '--latex', '--runs', '--checkfiles'
and '--preamble' can be set in site-wide or user-specific configuration files.
The path that is searched for site-wide configuration files (named pdfjam.conf)
at this installation is
    /etc:/usr/share/etc:/usr/local/share:/usr/local/etc
This configuration path can be changed by editing the pdfjam script if
necessary.  Any user-specific configuration should be put in a file named
.pdfjam.conf in your home directory.  (All of these files are ignored
if the '--vanilla' argument is used.)

For more information, including a sample configuration file, see
https://github.com/DavidFirth/pdfjam.

[stahel@erna:hk] $  pdfjam --scale 1.3 --offset '0.5cm 0.5cm' rituale1.pdf  --landscape --outfile rit1.pdf
          ----
  pdfjam: This is pdfjam version 3.03.
  pdfjam: Reading any site-wide or user-specific defaults...
          (none found)
  pdfjam: Effective call for this run of pdfjam:
          /usr/bin/pdfjam --scale '1.3' --offset '0.5cm 0.5cm' --landscape --outfile rit1.pdf -- rituale1.pdf - 
  pdfjam: Calling /usr/bin/pdflatex...
  pdfjam: Finished.  Output was written to 'rit1.pdf'.
[stahel@erna:hk] $ cd ~/sk/kg
[stahel@erna:kg] $ pdfjam bericht-rechnungen-kg.pdf ../buchhaltung/jahresabschluesse/betrieb22-bilanz.pdf ../buchhaltung/jahresabschluesse/gemeinnuetzig22-bilanz.pdf --outfile bericht-kip.pdf
          ----
  pdfjam: This is pdfjam version 3.03.
  pdfjam: Reading any site-wide or user-specific defaults...
          (none found)
  pdfjam: Effective call for this run of pdfjam:
          /usr/bin/pdfjam --outfile bericht-kip.pdf -- bericht-rechnungen-kg.pdf - ../buchhaltung/jahresabschluesse/betrieb22-bilanz.pdf - ../buchhaltung/jahresabschluesse/gemeinnuetzig22-bilanz.pdf - 
  pdfjam: Calling /usr/bin/pdflatex...
  pdfjam: Finished.  Output was written to 'bericht-kip.pdf'.
[stahel@erna:kg] $ pdfjam bericht-rechnungen-kg.pdf ../buchhaltung/jahresabschluesse/betrieb22-bilanz.pdf ../buchhaltung/jahresabschluesse/gemeinnuetzig22-bilanz.pdf ../buchhaltung/jahresabschluesse/revisionsbericht23.pdf --outfile bericht-kip.pdf
          ----
  pdfjam: This is pdfjam version 3.03.
  pdfjam: Reading any site-wide or user-specific defaults...
          (none found)
  pdfjam: Effective call for this run of pdfjam:
          /usr/bin/pdfjam --outfile bericht-kip.pdf -- bericht-rechnungen-kg.pdf - ../buchhaltung/jahresabschluesse/betrieb22-bilanz.pdf - ../buchhaltung/jahresabschluesse/gemeinnuetzig22-bilanz.pdf - ../buchhaltung/jahresabschluesse/revisionsbericht23.pdf - 
  pdfjam: Calling /usr/bin/pdflatex...
  pdfjam: Finished.  Output was written to 'bericht-kip.pdf'.
[stahel@erna:kg] $ cd ~/sk/buchhaltung/jahresabschluesse/
[stahel@erna:jahresabschluesse] $ grep Hauseig ./*
grep: ./old: Is a directory
[stahel@erna:jahresabschluesse] 2 $ cd ~/pkg
[stahel@erna:pkg] $ svn up
Updating '.':
stahel@svn.r-forge.r-project.org's password: 
Restored 'plgraphics/vignettes/pl-description.tex'
Restored 'plgraphics/vignettes/pl-description.log'
U    lassogrp/man/lasso.Rd
U    lassogrp/man/lassogrp-package.Rd
U    lassogrp/man/extract.lassogrp.Rd
U    lassogrp/man/lassoControl.Rd
U    lassogrp/man/plot.lassogrp.Rd
U    lassogrp/NAMESPACE
U    lassogrp/R/lassogrp.R
U    lassogrp/DESCRIPTION
U    lassogrp/vignettes/lassogrp.Rnw
U    lassogrp/tests/test_extractor.R
U    plgraphics/R/pl.R
U    plgraphics/data/d.babysurvival.rda
U    plgraphics/data/d.birthrates.rda
U    plgraphics/data/d.fossileSamples.rda
U    plgraphics/data/d.fossileShapes.rda
U    plgraphics/data/d.pollZH16.rda
U    plgraphics/data/d.pollZH16d.rda
U    plgraphics/data/d.river.rda
U    regr/.Rbuildignore
U    regr/NAMESPACE
U    regr/man/modelTable.Rd
U    regr/man/createNAvars.Rd
U    regr/man/drop1.regr.Rd
U    regr/man/regr-package.Rd
U    regr/man/regr.Rd
U    regr/man/regr.control.Rd
U    regr/man/regrAllEqns.Rd
U    regr/man/step.regr.Rd
U    regr/man/terms2order.Rd
C    relevance/man/replication.Rd
D    relevance/inst/doc/replication-termsSucStrat-withfigs.pdf
A    relevance/inst/doc/replication-termsSucStrat-withfigs.pdf
G    relevance/R/relevance.R
U    relevance/DESCRIPTION
Updated to revision 258.
Summary of conflicts:
  Text conflicts: 1
Merge conflict discovered in file 'relevance/man/replication.Rd'.
Select: (p) Postpone, (df) Show diff, (e) Edit file, (m) Merge,
        (s) Show all options: df
df
--- relevance/man/replication.Rd.r258	- THEIRS
+++ relevance/man/replication.Rd	- MERGED
@@ -43,8 +43,14 @@
 }
 \author{Werner A. Stahel}
 
+<<<<<<< .mine
+\seealso{\code{\link{relevance}}
+||||||| .r251
+\seealso{\code{\link{relevance}}}
+=======
 \seealso{
   \code{\link{relevance}}
+>>>>>>> .r258
 }
 \examples{
 data(d.osc15Onesample)
Select: (p) Postpone, (df) Show diff, (e) Edit file, (m) Merge,
        (r) Mark as resolved, (s) Show all options: s
s

  (p)  - skip this conflict and leave it unresolved  [postpone]
  (tf) - accept incoming version of entire file  [theirs-full]
  (mf) - reject all incoming changes for this file  [mine-full]
  (tc) - accept incoming changes only where they conflict  [theirs-conflict]
  (mc) - reject incoming changes which conflict and accept the rest  [mine-conflict]
  (r)  - accept the file as it appears in the working copy  [working]
  (q)  - postpone all remaining conflicts
  (e)  - change merged file in an editor  [edit]
  (df) - show all changes made to merged file
  (dc) - show all conflicts (ignoring merged version)
  (m)  - use merge tool to resolve conflict
  (l)  - launch external merge tool to resolve conflict  [launch]
  (i)  - use built-in merge tool to resolve conflict
  (s)  - show this list (also 'h', '?')
Words in square brackets are the corresponding --accept option arguments.

Select: (p) Postpone, (df) Show diff, (e) Edit file, (m) Merge,
        (r) Mark as resolved, (s) Show all options: tf
tf
Merge conflicts in 'relevance/man/replication.Rd' marked as resolved.
Summary of conflicts:
  Text conflicts: 0 remaining (and 1 already resolved)
[stahel@erna:pkg] $ R CMD build relevance
* checking for file ‘relevance/DESCRIPTION’ ... OK
* preparing ‘relevance’:
* checking DESCRIPTION meta-information ... OK
* installing the package to process help pages
      -----------------------------------
* installing *source* package ‘relevance’ ...
** using staged installation
** R
** data
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
  converting help for package ‘relevance’
    finding HTML links ... done
    asinp                                   html  
    confintF                                html  
    correlation                             html  
    d.blast                                 html  
    d.everest                               html  
    d.negposChoice                          html  
    d.osc15                                 html  
    d.osc15Onesample                        html  
    drop1Wald                               html  
    dropNA                                  html  
    dropdata                                html  
    formatNA                                html  
    getcoeftable                            html  
    inference                               html  
    last                                    html  
    logst                                   html  
    ovarian                                 html  
    plconfint                               html  
    plot.inference                          html  
    print.inference                         html  
    relevance-internal                      html  
    relevance-package                       html  
    relevance.options                       html  
    replication                             html  
    rlvClass                                html  
    rplClass                                html  
    shortenstring                           html  
    showd                                   html  
    sumNA                                   html  
    termeffects                             html  
    termtable                               html  
    twosamples                              html  
** building package indices
** installing vignettes
   ‘relevance-descr.Rnw’ using ‘UTF-8’ 
Error in dyn.load(file, DLLpath = DLLpath, ...) : 
  unable to load shared object '/scratch/local/app/R/R_Libraries/main/4.1/stringi/libs/stringi.so':
  libicui18n.so.67: cannot open shared object file: No such file or directory
ERROR: installing vignettes failed
* removing ‘/tmp/RtmpeSwGiE/Rinst184b241c7cdf8d/relevance’
      -----------------------------------
ERROR: package installation failed
[stahel@erna:pkg] 1 $ R CMD build --no-build-vignettes relevance
* checking for file ‘relevance/DESCRIPTION’ ... OK
* preparing ‘relevance’:
* checking DESCRIPTION meta-information ... OK
* installing the package to process help pages
      -----------------------------------
* installing *source* package ‘relevance’ ...
** using staged installation
** R
** data
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
  converting help for package ‘relevance’
    finding HTML links ... done
    asinp                                   html  
    confintF                                html  
    correlation                             html  
    d.blast                                 html  
    d.everest                               html  
    d.negposChoice                          html  
    d.osc15                                 html  
    d.osc15Onesample                        html  
    drop1Wald                               html  
    dropNA                                  html  
    dropdata                                html  
    formatNA                                html  
    getcoeftable                            html  
    inference                               html  
    last                                    html  
    logst                                   html  
    ovarian                                 html  
    plconfint                               html  
    plot.inference                          html  
    print.inference                         html  
    relevance-internal                      html  
    relevance-package                       html  
    relevance.options                       html  
    replication                             html  
    rlvClass                                html  
    rplClass                                html  
    shortenstring                           html  
    showd                                   html  
    sumNA                                   html  
    termeffects                             html  
    termtable                               html  
    twosamples                              html  
** building package indices
** installing vignettes
   ‘relevance-descr.Rnw’ using ‘UTF-8’ 
Error in dyn.load(file, DLLpath = DLLpath, ...) : 
  unable to load shared object '/scratch/local/app/R/R_Libraries/main/4.1/stringi/libs/stringi.so':
  libicui18n.so.67: cannot open shared object file: No such file or directory
ERROR: installing vignettes failed
* removing ‘/tmp/Rtmp5G1WkY/Rinst184d09734134/relevance’
      -----------------------------------
ERROR: package installation failed
[stahel@erna:pkg] 1 $ echo 'library(stringi); sessionInfo()' | R -s --no-save
Error: package or namespace load failed for ‘stringi’ in dyn.load(file, DLLpath = DLLpath, ...):
 unable to load shared object '/scratch/local/app/R/R_Libraries/main/4.1/stringi/libs/stringi.so':
  libicui18n.so.67: cannot open shared object file: No such file or directory
Execution halted
[stahel@erna:pkg] 1 $ module purge
R CMD build --no-build-vignettes relevance
[stahel@erna:pkg] $ * checking for file ‘relevance/DESCRIPTION’ ... OK
* preparing ‘relevance’:
* checking DESCRIPTION meta-information ... OK
* installing the package to process help pages
* saving partial Rd database
* checking for LF line-endings in source and make files and shell scripts
* checking for empty or unneeded directories
* looking to see if a ‘data/datalist’ file should be added
* building ‘relevance_2.0.tar.gz’

[stahel@erna:pkg] $ R CMD build --no-build-vignettes plgraphics
* checking for file ‘plgraphics/DESCRIPTION’ ... OK
cp: cannot stat 'plgraphics/div/tana/.#plgraphics_new_warnings.R': No such file or directory
 ERROR
copying to build directory failed
[stahel@erna:pkg] 1 $ R CMD build --no-build-vignettes plgraphics
* checking for file ‘plgraphics/DESCRIPTION’ ... OK
* preparing ‘plgraphics’:
* checking DESCRIPTION meta-information ... OK
* checking for LF line-endings in source and make files and shell scripts
* checking for empty or unneeded directories
* looking to see if a ‘data/datalist’ file should be added
* building ‘plgraphics_1.1.tar.gz’

[stahel@erna:pkg] $ R CMD build --no-build-vignettes relevance
* checking for file ‘relevance/DESCRIPTION’ ... OK
* preparing ‘relevance’:
* checking DESCRIPTION meta-information ... OK
* installing the package to process help pages
* saving partial Rd database
* checking for LF line-endings in source and make files and shell scripts
* checking for empty or unneeded directories
* looking to see if a ‘data/datalist’ file should be added
* building ‘relevance_2.0.tar.gz’

[stahel@erna:pkg] $ cd relevance/vignettes/
[stahel@erna:vignettes] $ ls
'#relevance-descr.Rnw#'            relevance-descr.Rnw~
'#relevance-descr.log#'            relevance-descr.aux
 R.Rproj                           relevance-descr.log
 auto                              relevance-descr.pdf
 figure                            relevance-descr.sty
 relevance-descr-concordance.tex   relevance-descr.sty~
 relevance-descr.R                 relevance-descr.tex
 relevance-descr.Rnw               relevance-descr.tex~
[stahel@erna:vignettes] $ grep Zero ./*
./#relevance-descr.Rnw#:\Tit{The Zero Hypothesis Testing Paradox.}
./#relevance-descr.Rnw#:meaningful as seen by the ``Zero Hypothesis Testing Paradox'':
grep: ./auto: Is a directory
grep: ./figure: Is a directory
./relevance-descr.Rnw:\Tit{The Zero Hypothesis Testing Paradox.}
./relevance-descr.Rnw:meaningful as seen by the ``Zero Hypothesis Testing Paradox'':
./relevance-descr.Rnw~:\Tit{The Zero Hypothesis Testing Paradox.}
./relevance-descr.Rnw~:meaningful as seen by the ``Zero Hypothesis Testing Paradox'':
./relevance-descr.tex:\Tit{The Zero Hypothesis Testing Paradox.}
./relevance-descr.tex:meaningful as seen by the ``Zero Hypothesis Testing Paradox'':
./relevance-descr.tex~:\Tit{The Zero Hypothesis Testing Paradox.}
./relevance-descr.tex~:meaningful as seen by the ``Zero Hypothesis Testing Paradox'':
[stahel@erna:vignettes] 2 $ 
