* Added code to release script to generate CTAN-style zip file. git-svn-id: https://tufte-latex.googlecode.com/svn/trunk@57 516e2f36-ce3a-0410-bea4-1d4a03f5df72master
| @@ -1,3 +1,19 @@ | |||||
| == 2.0.0 / 2008-06-06 | |||||
| * Added `sfsidenotes' option to set the sidenotes and captions in the sans | |||||
| serif font. | |||||
| * Use the Palatino fonts if they're installed. | |||||
| * Created `marginfig' and `margintab' environments. | |||||
| * Added running heads. | |||||
| * Fixed the alignment of sidenote numbers. | |||||
| * Added \section and \subsection headings. | |||||
| * Uses the Bera Mono fonts if they're installed. | |||||
| * Added `symmetric' option to produce outside-margin sidenotes in two-sided | |||||
| spreads. | |||||
| * Added `justified' option to set the text fully justified. | |||||
| * Rewrote sample-handout to illustrate the tufte-handout usage and serve as an | |||||
| example of its features. | |||||
| == 1.2.3 / 2008-02-11 | == 1.2.3 / 2008-02-11 | ||||
| * To remove References section from sample-handout. | * To remove References section from sample-handout. | ||||
| @@ -3,6 +3,11 @@ Manifest.txt | |||||
| README.txt | README.txt | ||||
| graphics/nasa_vision_sm.png | graphics/nasa_vision_sm.png | ||||
| graphics/satir_graph.png | graphics/satir_graph.png | ||||
| graphics/helix.asy | |||||
| graphics/sine.asy | |||||
| graphics/hilbertcurves.pdf | |||||
| graphics/helix.pdf | |||||
| graphics/sine.pdf | |||||
| sample-handout.bib | sample-handout.bib | ||||
| sample-handout.pdf | sample-handout.pdf | ||||
| sample-handout.tex | sample-handout.tex | ||||
| @@ -67,11 +67,36 @@ rm -f sample-handout.{aux,log,out,blg,bbl} refresh-sample.log | |||||
| cp sample-handout.pdf sample-handout-$version.pdf | cp sample-handout.pdf sample-handout-$version.pdf | ||||
| # Make bundle | |||||
| # Make bundle for Google Code release | |||||
| mkdir -p pkg/$package-$version | mkdir -p pkg/$package-$version | ||||
| tar cf - `cat Manifest.txt` | ( cd pkg/$package-$version && tar xf - ) | tar cf - `cat Manifest.txt` | ( cd pkg/$package-$version && tar xf - ) | ||||
| zip -rq pkg/$package-$version.zip pkg/$package-$version | |||||
| ( cd pkg && zip -rq $package-$version.zip $package-$version ) | |||||
| # Make bundle for CTAN release | |||||
| TDS_DIR=pkg/$package/tds/ | |||||
| TDS_TEX_DIR=$TDS_DIR/tex/latex/$package/ | |||||
| TDS_DOC_DIR=$TDS_DIR/doc/latex/$package/ | |||||
| TDS_SRC_DIR=$TDS_DIR/source/latex/$package/ | |||||
| mkdir -p $TDS_DIR $TDS_TEX_DIR $TDS_DOC_DIR $TDS_SRC_DIR | |||||
| cp tufte-handout.cls $TDS_TEX_DIR/ | |||||
| cp History.txt README.txt sample-handout.{pdf,tex,bib} $TDS_DOC_DIR/ | |||||
| mkdir $TDS_DOC_DIR/graphics | |||||
| cp graphics/* $TDS_DOC_DIR/graphics/ | |||||
| cp tufte-handout.cls sample-handout.{tex,bib} $TDS_SRC_DIR/ | |||||
| ( cd $TDS_DIR && zip -rq ../../$package-$version/$package.tds.zip * ) | |||||
| rm -fr pkg/$package | |||||
| mv pkg/$package-$version pkg/$package | |||||
| ( cd pkg && zip -rq $package.zip $package ) | |||||
| # Remove our temporary files | |||||
| rm -fr pkg/$package | |||||
| # Provide some cut-n-paste material for manual steps: | # Provide some cut-n-paste material for manual steps: | ||||
| @@ -1,6 +1,6 @@ | |||||
| \NeedsTeXFormat{LaTeX2e}[1994/06/01] | \NeedsTeXFormat{LaTeX2e}[1994/06/01] | ||||
| \ProvidesClass{tufte-handout}[2008/05/16 v2.0.0 Tufte-handout class] | |||||
| \ProvidesClass{tufte-handout}[2008/06/06 v2.0.0 Tufte-handout class] | |||||
| %% | %% | ||||
| % a4paper option | % a4paper option | ||||