summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/notes
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-09-15 15:15:10 +0000
committerKarl Berry <karl@freefriends.org>2008-09-15 15:15:10 +0000
commit1d1d45f9b8fba75c6d42975c2c3fd328ddb549a9 (patch)
treeba8d336687c23a0e91a50820e8af947fffc57558 /Master/texmf-dist/doc/latex/notes
parent6c66396d335eaf45e70b02ce3d961309f8aa4aa2 (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/doc/latex/notes')
-rw-r--r--Master/texmf-dist/doc/latex/notes/book.layout30
-rw-r--r--Master/texmf-dist/doc/latex/notes/hand.fig15
-rw-r--r--Master/texmf-dist/doc/latex/notes/info.fig15
-rw-r--r--Master/texmf-dist/doc/latex/notes/makedoc57
-rwxr-xr-xMaster/texmf-dist/doc/latex/notes/makedoc.bat46
-rw-r--r--Master/texmf-dist/doc/latex/notes/notes.dvibin25508 -> 0 bytes
-rw-r--r--Master/texmf-dist/doc/latex/notes/notes.inc54
-rw-r--r--Master/texmf-dist/doc/latex/notes/notes.pdfbin0 -> 90787 bytes
-rw-r--r--Master/texmf-dist/doc/latex/notes/testnotes.dvibin8416 -> 0 bytes
-rw-r--r--Master/texmf-dist/doc/latex/notes/warn.fig18
10 files changed, 235 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/notes/book.layout b/Master/texmf-dist/doc/latex/notes/book.layout
new file mode 100644
index 00000000000..07b60f430ea
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/notes/book.layout
@@ -0,0 +1,30 @@
+#% 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/doc/latex/notes/hand.fig b/Master/texmf-dist/doc/latex/notes/hand.fig
new file mode 100644
index 00000000000..370a9ea9fe6
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/notes/hand.fig
@@ -0,0 +1,15 @@
+#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/doc/latex/notes/info.fig b/Master/texmf-dist/doc/latex/notes/info.fig
new file mode 100644
index 00000000000..cd4715ff132
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/notes/info.fig
@@ -0,0 +1,15 @@
+#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/doc/latex/notes/makedoc b/Master/texmf-dist/doc/latex/notes/makedoc
new file mode 100644
index 00000000000..66b77b7f65b
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/notes/makedoc
@@ -0,0 +1,57 @@
+#!/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/doc/latex/notes/makedoc.bat b/Master/texmf-dist/doc/latex/notes/makedoc.bat
new file mode 100755
index 00000000000..8940a9f0709
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/notes/makedoc.bat
@@ -0,0 +1,46 @@
+@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/doc/latex/notes/notes.dvi b/Master/texmf-dist/doc/latex/notes/notes.dvi
deleted file mode 100644
index 83962267729..00000000000
--- a/Master/texmf-dist/doc/latex/notes/notes.dvi
+++ /dev/null
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/notes/notes.inc b/Master/texmf-dist/doc/latex/notes/notes.inc
new file mode 100644
index 00000000000..4595110b955
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/notes/notes.inc
@@ -0,0 +1,54 @@
+# 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/doc/latex/notes/notes.pdf b/Master/texmf-dist/doc/latex/notes/notes.pdf
new file mode 100644
index 00000000000..4a7f36efea6
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/notes/notes.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/notes/testnotes.dvi b/Master/texmf-dist/doc/latex/notes/testnotes.dvi
deleted file mode 100644
index 90592c1935d..00000000000
--- a/Master/texmf-dist/doc/latex/notes/testnotes.dvi
+++ /dev/null
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/notes/warn.fig b/Master/texmf-dist/doc/latex/notes/warn.fig
new file mode 100644
index 00000000000..69b56e98e98
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/notes/warn.fig
@@ -0,0 +1,18 @@
+#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