Created
January 3, 2012 22:11
-
-
Save hrpunio/1557215 to your computer and use it in GitHub Desktop.
Printing every paragraph at separate page vertically centered
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% every par is printed at separate page and centered vertically (Plain.tex) | |
\let \TruePar \par | |
\def\eject{\TruePar\break} | |
\def\par{\TruePar \vfill \eject} | |
\topskip=0pt plus 1fill | |
Pierwszy akapit i~pierwsza strona | |
Drugi akapit i~druga strona | |
Trzeci akapit i~trzecia strona | |
Czwarty akapit i~czwarta strona | |
\bye |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment