summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-01-14 23:21:23 +0000
committerKarl Berry <karl@freefriends.org>2012-01-14 23:21:23 +0000
commit41e8906ada0a8c9724859b647e93193c9078d03e (patch)
tree0dfe709ee2511e43ad0dbe846f2d878f3d529f3e /Master/texmf-dist/doc
parent8877521e469f0ee4c2c407ae09c1a5cccf8a9ed9 (diff)
rm scientificpaper, no license info
git-svn-id: svn://tug.org/texlive/trunk@25104 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r--Master/texmf-dist/doc/latex/scientificpaper/README86
1 files changed, 0 insertions, 86 deletions
diff --git a/Master/texmf-dist/doc/latex/scientificpaper/README b/Master/texmf-dist/doc/latex/scientificpaper/README
deleted file mode 100644
index 963f1e20586..00000000000
--- a/Master/texmf-dist/doc/latex/scientificpaper/README
+++ /dev/null
@@ -1,86 +0,0 @@
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%
-%
-% The Scientific Paper Package for LaTeX
-% By Ryan Aycock
-% For use with LaTeX and pdfLaTeX
-% March 26, 2004
-%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-LaTeX has long been known as a convenient tool for writing scientific papers.
-Much to my surprise, however, there are no packages on CTAN that actually format
-scientific papers easily. The effort seeks to correct that problem by giving
-users a simple-to-use method for distributing their work. Notice, this package
-is not based on any particular style guide. It will only create a generic, two
-column paper with a single column abstract at the top.
-
-THIS PACKAGE REQUIRES THE MULTICOL PACKAGE (included).
-
-To write your own scientific papers, use the template below:
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-\documentclass[letterpaper,11pt]{article}
-\usepackage{science}
-
-\title{Ultra Cool Title}
-\author{Your Name}
-\date{the date} % Can use \today
-
-\begin{document}
-\maketitle
-
-\begin{abstract}
-Type your abstract here.
-\end{abstract}
-
-\begin{body}
-
-Type your paper as normal. Use \cite{} for your citations.
-
-\begin{bib}
-
-Put your bibliography here. Use \bibitem{} for
-each of the citations used in your paper.
-
-\end{bib}
-
-\end{body}
-\end{document}
-
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-Some final notes:
-
-To list more than one author or to list schools and contact information, use
-
-\author{First author's name$^{1}$\thanks{Contact information}, % Notice the comma and space
-Second author$^{2}$\\
-$^{1}$\textit{First university}\\
-$^{2}$\textit{Second university}}
-
-
-
-
-Floating environments such as figures or tables are forbidden in the multicol environment.
-To get around this limitation, you have two options when including a figure or table:
-
-use \begin{figurehere}... \end{figurehere} and \begin{tablehere}... \end{tablehere}
-to place a float in the two column format (right here).
-Or you can use \begin{figure*} \begin{table*}. These commands will span your float
-body across the page, usually at the top --- best for large images and tables.
-
-
-
-Finally, the bibliography uses the default LaTeX thebibliography feature. If you want to
-use BibTeX or have more than 99 sources, you will need to edit the package.
-
-
-
-To learn LaTeX, start with "The Not So Short Introduction to LaTeX" by Tobias Oetiker. It
-is available online at CTAN:/tex-archive/info/lshort . Or you can search Google for any results.
-
-If you have any more questions --- about the package, not about LaTeX --- write to me at
-aycock@phys.ufl.edu