diff options
author | Karl Berry <karl@freefriends.org> | 2008-09-15 15:15:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-09-15 15:15:10 +0000 |
commit | 1d1d45f9b8fba75c6d42975c2c3fd328ddb549a9 (patch) | |
tree | ba8d336687c23a0e91a50820e8af947fffc57558 /Master/texmf-dist/source/latex | |
parent | 6c66396d335eaf45e70b02ce3d961309f8aa4aa2 (diff) |
notes update for figures
git-svn-id: svn://tug.org/texlive/trunk@10607 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex')
-rw-r--r-- | Master/texmf-dist/source/latex/notes/book.layout | 30 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/notes/hand.fig | 15 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/notes/info.fig | 15 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/notes/makedoc | 57 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/notes/makedoc.bat | 46 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/notes/notes.inc | 54 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/notes/warn.fig | 18 |
7 files changed, 0 insertions, 235 deletions
diff --git a/Master/texmf-dist/source/latex/notes/book.layout b/Master/texmf-dist/source/latex/notes/book.layout deleted file mode 100644 index 07b60f430ea..00000000000 --- a/Master/texmf-dist/source/latex/notes/book.layout +++ /dev/null @@ -1,30 +0,0 @@ -#% Do not delete the line below; configure depends on this -# \DeclareLaTeXClass{book} -# Book textclass definition file. Taken from initial LyX source code -# Author : Matthias Ettrich <ettrich@informatik.uni-tuebingen.de> -# Transposed by Pascal André <andre@via.ecp.fr> -# Heavily modifed and enhanced by serveral developers. - -# Input general definitions -Input stdclass.inc -Input notes.inc - -# Global parameters. -Sides 2 -PageStyle Headings - -# There is no abstract environment in book.cls -NoStyle Abstract - -# a few changes to the bibliography -Style Bibliography - TopSep 4 - LabelString Bibliography - # label font definition - LabelFont - Series Bold - Size Huge - EndFont -End - - diff --git a/Master/texmf-dist/source/latex/notes/hand.fig b/Master/texmf-dist/source/latex/notes/hand.fig deleted file mode 100644 index 370a9ea9fe6..00000000000 --- a/Master/texmf-dist/source/latex/notes/hand.fig +++ /dev/null @@ -1,15 +0,0 @@ -#FIG 3.2 -Portrait -Flush left -Metric -A4 -100.00 -Single -0 -1200 2 -0 32 #71928e -0 33 #e7efef -0 34 #d7e3df -0 35 #203c38 -1 4 0 1 -1 31 50 0 20 0.000 1 0.0000 1125 675 225 225 900 675 1350 675 -4 1 -1 40 0 10 34 0.0000 4 135 90 1125 855 !\001 diff --git a/Master/texmf-dist/source/latex/notes/info.fig b/Master/texmf-dist/source/latex/notes/info.fig deleted file mode 100644 index cd4715ff132..00000000000 --- a/Master/texmf-dist/source/latex/notes/info.fig +++ /dev/null @@ -1,15 +0,0 @@ -#FIG 3.2 -Portrait -Flush left -Metric -A4 -100.00 -Single -0 -1200 2 -0 32 #71928e -0 33 #e7efef -0 34 #d7e3df -0 35 #203c38 -1 4 0 1 -1 31 50 0 20 0.000 1 0.0000 1125 675 225 225 900 675 1350 675 -4 1 -1 40 0 10 34 0.0000 4 120 90 1125 855 i\001 diff --git a/Master/texmf-dist/source/latex/notes/makedoc b/Master/texmf-dist/source/latex/notes/makedoc deleted file mode 100644 index 66b77b7f65b..00000000000 --- a/Master/texmf-dist/source/latex/notes/makedoc +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/bash -# -# Everything after a `#' is ignored -# -# remove the string `> /dev/null' if you want more log-output -# remove the line containing `batchmode' if you want even more -# log-information while running LaTeX -# -#----------------- create a `ltxdoc.cfg': -------------------------- - -# Make sure that we start with an clean 'ltxdoc.cfg': -echo "" > ltxdoc.cfg - -# Put here a (comma-separated) list of options to pass to -# class 'article': -C_OPT=a4paper - -# Put here a (comma-separated) list of options to pass to -# package 'notes' (color?): - -if [ -n "$C_OPT" ]; then - echo "\PassOptionsToClass{$C_OPT}{article}" >> ltxdoc.cfg -fi -echo "\\batchmode" >> ltxdoc.cfg - -# The next lines produce full indexes and change logs -# you may not want those (comment the lines out with -# TeX-comment-character '%'!) -cat >> ltxdoc.cfg <<EOF -% \AtBeginDocument{\RecordChanges} -% \AtEndDocument{\PrintChanges} -\AtBeginDocument{\CodelineIndex\EnableCrossrefs} -\AtEndDocument{\PrintIndex} -\AtEndDocument{\addcontentsline{toc}{section}{Index}} -EOF - -# If you do not want any code listings, just documentation, then instead -# of the lines above, uncomment the following: -#echo "\AtBeginDocument{\OnlyDescription}" >> ltxdoc.cfg - -#---------- latex the documentation using `ltxdoc.cfg': -------------- - -ThisDoc=notes.dtx -Base=notes - -echo "1st latex $ThisDoc" -if (latex $ThisDoc > /dev/null); then - echo "2nd latex $ThisDoc" - latex $ThisDoc > /dev/null - - echo "makeindex -s gind.ist $Base.idx" - makeindex -s gind.ist $Base.idx - echo "3rd latex $ThisDoc" - latex $ThisDoc > /dev/null -else - echo "!!! LaTeX ERROR: $ThisDoc. (See $Base.log.)" -fi diff --git a/Master/texmf-dist/source/latex/notes/makedoc.bat b/Master/texmf-dist/source/latex/notes/makedoc.bat deleted file mode 100644 index 44fca73d6b0..00000000000 --- a/Master/texmf-dist/source/latex/notes/makedoc.bat +++ /dev/null @@ -1,46 +0,0 @@ -@echo off
-rem MAKEDOC.BAT (FOR MSDOS)
-
-rem Everything after a `rem' is ignored
-
-
-rem ----------------- create a `ltxdoc.cfg': --------------------------
-
-rem Edit the next line for options to pass to the package notes:
-rem echo \PassOptionsToPackage{color}{notes}" >> ltxdoc.cfg
-
-rem Edit the next line for options to pass to the class:
-echo \PassOptionsToClass{a4paper}{article} > ltxdoc.cfg
-echo \batchmode >> ltxdoc.cfg
-
-rem The next lines produce full indexes and change logs
-rem you may not want those:
-
-rem echo \AtBeginDocument{\RecordChanges} >> ltxdoc.cfg
-rem echo \AtEndDocument{\PrintChanges} >> ltxdoc.cfg
-echo \AtBeginDocument{\CodelineIndex\EnableCrossrefs} >> ltxdoc.cfg
-echo \AtEndDocument{\PrintIndex} >> ltxdoc.cfg
-echo \AtEndDocument{\addcontentsline{toc}{section}{Index}} >> ltxdoc.cfg
-
-rem If you do not want any code listings, just documentation, then instead
-rem of the lines above, uncomment the following:
-
-rem echo \AtBeginDocument{\OnlyDescription} >> ltxdoc.cfg
-
-rem ---------- latex the documentation using `ltxdoc.cfg': --------------
-
-echo 1st latex notes.dtx
-latex notes.dtx
-
-echo 2nd latex notes.dtx
-latex notes.dtx
-
-echo If you don't have Makeindex, exit now!
-echo makeindx -s gind.ist notes.idx
-makeindx -s gind.ist notes.idx
-
-echo 3rd latex notes.dtx
-latex notes.dtx
-
-echo +++++++++++++ all done! ++++++++++++
-
diff --git a/Master/texmf-dist/source/latex/notes/notes.inc b/Master/texmf-dist/source/latex/notes/notes.inc deleted file mode 100644 index 4595110b955..00000000000 --- a/Master/texmf-dist/source/latex/notes/notes.inc +++ /dev/null @@ -1,54 +0,0 @@ -# define the environment lyxcode -Preamble -\usepackage{notes} -EndPreamble - -Style Note - Margin Dynamic - LatexType Environment - LatexName note - NextNoIndent 0 - LeftMargin MMM - RightMargin MMM - ParIndent MM - LabelSep :x - ItemSep 0 - TopSep 0.5 - BottomSep 0.5 - ParSep 0 - Align Block - AlignPossible Block, Left, Right, Center - LabelType Static - LabelString "Note:" - - LabelFont -# Shape SmallCaps - Shape Italic - Series Bold - Color black - EndFont - - TextFont - Color Blue - Shape Italic - EndFont - -End - -Style Information_Note - CopyStyle Note - LatexName informationnote - LabelString "Information: " -End - -Style Important_Note - CopyStyle Note - LatexName importantnote - LabelString "Important: " -End - -Style Warning_Note - CopyStyle Note - LatexName warningnote - LabelString "Warning: " -End diff --git a/Master/texmf-dist/source/latex/notes/warn.fig b/Master/texmf-dist/source/latex/notes/warn.fig deleted file mode 100644 index 69b56e98e98..00000000000 --- a/Master/texmf-dist/source/latex/notes/warn.fig +++ /dev/null @@ -1,18 +0,0 @@ -#FIG 3.2 -Portrait -Flush left -Metric -A4 -100.00 -Single -0 -1200 2 -0 32 #71928e -0 33 #e7efef -0 34 #d7e3df -0 35 #203c38 -6 900 450 1350 900 -1 4 0 1 -1 31 50 0 20 0.000 1 0.0000 1125 675 225 225 900 675 1350 675 -2 2 0 1 -1 -1 40 0 20 0.000 0 0 7 0 0 5 - 967 630 1282 630 1282 720 967 720 967 630 --6 |