diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1998-02-04 12:15:46 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1998-02-04 12:15:46 +0000 |
commit | 67956e16d614fdaa482289952c6abb16ad141dd8 (patch) | |
tree | 6b97c7a0a63ac9acecf76ab6d5e4ab4db7922c55 /print/xtem/files | |
parent | fba64837e6d6d43e3ea23d2495b72d6bf27fc725 (diff) | |
download | freebsd-ports-67956e16d614fdaa482289952c6abb16ad141dd8.zip |
Import xtem port. xtem is an X11 frontend to TeX & friends.
PR: 3759
Submitted by: Peter Cornelius <pc@inr.fzk.de>
Diffstat (limited to 'print/xtem/files')
31 files changed, 573 insertions, 0 deletions
diff --git a/print/xtem/files/Makefile b/print/xtem/files/Makefile new file mode 100644 index 000000000000..2b90741abe2e --- /dev/null +++ b/print/xtem/files/Makefile @@ -0,0 +1,22 @@ +all: changecode + +install: all + install -c -s -g bin -o bin -m 755 changecode ${PREFIX}/bin + install -c -g bin -o bin -m 755 xtem ${PREFIX}/bin + install -c -g bin -o bin -m 644 xtem.1 ${PREFIX}/man/man1 + @echo "Installing files into ${PREFIX}/share/xtem..." + @mkdir -p ${PREFIX}/share/xtem + @tar -cf - . | (cd ${PREFIX}/share/xtem; \ + tar -x --exclude *.orig --exclude *.bak --exclude changecode -f -) + @echo "Installing local files..." + @mv ${PREFIX}/share/xtem/locals_english.LRW ${PREFIX}/share/xtem_locals_english + @mv ${PREFIX}/share/xtem/locals_german.LRW ${PREFIX}/share/xtem_locals_german + @rm -f ${PREFIX}/share/xtem/locals_english + @ln -sf ../xtem_locals_english ${PREFIX}/share/xtem/locals_english + @rm -f ${PREFIX}/share/xtem/locals_german + @ln -sf ../xtem_locals_german ${PREFIX}/share/xtem/locals_german + @echo "Fix ownership and permissions..." + @chown -R bin:bin ${PREFIX}/share/xtem \ + ${PREFIX}/share/xtem_locals_english \ + ${PREFIX}/share/xtem_locals_german + diff --git a/print/xtem/files/makemsg.txt b/print/xtem/files/makemsg.txt new file mode 100644 index 000000000000..54ccdf3edbc6 --- /dev/null +++ b/print/xtem/files/makemsg.txt @@ -0,0 +1,10 @@ + Obviously, xtem (as an X11 frontend) for TeX is quite useless + without TeX. By default, though, there's no check in this port for + it in order to avoid space problems during build. You can activate + it by typing "make BUILD_IT_ALL=yes ..." instead of just "make + ...". In that case, the existence of tex will be checked for and + "teTeX-0.4" will be installed when it can't be found. In addition, + "gv" (a "nicer" version of ghostview) will be checked for and + installed as well, if not found. + + Happy TeXing, Peter Cornelius <pc@akk.uni-karlsruhe.de> diff --git a/print/xtem/files/patch-aa b/print/xtem/files/patch-aa new file mode 100644 index 000000000000..f92d543795a3 --- /dev/null +++ b/print/xtem/files/patch-aa @@ -0,0 +1,29 @@ +--- xtem.orig Mon Nov 10 15:04:09 1997 ++++ xtem Thu Nov 20 18:17:51 1997 +@@ -10,21 +10,21 @@ + # touch xtemInstalled + + ##### command to call wishx (must include Tcl, Tk and TclX) +-wishcall="/usr/local/bin/wishx" ++wishcall=@WISHX@ + + ##### command to call tcl (pure Tcl, without Tk) +-tclcall="/usr/local/bin/tcl" ++tclcall=@TCLSH@ + + ##### path in which xtem is installed: + ##### can be set by the environment variable XTEMPATH; + ##### if XTEMPATH doesn't exist, it will be set to the following default value: +-: ${XTEMPATH=${XTEMPATH-/usr/local/lib/tex/xtem}} ++: ${XTEMPATH=${XTEMPATH-@XTEMPATH@}} + ##### (i.e. files /usr/local/lib/tex/xtem/*.tcl will be found) + + ##### one of the following language defining lines must be made active! + #defaultlanguage="german" +-#defaultlanguage="english" +-defaultlanguage="german" ++defaultlanguage="english" ++#defaultlanguage="german" + + if [ ! -d "$XTEMPATH" ] + then diff --git a/print/xtem/files/patch-ab b/print/xtem/files/patch-ab new file mode 100644 index 000000000000..84f0bf24e569 --- /dev/null +++ b/print/xtem/files/patch-ab @@ -0,0 +1,14 @@ +--- locals_english.LRW/mkcommand.vst.orig Tue Jan 13 13:52:13 1998 ++++ locals_english.LRW/mkcommand.vst Wed Feb 4 11:52:40 1998 +@@ -1,9 +1,8 @@ + @ Tcl_7.3 @ Tcl_7.4 @ Tcl_7.5 @ Tcl_7.6 @ Tcl_8.0 +-*** delete this line, rearrange following lines (see Installation.tex) @ mkcommand.9 @ mkcommand.9 @ mkcommand.9 @ mkcommand.9 @ mkcommand.9 ++high performancy (Tcl command used: pipe) @ @ mkcommand.7 @ mkcommand.7 @ mkcommand.7 @ mkcommand.7 ++high performancy (Tcl command used: open "|...|& cat" ) @ @ mkcommand.6 @ mkcommand.6 @ mkcommand.6 @ mkcommand.6 + high performancy (does not work under BSD based Unix) @ mkcommand.3 @ @ @ @ + high performancy @ @ mkcommand.3 @ @ @ +-high performancy (Tcl command used: open "|...|& cat" ) @ @ mkcommand.6 @ mkcommand.6 @ mkcommand.6 @ mkcommand.6 +-high performancy (Tcl command used: pipe) @ @ mkcommand.7 @ mkcommand.7 @ mkcommand.7 @ mkcommand.7 + efficient (does not work under BSD based unix) @ mkcommand.2 @ mkcommand.2 @ @ @ + less efficient if much output is to be displayed (all systems) @ mkcommand.1 @ mkcommand.1 @ mkcommand.1 @ mkcommand.1 @ + a permanent xterm window will be generated (most systems) @ mkcommand.4 @ mkcommand.4 @ mkcommand.4 @ mkcommand.4 @ mkcommand.4 diff --git a/print/xtem/files/patch-ac b/print/xtem/files/patch-ac new file mode 100644 index 000000000000..f7c29e585096 --- /dev/null +++ b/print/xtem/files/patch-ac @@ -0,0 +1,15 @@ +--- locals_english.LRW/editor.vst.orig Tue Jan 13 13:52:13 1998 ++++ locals_english.LRW/editor.vst Wed Feb 4 11:56:34 1998 +@@ -5,6 +5,12 @@ + emacs @ @ emacs @ + vi& @ \ + xterm +sb -title "vi $ed_file" -e @ vi& @ ++xemacs& @ @ xemacs& @ ++xemacs @ @ xemacs @ ++xemacs& 80x60 (cols x lines) @ @ xemacs& @ \ ++ -font lucidasanstypewriter-bold-12 -geometry 80x60+210+0 ++xemacs 80x60 (cols x lines) @ @ xemacs @ \ ++ -font lucidasanstypewriter-bold-12 -geometry 80x60+210+0 + vi @ \ + xterm +sb -title "vi $ed_file" -e @ vi @ + vi& (read only) @ \ diff --git a/print/xtem/files/patch-ad b/print/xtem/files/patch-ad new file mode 100644 index 000000000000..00e3b0a0d74a --- /dev/null +++ b/print/xtem/files/patch-ad @@ -0,0 +1,7 @@ +--- locals_english.LRW/logsuffix.vst.orig Tue Jan 13 13:52:13 1998 ++++ locals_english.LRW/logsuffix.vst Wed Feb 4 11:56:50 1998 +@@ -1,3 +1,3 @@ + .log logfile from TeX run +-.ilg logfile from makindex run ++.ilg logfile from makeindex run + .blg logfile from BibTeX run diff --git a/print/xtem/files/patch-ae b/print/xtem/files/patch-ae new file mode 100644 index 000000000000..43503dca227b --- /dev/null +++ b/print/xtem/files/patch-ae @@ -0,0 +1,19 @@ +--- locals_english.LRW/preview.vst.orig Tue Jan 13 13:52:13 1998 ++++ locals_english.LRW/preview.vst Wed Feb 4 11:57:14 1998 +@@ -1,4 +1,16 @@ + @ ++gv& (in background) @ ghostview& @ .ps @ -center -magstep -1 @ \ ++ letter_portrait{-t letter}{-letter}, \ ++ letter_landscape{-t letter -t landscape}{-letter -swap -landscape}, \ ++ legal_portrait{-t legal}{-legal}, \ ++ legal_landscape{-t legal -t landscape}{-legal -swap -landscape}, \ ++ A4_portrait{}{-a4},A4_landscape{-t landscape}{-a4 -swap -landscape} ++gv (in foreground) @ ghostview @ .ps @ -center -magstep -1 @ \ ++ letter_portrait{-t letter}{-letter}, \ ++ letter_landscape{-t letter -t landscape}{-letter -swap -landscape}, \ ++ legal_portrait{-t legal}{-legal}, \ ++ legal_landscape{-t legal -t landscape}{-legal -swap -landscape}, \ ++ A4_portrait{}{-a4},A4_landscape{-t landscape}{-a4 -swap -landscape} + xdvi& (in background) @ xdvi& @ .dvi @ @ \ + letter_portrait{}{-paper us -keep},letter_landscape{}{-paper usr -keep}, \ + legal_portrait{}{-paper legal -keep}, \ diff --git a/print/xtem/files/xtem_locals_german/bibtex.vst b/print/xtem/files/xtem_locals_german/bibtex.vst new file mode 100644 index 000000000000..ad06ef426f31 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/bibtex.vst @@ -0,0 +1,8 @@ + @ +bibtex @ bibtex @ \ + +bibview @ bibview @ -file \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/cleanup.vst b/print/xtem/files/xtem_locals_german/cleanup.vst new file mode 100644 index 000000000000..04e8bf0f7dd4 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/cleanup.vst @@ -0,0 +1,38 @@ + @ +XtemQuickDirty.* @ 1 \ + +*~ @ 1 \ + +*.aux @ 1 \ + +*.bak @ 1 \ + +*.bbl @ 0 \ + +*.blg @ 1 \ + +*.dvi @ 0 \ + +*.glo @ 1 \ + +*.idx @ 1 \ + +*.ilg @ 1 \ + +*.ind @ 0 \ + +*.lof @ 1 \ + +*.log @ 1 \ + +*.lot @ 1 \ + +*.ps @ 0 \ + +*.toc @ 1 \ + +*.wb-erg @ 1 \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/editor.vst b/print/xtem/files/xtem_locals_german/editor.vst new file mode 100644 index 000000000000..5d31bcdb8110 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/editor.vst @@ -0,0 +1,40 @@ + @ +xemacs& 80x60 (Spalten x Zeilen) @ @ xemacs & @ -geometry 80x60+210+0 \ + +xemacs 80x60 (Spalten x Zeilen) @ @ xemacs @ -geometry 80x60+210+0 \ + +xmacs& @ @ exmacs& @ \ + +xmacs @ @ exmacs @ \ + +vi& @ xterm +sb -title "vi $ed_file" -e @ vi& @ \ + +vi @ xterm +sb -title "vi $ed_file" -e @ vi @ \ + +vi& (nur lesen) @ xterm +sb -title "vi $ed_file" -e @ vi& @ -R \ + +vi (nur lesen) @ xterm +sb -title "vi $ed_file" -e @ vi @ -R \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + +nedit& @ @ nedit& @ \ + +nedit @ @ nedit @ \ + +e& TenPlus-Editor @ @ e& @ \ + +e TenPlus-Editor @ @ e @ \ + +gvim& @ @ gvim& @ \ + +textedit& @ @ textedit& @ \ + +emacs& @ @ emacs& @ \ + +emacs @ @ emacs @ \ + +emacs& 80x60 (SpaltenxZeilen) @ @ emacs& @ -font lucidasanstypewriter-bold-12 -geometry 80x60+210+0 \ + +emacs 80x60 (SpaltenxZeilen) @ @ emacs @ -font lucidasanstypewriter-bold-12 -geometry 80x60+210+0 \ + diff --git a/print/xtem/files/xtem_locals_german/index.vst b/print/xtem/files/xtem_locals_german/index.vst new file mode 100644 index 000000000000..df03923a6364 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/index.vst @@ -0,0 +1,8 @@ + @ +makeindex @ makeindex @ \ + +makeindex: Datei "makeindex-style" wird geladen @ makeindex @ -s makeindex-style \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/install.vst b/print/xtem/files/xtem_locals_german/install.vst new file mode 100644 index 000000000000..a33419ccb658 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/install.vst @@ -0,0 +1,67 @@ +#fonts: +fontbl -adobe-helvetica-bold-r-normal--*-120-*-*-*-*-iso8859-1 +fontstdout lucidasanstypewriter-10 +fonterr -adobe-courier-bold-r-normal-*-140-*-*-*-*-iso8859-1 +fontdli lucidasanstypewriter-12 +fontsli -adobe-courier-medium-r-normal--*-100-*-*-*-*-iso8859-1 +fonterrtag lucidasanstypewriter-8 +fonted lucidasanstypewriter-10 +hlp_font(normal) -*-new century schoolbook-medium-r-normal-*-120-*-*-*-*-iso8859-1 +hlp_font(tag) -*-new century schoolbook-medium-r-normal-*-120-*-*-*-*-iso8859-1 +hlp_font(bold) -*-new century schoolbook-bold-r-normal-*-120-*-*-*-*-iso8859-1 +hlp_font(boldlrge) -*-new century schoolbook-bold-r-normal-*-140-*-*-*-*-iso8859-1 +hlp_font(teletype) lucidasanstypewriter-12 +hlp_font(telelrge) lucidasanstypewriter-14 +hlp_font(telesmll) lucidasanstypewriter-10 +hlp_font(italic) -*-new century schoolbook-medium-i-normal-*-120-*-*-*-*-iso8859-1 +################################################ +#fonts: if your have excellent eyes and a small screen, uncomment the following lines: +#fontbl -adobe-helvetica-bold-r-normal--*-80-*-*-*-*-iso8859-1 +#fontstdout lucidasanstypewriter-8 +#fonterr -adobe-courier-bold-r-normal-*-80-*-*-*-*-iso8859-1 +#fontdli lucidasanstypewriter-8 +#fontsli -adobe-courier-medium-r-normal--*-80-*-*-*-*-iso8859-1 +#fonterrtag lucidasanstypewriter-8 +#fonted lucidasanstypewriter-8 +#hlp_font(normal) -*-new century schoolbook-medium-r-normal-*-100-*-*-*-*-iso8859-1 +#hlp_font(tag) -*-new century schoolbook-medium-r-normal-*-100-*-*-*-*-iso8859-1 +#hlp_font(bold) -*-new century schoolbook-bold-r-normal-*-100-*-*-*-*-iso8859-1 +#hlp_font(boldlrge) -*-new century schoolbook-bold-r-normal-*-120-*-*-*-*-iso8859-1 +#hlp_font(teletype) lucidasanstypewriter-10 +#hlp_font(telelrge) lucidasanstypewriter-12 +#hlp_font(telesmll) lucidasanstypewriter-8 +#hlp_font(italic) -*-new century schoolbook-medium-i-normal-*-100-*-*-*-*-iso8859-1 +################################################ +vlerg -LRW +widthl 39 +widthr 48 +sizeds 90x10 +#prtselmaxl 30 +#prtselmaxc 100 +edsyntaxhelp yes +maxprintcops 100 +xtermcall xterm -sb -sl 1024 -T xtem -n xtem +bell_level 3 +texmax 1 +prtfilperm nicht permanent +b_quick 1 +b_spell 1 +b_syntax 1 +b_index 1 +b_bibliography 1 +b_additional 1 +b_logfile 1 +b_letters 0 Briefe/Gutachten (in Entwicklung) +whichcheck yes +tlOverfull 0.0 +tlHBadness 500 +tlMaxLines 500 +tlDirIgnore /usr/local/texmf/ +quickfile XtemQuickDirty +fsmenucols 2 +exallowset 0 +textxscroll 1 +unlockbutt 0 + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/letters.vst b/print/xtem/files/xtem_locals_german/letters.vst new file mode 100644 index 000000000000..31b5a3c051e8 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/letters.vst @@ -0,0 +1,14 @@ + @ +Brief: English mit Logo @ ??? (noch in Entwicklung!) \ + +Brief: English ohne Logo @ ??? (noch in Entwicklung!) \ + +Brief: Deutsch mit Logo --- Test @ cat $letterdir/head_ger.tex @ { {Datum} {Adresse} {Betreff} {Brieftext} } @ Datum {Bitte Datum eingeben (leere Eingabe: dann Tagesdatum)} {1 30} {echo "\today"} { {Monat} {$letterdir/ScriptMonthYear german} } {echo "eingegebenerText"} {cat "\input{Deutsch_mit_Logo_I2}"} @ Adresse {Bitte Adresse eingeben} {6 40} {} { {} {} } {echo "eingegebenerText"} {cat "\input{Deutsch_mit_Logo_I3}"} @ Betreff {Bitte Betreff eingeben} {6 70} {} { {} {} } {echo "eingegebenerText"} {cat "\input{Deutsch_mit_Logo_I4}"} @ Brieftext {Bitte Brieftext eingeben} {25 80} {} { {} {} } {echo "eingegebenerText"} {cat "\input{Deutsch_mit_Logo_I5}"} @ cat $letterdir/tail_ger.tex \ + +Artikel @ ??? (noch in Entwicklung!) \ + +Gutachten @ ??? (noch in Entwicklung!) \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/local.news b/print/xtem/files/xtem_locals_german/local.news new file mode 100644 index 000000000000..ccb8c4ac079d --- /dev/null +++ b/print/xtem/files/xtem_locals_german/local.news @@ -0,0 +1,13 @@ +Meldungen + '... file9 does not exist ...' +(gelegentlich während xtem-Sitzungen nach Programm-Ausführungen) +scheinen ihre Ursache in einem Synchronisationsproblem nach der +Programm-Terminierung in TclX zu haben, sie scheinen systemabängig +(z.B. Linux) und abhängig von der Rechnerlast zu sein. +Das Programm wurde aber beendet. +Die Meldungen sollten mit der neuen Tcl/Tk-Version aber nicht mehr auftreten! +Auszuführende Aktion: "OK"-Knopf mit der linken Maustaste anklicken. + + +Hier können vom lokalen Administrator Neuigkeiten zur lokalen TeX-Installation +bekanntgegeben werden (wegen eines guten Umbruchs: max. 80 Zeichen/Zeile). diff --git a/print/xtem/files/xtem_locals_german/loganalyze.vst b/print/xtem/files/xtem_locals_german/loganalyze.vst new file mode 100644 index 000000000000..22dd055c8aba --- /dev/null +++ b/print/xtem/files/xtem_locals_german/loganalyze.vst @@ -0,0 +1,10 @@ + @ + ja (TeX stoppt b. Fehler) @ yes @ \ + + ja (TeX i. Nonstop-Modus) @ yes @ \nonstopmode \input \ + + nein @ no @ \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/logform.vst b/print/xtem/files/xtem_locals_german/logform.vst new file mode 100644 index 000000000000..903c67682b51 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/logform.vst @@ -0,0 +1,22 @@ + @ +Analyse der TeX-Protokolldatei @ @ tla @ \ + +cat (komplette Liste) @ @ cat @ \ + +identisch derzeit eingest.Editor@ @ $editor @ \ + +pg (Anlisten Seitenweise) @ xterm -e @ pg @ \ + +pg& (Seitenw. "im Hintergrund") @ xterm -e @ pg& @ \ + +emacs (Editor) @ @ emacs @ \ + +emacs& (Editor "im Hintergrund")@ @ emacs& @ \ + +vi (nur Lesen"im Hintergrund")@ xterm +sb -e @ vi @ -R \ + +vi& (nur Lesen"im Hintergrund")@ xterm +sb -e @ vi& @ -R \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/logsuffix.vst b/print/xtem/files/xtem_locals_german/logsuffix.vst new file mode 100644 index 000000000000..c775b6f6e816 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/logsuffix.vst @@ -0,0 +1,7 @@ +.ilg makeindex-Protokolldatei +.log Logfile aus TeX-Lauf +.ilg makeindex-Protokolldatei +.blg BibTeX-Protokolldatei + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/mkcommand.vst b/print/xtem/files/xtem_locals_german/mkcommand.vst new file mode 100644 index 000000000000..111143e403eb --- /dev/null +++ b/print/xtem/files/xtem_locals_german/mkcommand.vst @@ -0,0 +1,24 @@ + @ Tcl_7.3 @ Tcl_7.4 @ Tcl_7.5 @ Tcl_7.6 +Sehr gute Effizienz @ @ mkcommand.3 @ @ \ + +Sehr gute Effizienz (Testversion, Nachfolger f. mkcommand.3) @ @ mkcommand.6 @ mkcommand.6 @ mkcommand.6 \ + +Sehr gute Effizienz (Testversion, Nachfolger f. mkcommand.3) @ @ mkcommand.7 @ mkcommand.7 @ mkcommand.7 \ + +Effizienzverluste bei viel Bildschirmausgabe (alle Systeme) @ mkcommand.1 @ mkcommand.1 @ mkcommand.1 @ mkcommand.1 \ + +Ein (permanentes) xterm-Fenster wird generiert @ mkcommand.4 @ mkcommand.4 @ mkcommand.4 @ mkcommand.4 \ + +Neues xterm-Fenster bei jedem Programmstart (alle Systeme) @ mkcommand.5 @ mkcommand.5 @ mkcommand.5 @ mkcommand.5 \ + +Nur Demonstration, keine Programmausführung (alle Systeme) @ mkcommand.0 @ mkcommand.0 @ mkcommand.0 @ mkcommand.0 \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + +*** diese Zeile löschen, folg. Zeilen ggfs. umordnen (s. Installation Guide!) @ mkcommand.9 @ mkcommand.9 @ mkcommand.9 @ mkcommand.9 \ + +Gute Effizienz (läuft nicht m. BSD-basiertem Unix) @ mkcommand.2 @ mkcommand.2 @ @ \ + +Sehr gute Effizienz (läuft nicht m. BSD-basiertem Unix) @ mkcommand.3 @ @ @ \ + diff --git a/print/xtem/files/xtem_locals_german/preview.vst b/print/xtem/files/xtem_locals_german/preview.vst new file mode 100644 index 000000000000..252cc2dcab88 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/preview.vst @@ -0,0 +1,20 @@ + @ +gv& (im Hintergrund) @ gv& @ .ps @ -center -magstep -1 @ A4_Hochformat{}{-a4},A4_Querformat{-t landscape}{-a4 -swap -landscape} \ + +gv (im Vordergrund) @ gv @ .ps @ -center -magstep -1 @ A4_Hochformat{}{-a4},A4_Querformat{-t landscape}{-a4 -swap -landscape} \ + +ghostview& (im Hintergrund) @ ghostview& @ .ps @ -center -magstep -1 @ A4_Hochformat{}{-a4},A4_Querformat{-t landscape}{-a4 -swap -landscape} \ + +ghostview (im Vordergrund) @ ghostview @ .ps @ -center -magstep -1 @ A4_Hochformat{}{-a4},A4_Querformat{-t landscape}{-a4 -swap -landscape} \ + +xdvi& (im Hintergrund) @ xdvi& @ .dvi @ -p 300 @ A4_Hochformat{}{-paper a4 -keep},A4_Querformat{}{-paper a4r -keep} \ + +xdvi (im Vordergrund) @ xdvi @ .dvi @ -p 300 @ A4_Hochformat{}{-paper a4 -keep},A4_Querformat{}{-paper a4r -keep} \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + +TkDvi& (im Hintergrund) @ tkdvi& @ .dvi @ @ A4_Hochformat{}{} \ + +TkDvi (im Vordergrund) @ tkdvi @ .dvi @ @ A4_Hochformat{}{} \ + diff --git a/print/xtem/files/xtem_locals_german/printing.vst b/print/xtem/files/xtem_locals_german/printing.vst new file mode 100644 index 000000000000..1588ee18b45f --- /dev/null +++ b/print/xtem/files/xtem_locals_german/printing.vst @@ -0,0 +1,30 @@ + @ Drucker @ Emulation @ Treiber @ @ @ @ @ @ @ @ Format @ doppelseitig @ Auflösung @ Bereich @ Farbe/sw + @ * @ Postscript @ dvips @ @ @ @ @@@@ * @ * @ * @ * @ sw \ + +HPLaserjet IV (SYSV/lp->lp1) @ Prt1 @ Postscript @ dvips @ .ps @ @ lp @ -c -dlp1 @@@@ A4_Hochformat{}{},A4_Querformat{-t landscape}{} @ einseitig{}{} @ 300dpi{}{},600dpi{-P lp1}{} @ LRW @ sw @ \ + +HPLaserjet IIIP (SYSV/lp->xlw1) @ Prt2 @ Postscript @ dvips @ .ps @ -r @ lp @ -c -dxlw1 @@@@ A4_Hochformat{}{},A4_Querformat{-t landscape}{} @ einseitig{}{} @300dpi{}{} @ LRW @ sw @ \ + +CanonColorLaser350 (SYSV/lp->lp0)@ Prt3 @ Postscript @ dvips @ .ps @ @ lp @ -c -dlp0 @@@@ A4_Hochformat{}{},A4_Querformat{-t landscape}{} @ einseitig{}{} @ 400dpi{-P lp1}{} @ LRW @ Farbe @ \ + +HPLaserjet IVP (BSD/lpr->lp1) @ Prt4 @ Postscript @ dvips @ .ps @ -O 0.0mm,0.0mm @ lpr @ -Plp1 @@@@ A4_Hochformat{}{},A4_Querformat{-t landscape}{} @ einseitig{}{} @ 300dpi{}{},600dpi{-P lp1}{} @ LRW @ sw @ \ + +HPLaserjet III (via lpjep) @ Prt5 @ PCL @ dvijep @ .jep @ -b @ lpjep @ @@@@ A4_Hochformat{}{} @ einseitig{}{} @ 300dpi{}{} @ FB1 @ sw @ \ + +HPLaserjet III (via lpjep1) @ Prt5 @ PCL @ dvilj @ .lj @ @ lpjep1 @ @@@@ A4_Hochformat{-s26}{},A4_Querformat{-s26 -l}{} @ einseitig{}{} @ 300dpi{}{} @ ZfN @ sw @ \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + +Musterzeile fuer SYSV-Unix (lp-Kommando, z.B. SOLARIS 2.5): \ + +HPLaserjet IV (SYSV/lp->lp1) @ Prt1 @ Postscript @ dvips @ .ps @ @ lp @ -c -dlp1 @@@@ A4_Hochformat{}{},A4_Querformat{-t landscape}{} @ einseitig{}{} @ 300dpi{}{},600dpi{-P lp1}{} @ LRW @ sw @ \ + +Musterzeile fuer BSD-Unix (lpr-Kommando, z.B. Linux): \ + +HPLaserjet IVP (BSD/lpr->lp1) @ Prt4 @ Postscript @ dvips @ .ps @ -O 0.0mm,0.0mm @ lpr @ -Plp1 @@@@ A4_Hochformat{}{},A4_Querformat{-t landscape}{} @ einseitig{}{} @ 300dpi{}{},600dpi{-P lp1}{} @ LRW @ sw @ \ + +Musterzeile fuer dvilj-Druckertreiber: \ + +HPLaserjet III (via lpjep1) @ Prt5 @ PCL @ dvilj @ .lj @ @ lpjep1 @ @@@@ A4_Hochformat{-s26}{},A4_Querformat{-s26 -l}{} @ einseitig{}{} @ 300dpi{}{} @ ZfN @ sw @ \ + diff --git a/print/xtem/files/xtem_locals_german/prt_dvijep.vst b/print/xtem/files/xtem_locals_german/prt_dvijep.vst new file mode 100644 index 000000000000..212a42ade132 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/prt_dvijep.vst @@ -0,0 +1,10 @@ + @ @ +ungerade+gerade relative Seitenzahlen @ r @ rel \ + +ungerade relative Seitenzahlen @ r @ u_rel \ + +gerade relative Seitenzahlen @ r @ g_rel \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/prt_dvilj.vst b/print/xtem/files/xtem_locals_german/prt_dvilj.vst new file mode 100644 index 000000000000..a39fd53a0418 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/prt_dvilj.vst @@ -0,0 +1,10 @@ + @ +ungerade+gerade absolute Seitenzahlen @ a @ abs \ + +ungerade absolute Seitenzahlen @ a @ odd_abs \ + +gerade absolute Seitenzahlen @ a @ even_abs \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/prt_dvips.vst b/print/xtem/files/xtem_locals_german/prt_dvips.vst new file mode 100644 index 000000000000..5d07313b208a --- /dev/null +++ b/print/xtem/files/xtem_locals_german/prt_dvips.vst @@ -0,0 +1,20 @@ + @ + relative Seitenzahlen @ r @ rel \ + +ungerade+gerade absolute Seitenzahlen @ a @ abs \ + +ungerade absolute Seitenzahlen @ a @ u_abs \ + +gerade absolute Seitenzahlen @ a @ g_abs \ + +A5Buch Vorderseiten: A4 quer, so daß fertiges Buch in der Mitte gefaltet werden kann @ @ a5buchvorder \ + +A5Buch Rückseiten: A4 quer, so daß fertiges Buch in der Mitte gefaltet werden kann @ @ a5buchrueck \ + +verkleinert: 2 Seiten verkleinert (quer) auf A4-Blatt @ r @ verkleinern2 \ + +verkleinert: 4 Seiten verkleinert (hoch) auf A4-Blatt @ r @ verkleinern4 \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/spellcheck.vst b/print/xtem/files/xtem_locals_german/spellcheck.vst new file mode 100644 index 000000000000..0ec5806b618e --- /dev/null +++ b/print/xtem/files/xtem_locals_german/spellcheck.vst @@ -0,0 +1,14 @@ + @ +ispell - Wörterbücher: allg.: deutsch, spez.: $HOME/.ispell_deutsch @ ispell @ deutsch @ K @ @ -M -t -b -C -d deutsch -p $HOME/.ispell_deutsch \ + +ispell - Wörterbücher: allg.: deutsch, spez.: $main_file.ispell @ ispell @ deutsch @ K @ @ -M -t -b -C -d deutsch -p ./$main_file.ispell \ + +ispell - Wörterbücher: allg.: englisch, spez.: $HOME/.ispell_english @ ispell @ english @ K @ @ -M -t -b -d english -p $HOME/.ispell_english \ + +ispell - Wörterbücher: allg.: englisch, spez.: $main_file.ispell @ ispell @ english @ K @ @ -M -t -b -d english -p ./$main_file.ispell \ + +spell - Wörterbuch: englisch @ spell @ english @ @ @ \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/suffix.vst b/print/xtem/files/xtem_locals_german/suffix.vst new file mode 100644 index 000000000000..a1dc83c93198 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/suffix.vst @@ -0,0 +1,15 @@ +* +.tex +.ltx +.dtx +.doc +.aux +.idx +.ind +.ins +.log +.toc +.vst + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/syntax.vst b/print/xtem/files/xtem_locals_german/syntax.vst new file mode 100644 index 000000000000..b480f5f124b0 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/syntax.vst @@ -0,0 +1,14 @@ + @ +lacheck @ lacheck @ \ + +texchk : ausführl. Ausgabe ohne Kommando-Prüfung @ texchk @ -v \ + +texchk : knappe Ausgabe ohne Kommando-Prüfung @ texchk @ \ + +texchk : ausführl. Ausgabe mit Kommando-Prüfung @ texchk @ -v -c \ + +texchk : knappe Ausgabe mit Kommando-Prüfung @ texchk @ -c \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/texfmt.vst b/print/xtem/files/xtem_locals_german/texfmt.vst new file mode 100644 index 000000000000..cf022104e3a0 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/texfmt.vst @@ -0,0 +1,10 @@ + @ +LaTeX2e @ latex @ 1 @ 1 @ 1 @ latex @ .ltx @ \documentstyle[12pt]{article} @ \begin{document} @ \end{document} @ \ + +TeX (plain-TeX) @ tex @ 1 @ 0 @ 0 @ tex @ .tex @ @ %end_preamble @ \end @ \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + +LaTeX 2.09 @ latex209 @ 1 @ 1 @ 1 @ latex @ .ltx @ \documentclass[12pt]{article} @ \begin{document} @ \end{document} @ \ + diff --git a/print/xtem/files/xtem_locals_german/texsiz.vst b/print/xtem/files/xtem_locals_german/texsiz.vst new file mode 100644 index 000000000000..fe1f1153e4cd --- /dev/null +++ b/print/xtem/files/xtem_locals_german/texsiz.vst @@ -0,0 +1,8 @@ + @ +normal @ \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + +hoch (bigTeX) @ big \ + diff --git a/print/xtem/files/xtem_locals_german/texsuffix.vst b/print/xtem/files/xtem_locals_german/texsuffix.vst new file mode 100644 index 000000000000..2bb1c5914b3b --- /dev/null +++ b/print/xtem/files/xtem_locals_german/texsuffix.vst @@ -0,0 +1,8 @@ +.tex +.ltx +.dtx +.doc +.ins + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + diff --git a/print/xtem/files/xtem_locals_german/utility.vst b/print/xtem/files/xtem_locals_german/utility.vst new file mode 100644 index 000000000000..a6ed7d7be8db --- /dev/null +++ b/print/xtem/files/xtem_locals_german/utility.vst @@ -0,0 +1,46 @@ + @ +Umlaute: ä ö .. ß --> \"a \"o ... {\ss} @ changecode @ -u2t @ file @ @ @ \ + +Umlaute: ä ö .. ß --> "a "o ... "s @ changecode @ -u2gt @ file @ @ @ \ + +Umlaute: "a \"a ... "s {\ss} --> ä .. ß @ changecode @ -tgt2u @ file @ @ @ \ + +DOS-Datei --> Unix-Datei umwandeln @ changecode @ -d2u @ file @ @ @ \ + +Unix-Datei --> DOS-Datei umwandeln @ changecode @ -u2d @ file @ @ @ \ + +Umlaute: DOS-PC-Code --> 8 Bit-ISO-Code @ changecode @ -ibm2iso @ file @ @ @ \ + +Umlaute: 8 Bit-ISO-Code --> DOS-PC-Code @ changecode @ -iso2ibm @ file @ @ @ \ + +Tabulator durch Leerzeichen expandieren @ changecode @ -tabexp @ file @ @ @ \ + +Datei-Analyse @ changecode @ -analyse @ file @ @ @ \ + +Zeichenprogramm xfig @ xfig& @ @ optfile @ .fig @ * .fig @ \ + +Zeichenprogramm xfig (in Verzeichnis ~/xfigdir) @ xfig& @ @ optfile @ .fig @ * .fig @ ~/xfigdir \ + +Zeichenprogramm xfig (in Verzeichnis abbildungen) @ xfig& @ @ optfile @ .fig @ * .fig @ ./abbildungen \ + +Zeichenprogramm xfig (in Verzeichnis ${main_file}Abbildungen) @ xfig& @ @ optfile @ .fig @ * .fig @ ./${main_file}Abbildungen \ + +more @ xterm @ -e more @ file @ .tex @ * .tex @ \ + +uudecode @ uudecode @ @ file @ .uue @ * .uue @ \ + +gunzip (de-komprimieren) @ gunzip @ @ file @ .gz @ * .Z .gz .z .taz .tgz @ \ + +tar (tar-Archiv auspacken) @ tar @ -xvf @ file @ .tar @ * .tar @ \ + +gtar (uncompress and unpack at once) @ gtar @ -xvzf @ file @ .tar.gz @ * .tar.gz .tar.Z .tgz .taz @ \ + + +*** ab hier "Kommentar" (Leerzeile beendet den ausgewerteten Teil der Datei!) + +Zeichenprogramm xpaint @ xpaint& @ @ optfile @ .xpm @ * .xpm .xbm @ \ + +netscaspe (in Verzeichnis $main_file @ netscape& @ @ file @ .html @ .html * @ ./$main_file \ + +gnutar (de-komprimieren und auspacken) @ gnutar @ -xvzf @ file @ .tar.gz @ * .tar.gz .tar.Z .tgz .taz @ \ + diff --git a/print/xtem/files/xtem_locals_german/xtemstart.news b/print/xtem/files/xtem_locals_german/xtemstart.news new file mode 100644 index 000000000000..b342b7125063 --- /dev/null +++ b/print/xtem/files/xtem_locals_german/xtemstart.news @@ -0,0 +1 @@ +Novizen sollten jetzt bitte auf den "Hilfen"-Knopf drücken! |