Typesetting and Printing Non-Packet Stuff (All GMs)

If you're printing out stuff for a character packet, you want the packets script (except for centralized-file things like badges and statcards). But when you're just printing random stuff, especially during runtime, you usually want to just use the normal latex, xdvi, dvips commands. The Template doesn't replace the normal tools, it just augments them!

If you haven't already, set up your dotfiles properly. Each GM needs to do so, but only once.


Miscellaneous sheets and random things

This is just a normal way you print latex stuff. (The Template just adds the use of DVI subdirs, which aren't important.) Let's say you want to print a bluesheet named sword.tex; this'll also work for a character sheet, a cards file once you've made it, the playerlist, whatever.

  1. cd Bluesheets/DVI
    This puts you in a directory named DVI under Bluesheets where latex can drop all the files it produces.

  2. latex ../sword.tex
    This creates sword.dvi in your current directory (Bluesheets/DVI) as well as sword.log, sword.aux, and maybe others that are nice to keep out of Bluesheets/ itself. If the latex fails, go fix sword.tex until it works. (Note: You need the ../ to specify that the source file is in the directory above the one you're currently in now.)

  3. dvips sword -o
    This turns the sword.dvi in your current directory into sword.ps there.

  4. (optional) gv sword.ps
    This previews the file for you; check it looks right before wasting paper. (gv is in the sipb locker.)

  5. (optional) load colored paper into the bottom tray of the target printer. MAKE SURE the top tray has lots of white paper in it, so that other users don't get your colored stuff. If you were printing cards, you'd use cardstock, of course.

  6. lpr -Pprintername -Zinlower sword.ps
    the -Zinlower tells the printer to use the lower tray, with your colored paper is. You can omit it if you're just using white paper, or use -Zinupper to request the upper tray particularly. Also, you can toss in -Zduplex as well to get double-sided printing. (Note: the -Z options are printer-dependent; these are some we expect to find on Athena printers currently.)
    Caveat: The new HP5 printers have a bug such that they do not always obey tray instructions. Until Athena puts in a workaround (which may have happened when you read this) you may or may not get the tray you ask for, regardless of the method you use to select it (lpr -Zinlower, lpr -Zinupper, dvips -h bottomtray, etc). Double-sided vs single-sided printing should be reliable.

  7. Remove anything special you put in the lower tray, and put white paper back in.

  8. You're done. Pick up your printed stuff.


Printing miscellaneous cards

The actual printing part here is the same, but we'll also cover making a file for a batch of miscellaeous cards.

Usually you'll print cards as parts of character packets. However, you may find that you need to print lone abilities or items or other such cards that aren't usually done that way (like during runtime). For this you need a file that makes just these cards.

Quick method: edit the misc-*.tex file

LaTeX/Central has misc-items.tex, misc-abils.tex, and several other such files that are there for exactly this purpose. If there's one for the kind of thing you're making, just pick the appropriate file. Between \begin{document} and \end{document}, list the cards (say abilities) you want:

\Afakeabil
\ability{Sample Powers}{You have the ability to do strange and
  marvelous things once every three days.}{You see a strange and
  marvelous thing.}

If you want cards to have a character's name on it the way the ones printed from their charsheet do, put \name{\Ccharactermacro}. All the cards from there until the next \name will have that character's name on them. (Well, unless you make a type of card that never puts charname on.) \name{Unowned} will switch back to Unowned cards.

\pageof{card} will make a page of that card (starting a new page to do so). So \pageof{\Ibowling} will produce a whole page's worth of bowling ball item cards, \pageof{Sample Powers}{You have... three days}{You see...} a page of Sample Powers, etc. This is particularly useful for mass-producing money. \putcard makes another copy of the last card you gave. \newpage starts a new page (as usual in latex).

You've made your file. It gets latex'd and printed just like the misc sheets instructions above. (LaTeX/Central/ has a DVI subdir for this purpose.) Cards automatically come out single-sided, double-sided, or mirror-sided as appropriate, without you worrying about it. (If you have mirror-sided cards that you want to print non-mirrored for some reason, use dvips -h unmirror to print them.)

Less quick method: write such a file

If there isn't a misc-whatever.tex file already, or if you just want to start a new batch of whatevers, you need to write a new file. We recommend doing this in LaTeX/Central. It'll look a lot like the misc-*.tex files.

Start with the lines

	\documentclass{game}
	\usepackage{abilities}
	\begin{document}

	\end{document}
but with the name of the card's style file you already made in LaTeX/Styles instead of 'abilities' (which gets abilities.sty). Any files needed to define abilities, say Lists/abilities.tex, should already have been \input by the style file, so you don't need to think about them at this point.

If you're doing a card for a specific character, add a line after like \name{\Cfred} after \begin{document}, using the character's macro as per LaTeX/Lists/characters.tex. Again, this name holds for all cards until you say \name{} again; use \name{Unowned} to get back to Unowned cards.

Now pop back up to the quick method and proceed from there, filling your file with cards and printing.


Printing centralized things like statcards and badges

Even though statcards and badges belong in character packets, you don't want to do them as part of packet printing because each character only has one of each (usually), so you'd print many pages of cardstock with one card each. That's no good.

But you don't have to. All badge info, and all stats, are listed for each character in LaTeX/Lists/characters.tex and players.tex, so the Template already knows what should be on badges and statcards. In LaTeX/Central there are prewritten files, which you shouldn't have to touch at all, called badges.tex and stats.tex; these look at Lists/characters.tex to see what to make.

So when you latex Central/stats.tex, it automagically makes a stat card for each entry in characters.tex; badges.tex makes a badge for each entry, plus a pageful of Observer badges at the start. You can deal with these files just like printing random sheets at this point.

However, with statcards and badges you often want to print out only one page of them---say, to print out the page of Observer badges multiple times. You can do this two ways.

See misc.html about the other stuff in LaTeX/Central; these mostly also latex and print like random sheets.