From adfd13750eee8907c2099e4834283d8f74e110a0 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Sat, 3 Jan 2015 23:21:30 +0000 Subject: rm older versions of case-insensitive clashes, sigh git-svn-id: svn://tug.org/texlive/trunk@35953 c570f23f-e606-0410-a88d-b1316a301751 --- .../latexmk/example_rcfiles/sweave_latexmkrc | 57 ---------------------- .../latexmk/example_rcfiles/tex4ht-latexmkrc | 33 ------------- 2 files changed, 90 deletions(-) delete mode 100644 Master/texmf-dist/doc/support/latexmk/example_rcfiles/sweave_latexmkrc delete mode 100644 Master/texmf-dist/doc/support/latexmk/example_rcfiles/tex4ht-latexmkrc diff --git a/Master/texmf-dist/doc/support/latexmk/example_rcfiles/sweave_latexmkrc b/Master/texmf-dist/doc/support/latexmk/example_rcfiles/sweave_latexmkrc deleted file mode 100644 index 19f046be6be..00000000000 --- a/Master/texmf-dist/doc/support/latexmk/example_rcfiles/sweave_latexmkrc +++ /dev/null @@ -1,57 +0,0 @@ -# This is to allow the use of Sweave with latexmk, and in addition to -# make synctex work properly with it. -# SEE THE IMPORTANT NOTES below. -# -# Sweave (http://www.stat.uni-muenchen.de/~leisch/Sweave/) is a tool -# that allows to embed the R code for complete data analyses in latex -# documents. The user edits a file with an extension like .Rnw, and -# the .tex file is generated from this. -# -# Four problems are solved by the code below: -# 1. Generate the .tex file automatically. -# 2. Arrange not to re-run unmodified chunks of R code. (A pure -# optimization.) -# 3. Fix the execution environment for (pdf)latex. -# 4. Deal with synctex: If the user wants to use synctex -# (www.tug.org/TUGboat/tb29-3/tb93laurens.pdf) to synchronize the -# pdf file with the source file, by default synctex does the -# synchronization with the generated .tex file, not the original -# source file. Postprocessing of the .synctex.gz file is necessary -# to fix this. -# -# The following version was worked out and tested by a user (thanks -# to Brian Beitzel) on MSWindows. It will need at least one change to -# work on UNIX-like operating systems (which include Linux and OS-X). - -# N.B. ===> IMPORTANT NOTES <=== -# -# 1. The patchDVI package for R needs to be installed from R-Forge, as -# follows: -# -# install.packages("patchDVI", repos="http://R-Forge.R-project.org") -# -# 2. In all Sweave (.Rnw) documents, the following lines must be included: -# -# \usepackage{Sweave} -# \SweaveOpts{concordance=TRUE} - - -# Fix the pdflatex command to run Sweave first, and to postprocess the -# .synctex.gz file: -# !!!!! THIS IS THE VERSION FOR MS-WINDOWS, with && as a command -# separator -$pdflatex = "cmd /c " - . "Rscript -e \"library(cacheSweave); setCacheDir(getwd()); " - . "Sweave('%S', driver=cacheSweaveDriver)\"" - . " && R CMD pdflatex -interaction=nonstopmode -synctex=1 %O %B.tex" - . " && Rscript -e " - . "\"library('patchDVI');patchSynctex('%B.synctex.gz')\""; -# -# !!!TO FIX THIS FOR Linux/OS-X/UNIX, try uncommenting the following: -# (this version hasn't been tested). -#$pdflatex = "Rscript -e \"library(cacheSweave); setCacheDir(getwd()); " -# . "Sweave('%S', driver=cacheSweaveDriver)\"" -# . " ; R CMD pdflatex -interaction=nonstopmode -synctex=1 %O %B.tex" -# . " ; Rscript -e " -# . "\"library('patchDVI');patchSynctex('%B.synctex.gz')\""; - diff --git a/Master/texmf-dist/doc/support/latexmk/example_rcfiles/tex4ht-latexmkrc b/Master/texmf-dist/doc/support/latexmk/example_rcfiles/tex4ht-latexmkrc deleted file mode 100644 index de486d8d8be..00000000000 --- a/Master/texmf-dist/doc/support/latexmk/example_rcfiles/tex4ht-latexmkrc +++ /dev/null @@ -1,33 +0,0 @@ -# Sometime in the future, latexmk will directly support the use of -# TeX4ht to obtain html from tex. Meanwhile, here is how to use -# latexmk with TeX4ht. There is a script htlatex supplied by the -# TeX4ht package: It simply runs latex a fixed number of times and -# then the programs tex4ht and t4ht. To use latexmk to get optimal -# processing use the following instructions (under UNIX-like operating -# systems, e.g., OS-X and linux): -# -# 1. Put the scripts htlatexonly and myhtlatex2 somewhere in the PATH -# for executables (and make sure they have excutable permissions -# set). -# 2. Set up an initialization file for latexmk like this one. -# -# 3. To process file.tex to make file.html, run -# -# myhtlatex2 file -# - -# Since these instructions use scripts that are UNIX shell scripts, -# the instructions work as written for UNIX-like operating -# systems. Users of other operating systems will have to adjust them -# and modify the scripts suitably. - - -warn "latexmkrc for htlatex\n"; - -$dvi_mode = 1; -$pdf_mode = 0; -$quote_filenames = 0; -$latex = 'htlatexonly %S'; - -$clean_ext .= ' 4ct 4tc idv lg tmp xref'; -$clean_full_ext .= ' css html'; -- cgit v1.2.3