summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/newspaper
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/newspaper')
-rw-r--r--Master/texmf-dist/doc/latex/newspaper/Figure1.pdfbin0 -> 21704 bytes
-rw-r--r--Master/texmf-dist/doc/latex/newspaper/Figure2.pdfbin0 -> 55908 bytes
-rw-r--r--Master/texmf-dist/doc/latex/newspaper/README28
-rw-r--r--Master/texmf-dist/doc/latex/newspaper/atom.jpgbin0 -> 8851 bytes
-rw-r--r--Master/texmf-dist/doc/latex/newspaper/newspaper.pdfbin0 -> 186052 bytes
-rw-r--r--Master/texmf-dist/doc/latex/newspaper/newspaperExample.tex48
6 files changed, 76 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/newspaper/Figure1.pdf b/Master/texmf-dist/doc/latex/newspaper/Figure1.pdf
new file mode 100644
index 00000000000..8b06394c66c
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/newspaper/Figure1.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/newspaper/Figure2.pdf b/Master/texmf-dist/doc/latex/newspaper/Figure2.pdf
new file mode 100644
index 00000000000..926914083de
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/newspaper/Figure2.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/newspaper/README b/Master/texmf-dist/doc/latex/newspaper/README
new file mode 100644
index 00000000000..767977db093
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/newspaper/README
@@ -0,0 +1,28 @@
+The "newspaper" package extends LaTeX by redefining
+the \maketitle command to resemble the heading
+of a newspaper.
+
+The "newspaper" package is copyright 2007
+by matthew allen <mallen.nuc@gmail.com>
+
+It comprises this README file, as well as files
+newspaper.dtx
+newspaper.pdf
+newspaper.sty
+Figure1.pdf
+Figure2.pdf
+newspaperExample.tex
+atom.jpg
+
+the last two files are merely for example.
+
+To install the package, move newspaper.sty to somewhere
+in your TeX tree where packages are stored.
+
+"newspaper" may be distributed and/or modified under the conditions of the
+LaTeX Project Public License, either version 1.3 of this licence, or
+any later version. The latest version of this license is at
+http://www.latex-project.org/lppl.txt and version 1.3 is part
+of all distributions of LaTeX version 2003/06/01 or later.
+
+This work has the LPPL maintenance status "author-maintained". \ No newline at end of file
diff --git a/Master/texmf-dist/doc/latex/newspaper/atom.jpg b/Master/texmf-dist/doc/latex/newspaper/atom.jpg
new file mode 100644
index 00000000000..c1f1d25011e
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/newspaper/atom.jpg
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/newspaper/newspaper.pdf b/Master/texmf-dist/doc/latex/newspaper/newspaper.pdf
new file mode 100644
index 00000000000..77ccb3b7494
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/newspaper/newspaper.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/newspaper/newspaperExample.tex b/Master/texmf-dist/doc/latex/newspaper/newspaperExample.tex
new file mode 100644
index 00000000000..5b3c6cfeb06
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/newspaper/newspaperExample.tex
@@ -0,0 +1,48 @@
+\documentclass{article}
+
+
+\usepackage{newspaper}
+\date{\today}
+\currentvolume{1}
+\currentissue{1}
+\usepackage{times}
+\usepackage{graphicx}
+\usepackage{multicols}
+
+\usepackage{picinpar}
+%uasage of picinpar:
+%\begin{window}[1,l,\includegraphics{},caption]xxxxx\end{window}
+
+%%%%%%%%% Front matter %%%%%%%%%%
+
+\begin{document}
+\maketitle
+
+\begin{multicols}{3}{
+
+\byline{\sc\Large Geek Designs New \LaTeX{} Package}{Matthew Allen}
+
+The package is basically a redefinition of the \verb+\maketitle+ command. The model was the New York Times---hopefully I haven't violated any copyright laws. I also had to redefine the plain pagestyle. It kept me busy for a few nights after work. The rest is packages other people have written.
+
+\begin{window}[2,r,\includegraphics[width=1.0in]{atom.jpg},\centerline{The Atom}] The \verb+multicols+ package allows using multiple columns without starting a new page. Using floats is not possible in a columns environment, however with the \verb+picinpar+ package, I can set a picture inside a block of text---just like you one you see here. Isn't \LaTeX{} cool?
+And now we're just filling more space, and yet more space.
+\end{window}
+\closearticle
+
+
+\headline{\it\huge Another Headline}
+This is just an example to fill up some space, but as long as I have your attention, I'll give some newspaper advice.
+
+It's good to use different fonts for each headline. This particular font was accomplished with the command \verb+\headline{\it\huge Another Headline}+. The headline in the preceding article was accomplished with the command \verb+\byline{\sc\Large Geek Designs New \LaTeX{} Package}{Matthew Allen}+.
+
+Of course the commands don't look so nice when they're set in column format. Look at the example file if you have any questions as to how this example was created.
+
+I suppose we could also show how an equation is type set:
+\begin{displaymath}
+x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}
+\end{displaymath}
+and there you have it. \closearticle
+}
+\end{multicols}
+
+\end{document} \ No newline at end of file