iwelch@agsm.ucla.edu (Ivo Welch) (01/11/91)
Since I am not a Texpert, could someone tell me if a style file exists that adds to LaTeX the following capabilities: - Invisible Fonts, i.e. {\invisible text} shouldn't print. I know this feature exists in slitex, but not in my article environment. - Some journals require the final submission to have endnotes instead of footnotes. Is there a LaTeX style file that creates endnotes? - Finally, although I realize it is ugly, are there large-font version of article, e.g. art18? Thanks for any information. /ivo
sommer@BINAH.CC.BRANDEIS.EDU (01/12/91)
In article <775@mara.cognet.ucla.edu>, iwelch@agsm.ucla.edu (Ivo Welch) writes: >Since I am not a Texpert, could someone tell me if a style file exists that >adds to LaTeX the following capabilities: [...] > - Some journals require the final submission to have endnotes > instead of footnotes. Is there a LaTeX style file that creates > endnotes? [...] Try ymir.claremont.edu [anonymous.tex.inputs.latex-contrib]endnotes.sty I don't think that one has been archived anyplace else, yet. (It should be!) Of the few I've seen, this is the one I think is best, even if not ``perfect''. It's got enough documentation so that a non-TeXpert can hack some parameters to get slightly different endnote styles. *** *** While I'm here, does anybody know where I can find the style file to print a large light gray diagonal ``DRAFT'' or ``CONFIDENTIAL'' across pages? I'm using Tom Rokicki's dvips to generate my output. *** ***
spqr@ecs.soton.ac.uk (Sebastian Rahtz) (01/14/91)
In article <775@mara.cognet.ucla.edu> iwelch@agsm.ucla.edu (Ivo Welch) writes:
adds to LaTeX the following capabilities:
- Invisible Fonts, i.e. {\invisible text} shouldn't print. I know
this feature exists in slitex, but not in my article environment.
if you use a PostScript printer, and a decent dvi to PS (such as
dvips), try using a \special command to change the colour to white
temporarily. then you dont need special fonts.....
sebastian
--
Sebastian Rahtz S.Rahtz@uk.ac.soton.ecs (JANET)
Computer Science S.Rahtz@ecs.soton.ac.uk (Bitnet)
Southampton S09 5NH, UK S.Rahtz@sot-ecs.uucp (uucp)
spqr@ecs.soton.ac.uk (Sebastian Rahtz) (01/14/91)
FIn article <009428FE.C1A1FCC0@BINAH.CC.BRANDEIS.EDU> sommer@BINAH.CC.BRANDEIS.EDU writes:
*** ***
While I'm here, does anybody know where I can find the style file to
print a large light gray diagonal ``DRAFT'' or ``CONFIDENTIAL''
across pages? I'm using Tom Rokicki's dvips to generate my output.
*** ***
`the' style file? I can offer _a_ solution: I just include the
following as a new header file when I run dvips. We have a shell script with
a -draft option, which allows other words to be used:
-draft) shift;
if test $# = 1 ; then
DVIFLAGS="$DVIFLAGS -h draft.pro"
else
case $1 in
-*) DVIFLAGS="$DVIFLAGS -h draft.pro" ;;
*) WORD=$1
DVIFLAGS="$DVIFLAGS -h /usr/tmp/dr$$.pro"
sed "s/(DRAFT)/($WORD)/" < $TEX_HOME/tex/PSery/draft.pro > /usr/tmp/dr$$.pro
shift;;
esac
fi;;
%% Put the word "DRAFT" (or a specified word) on each page of a postscript
%% document.
%%
%% Author: Spencer W. Thomas
%% Computer Science Dept.
%% University of Utah
%% thomas@cs.utah.edu
%% Modified by LA Carr and S Rahtz
/DRAFTSTRING { (DRAFT) } def
/bop-hook { gsave
initmatrix
/Helvetica-Bold findfont setfont
DRAFTSTRING dup stringwidth pop 8.875 exch div dup 72 mul dup scale
52.3 rotate 2.5 exch div -.35 translate
0.95 setgray
0 0 moveto show
grestore } def
--
Sebastian Rahtz S.Rahtz@uk.ac.soton.ecs (JANET)
Computer Science S.Rahtz@ecs.soton.ac.uk (Bitnet)
Southampton S09 5NH, UK S.Rahtz@sot-ecs.uucp (uucp)