summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/elbioimp
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-02-11 00:00:33 +0000
committerKarl Berry <karl@freefriends.org>2010-02-11 00:00:33 +0000
commit15a76b17e0bbfa11f4e37a7d7036af75ea25d897 (patch)
treec9a1d6f0129206d0a1ea046bb59ea747304b6300 /Master/texmf-dist/doc/latex/elbioimp
parent38288f9d36ef949965f3ef831b4f0088ffa16c05 (diff)
new package elbioimp (9feb10)
git-svn-id: svn://tug.org/texlive/trunk@16961 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/elbioimp')
-rw-r--r--Master/texmf-dist/doc/latex/elbioimp/README76
-rw-r--r--Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex65
-rw-r--r--Master/texmf-dist/doc/latex/elbioimp/elbioimp.pdfbin0 -> 287419 bytes
-rw-r--r--Master/texmf-dist/doc/latex/elbioimp/test-bib.bib52
-rw-r--r--Master/texmf-dist/doc/latex/elbioimp/test-ill.pngbin0 -> 8253 bytes
-rw-r--r--Master/texmf-dist/doc/latex/elbioimp/test1.tex109
6 files changed, 302 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/elbioimp/README b/Master/texmf-dist/doc/latex/elbioimp/README
new file mode 100644
index 00000000000..9aeeb105575
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/elbioimp/README
@@ -0,0 +1,76 @@
+Document class elbioimp
+-----------------------
+A LaTeX document class for the Journal of Electrical Bioimpedance
+Version 1.0 dated 8 February 2010
+
+
+Contents
+--------
+- Files
+- Licence
+- Requirements
+- Installation
+- Documentation
+- Use
+
+
+Files
+-----
+README - this file
+elbioimp.cls - the document class
+elbioimp.ins - a driver file for extracting elbioimp.cls from
+elbioimp.dtx - combined documentation and code file
+elbioimp.pdf - documented source code
+elbioimp-basis.tex - a basis for writing your own articles
+test1.tex - a test document
+test1.pdf - a test document (processed)
+test-bib.bib - a bibliography for the test document
+test-ill.png - an illustration for the test document
+
+
+Licence
+-------
+
+This document class and the documentation are distributed according to
+the LaTeX Project Public License, see
+http://www.latex-project.org/lppl.txt
+
+
+Requirements
+------------
+The document class should run with any standard LaTeX distribution from
+2007 or later; it was tested with TeXlive 2007. The following packages
+are needed:
+
+caption - for adapting the figure and table captions
+ifthen - for adding an if-then-else-construct
+geometry - for specifying page dimensions
+mathptmx - for using the Times Roman font
+url - for typesetting e-mail addresses and URLs
+
+All these should be available in a standard LaTeX distribution.
+
+
+Installation
+------------
+
+Put elbioimp.cls in a folder when LaTeX will find it. (Remember to
+rebuild the file name database.)
+
+If you don't know how to do this, you can just put elbioimp.cls in the
+same folder as your LaTeX file.
+
+
+Documentation
+-------------
+
+Let LaTeX process elbioimp.dtx to create a documented version of the
+source code.
+
+
+Use
+---
+
+Make a copy of elbioimp-basis.tex. Modify the settings (as specified
+in the comments -- look particularly for the word "OPTION") and write
+your article.
diff --git a/Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex b/Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex
new file mode 100644
index 00000000000..8eb6d6838bc
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex
@@ -0,0 +1,65 @@
+%% Base file for an article submitted to the Journal of Electrical
+%% Bioimpedance.
+
+%% 1. Make a copy of this file.
+%% 2. Select your options (look for "OPTION" below).
+%% 3. Add your text and illustrations.
+
+
+
+\documentclass{elbioimp}
+
+%% OPTION: Select encoding used in you LaTeX file:
+\usepackage[latin1]{inputenc} % ISO 8859-1 (standard single-byte
+ % encoding in the Western world)
+% \usepackage[applemac]{inputenc} % Standard Mac encoding
+% \usepackage[utf8]{inputenc} % Unicode
+
+%% OPTION: Select your language:
+\usepackage[USenglish]{babel} % American English
+% \usepackage[UKenglish]{babel} % British English
+
+%% Other packages you might need:
+% \usepackage{graphicx} % Add this package if you have illustrations
+% \usepackage{textcomp} % Additional characters
+
+
+%% OPTION: Document information:
+\title{My title} % Article title
+
+\author{First author\thanks{Institution of first author}\and
+ Second author\thanks{Institution of second author}\and
+ Third author\thanks{Institution of third author}}
+
+\keywords{Keyword1, keyword2, keyword3} % Article keywords
+
+
+
+%% And, finally, the article itself:
+
+\begin{document}
+\maketitle
+
+
+\begin{abstract}
+ %% OPTION: Always include an abstract!
+ Put your abstract here.
+
+\end{abstract}
+
+
+\section{Introduction} % Level 1 heading
+\subsection{Previous results} % Level 2 heading
+
+%% NOTE: Your text.
+%% Use a blank line to separate paragraphs.
+%% Use \url{...} for e-mail addresses and URLs.
+
+%\begin{figure} % Illustration
+% \includegraphics[options]{illustration1}
+% \caption{Figure caption}
+%\end{figure}
+
+%% OPTION: Name of your BibTeX bibliography file:
+\bibliography{mybib} %% No .bib suffix!
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/elbioimp/elbioimp.pdf b/Master/texmf-dist/doc/latex/elbioimp/elbioimp.pdf
new file mode 100644
index 00000000000..968ec1a09b6
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/elbioimp/elbioimp.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/elbioimp/test-bib.bib b/Master/texmf-dist/doc/latex/elbioimp/test-bib.bib
new file mode 100644
index 00000000000..f518b0ed2a2
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/elbioimp/test-bib.bib
@@ -0,0 +1,52 @@
+@InCollection{Meltzer,
+ crossref = {Vogelstein},
+ author = {P S Meltzer and A Kallioniemi and J M Trent},
+ title = {Chromosome alterations in human solid tumors},
+ publisher = {McGraw-Hill},
+ year = 2002,
+ pages = {93-113}}
+
+@Book{Vogelstein,
+ editor = {B Vogelstein and K W Kinzler},
+ booktitle = {The genetic basis of human cancer}},
+ publisher = {McGraw-Hill},
+ year = 2002,
+ address = {New York}}
+
+@Book{Murray,
+ author = {P R Murray and K S Rosenthal and G S Kobayashi and
+ M A Pfaller},
+ title = {Medical microbiology},
+ publisher = {Mosby},
+ year = 2002,
+ edition = {4th},
+ address = {St.~Louis}}
+
+@Article{Rose,
+ author = {M E Rose and M B Huerbin and J Melick and D W Marion
+ and A M Palmer and J K Schiding an others},
+ title = {Regulation of interstitial excitatory amino acid
+ concentrations after cortical contusion injury},
+ journal = {Brain research},
+ year = 2002,
+ volume = 935,
+ number = {1--2},
+ pages = {40-46}}
+
+@Article{Halpern,
+ author = {S D Halpern and P A Ubel and A L Caplan},
+ title = {Solid-organ transplantation in {HIV}-infected patients},
+ journal = {{New England} journal of medicine},
+ year = 2002,
+ volume = 347,
+ pages = {284-287}}
+
+@Misc{NIH,
+ author = {{National institue of health}},
+ title = {International committee of medical journal editors
+ uniforum requirements for manuscripts submitted to
+ biomedical journals},
+ howpublished = {Updated 2009 Aug 28; cited 2009 Oct 6},
+ note = {Available from
+ \url{http://www.nlm.nih.gov/bsd/uniform_requirements.html}}}
+
diff --git a/Master/texmf-dist/doc/latex/elbioimp/test-ill.png b/Master/texmf-dist/doc/latex/elbioimp/test-ill.png
new file mode 100644
index 00000000000..e4a229bc56e
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/elbioimp/test-ill.png
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/elbioimp/test1.tex b/Master/texmf-dist/doc/latex/elbioimp/test1.tex
new file mode 100644
index 00000000000..269a06d7ae5
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/elbioimp/test1.tex
@@ -0,0 +1,109 @@
+\documentclass{elbioimp}
+\usepackage[latin1]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage[USenglish]{babel}
+\usepackage{textcomp,graphicx}
+\usepackage{lipsum} %% For generating random text
+
+\title{This is your template for Journal of Electrical Bioimpedance}
+
+\author{First B. Author\thanks{Department, University, City, Country}\and
+ Second C. Coauthor\thanks{Company, City Country}\and
+ Last Author\thanks{E-mail any correspondence to:
+ \textsf{myname@domain.com}}}
+
+\keywords{Bioimpedance, current, voltage}
+
+\hyphenation{bio-impe-dance}
+
+\begin{document}
+\maketitle
+
+\begin{abstract}
+ These are guidelines for preparing papers for the Journal of
+ Electrical Bioimpedance. The journal accepts original research
+ papers and review articles within the broad field of electrical
+ bioimpedance. Use this document as a template if you are using
+ Microsoft Word~6.0 or later. Otherwise, use this document as an
+ instruction set. The paper size is A4 (21\,\texttimes\,29.7\,cm).
+\end{abstract}
+
+
+\section{Introduction}
+This original source of this document is a template for Microsoft Word.
+Please use the electronic version of this document as a
+template when you produce your manuscript for submission to the
+\emph{Journal of Electrical Bioimpedance}. The paper size is standard A4
+(21\,\texttimes\,29.7\,cm).
+
+The introduction section of your paper should include the necessary
+background information, including an adequate review of earlier
+findings and the justification for conducting this study.
+
+
+\subsection{Materials and methods}
+The margins in this document are set to 2.5\,cm for the top and 1.5\,cm
+for the sides and bottom. The main body of the manuscript is in two
+columns separated by a 1\,cm. The line spacing is 1.1.
+
+In the materials and methods section, please describe all necessary
+details on how the study was performed. Do not include any discussions
+of the work in this section. Enough information should be given so
+that other researchers can reproduce your study.
+
+
+\subsection{Results}
+All figures should be numbered consecutively with the figure legend
+indented 0.5 cm on each side.\footnote{See figure~\ref{fig:demo} for
+ an example.}
+
+Figures may be in color or black and white and must be of such quality
+that they produce clear and sharp printouts on an ordinary (color)
+laser printer.
+
+Use this section to present the results from the measurements or
+studies that were described in the last section, but without going
+into any discussion about the results.
+
+\begin{figure}
+ \centering
+ \includegraphics[width=0.8\columnwidth]{test-ill}
+ \caption{Box-plot showing the median value (line), mean value (cross),
+ middle 50\% (box) and smallest and largest point within
+ 1.5\,interquartiles from the box (whiskers) of all measurements on
+ days A, B and C.\label{fig:demo}}
+\end{figure}
+
+\begin{table}
+ \centering
+ \renewcommand{\arraystretch}{1.2}
+ \begin{tabular}{clccc}
+ $D$& &$P_u$& $\sigma_N$\\
+ (in)& & (lbs)& (psi)\\ \hline
+ 5& test 1& 285& 38.00\\
+ & test 2& 287& 38.27\\
+ & test 3& 230& 30.67\\ \hline
+ 10& test 1& 430& 28.67\\
+ & test 2& 433& 28.87\\
+ & test 3& 431& 28.73\\ \hline
+ \end{tabular}
+ \caption{A simple table\label{tab:demo}}
+\end{table}
+
+\subsection{Concluding text}
+\lipsum[1-9]
+
+
+\section{Discussion}
+Now you can discuss your results. Emphasize the new and important
+aspects of the study and the conclusions that follow from them. Do not
+repeat in detail data or other information given in the Introduction
+or the Results section. After this section there may be sections
+called Conclusion and Acknowledgments. The last section is
+References. The \emph{Journal of Electrical Bioimpedance} uses the
+Vancouver style of references with numbers in square brackets in the
+text and a numbered list in the Reference section~\cite{NIH}.
+
+\nocite{Halpern,Meltzer,Murray,Rose}
+\bibliography{test-bib}
+\end{document}