1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This is an example of how to write a degree thesis according with %
% the standards of the Technion. %
%-------------------------------------------------------------------%
% CHANGED FOR LATEX 2E BY: Boris Lavva %
%-------------------------------------------------------------------%
% ORIGINAL VERSION BY: Irina Abramovici %
% Computer Centre %
% February, 1994 %
%-------------------------------------------------------------------%
% %
% -------------------------The main file----------------------------%
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% The following line defines the "styles" which design how will your
% thesis look. The mybib.bib presented here is only an example. The
% same holds true for the rest of the files which belong to this package.
%
\documentclass[12pt]{hebtech}
\usepackage[8859-8]{inputenc}
\usepackage{hebfont}
\usepackage{latexsym}
\usepackage{epsf}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% PARAMETERS %%%%%%%%%%%%%%%%%%%%%%%%
% Enter the title of your thesis.
\title{}{Title}
% Enter your name
\author{ }{Author}
% Enter the name of your department
\dept{ }
{Electrical Engineering Department}
\dom{ }{Food Processing}
% Enter the domain of research, for the Master
% degree, and leave this line as \dom{} in case
% of a Doctor degree
\advisori{ }{my lovely advisor}
% Enter the name of your advisor
\advisorii{' }
{Dr. Z Q} % Enter the name of your second advisor, if any
% If the paper was written under the supervision
% of more than two advisors, you should change the
% tech.sty file in order to add the additional name
% If no scholarship need be acknowledged, comment the following line:
\donori{ '}{Mr. G}
% Enter the name of the person or institution which
% granted you help in the form of scholarship, if any.
% If no scholarship need be acknowledged, comment the following line:
\donorii{ '}{Mrs. HH}
% Enter the name of the person or institution which
% granted you help in the form of scholarship, if
% more than one was granted you. Analogous with the
% advisor, you'll have to modify the tech.sty if more
% than two scholarships were garnted to you.
% If no scholarship or other financial help need to be acknowledged,
% uncomment the following line. (i.e., \renewcommand{\donor}{ })
%\donor{}{}
%\donor{ ' '}{Mr. G scholarships granted}
\setcounter{thestype}{1} % Set thestype counter to:
% 1 --- for a research thesis
% 2 --- for a project thesis
% 3 --- for a final paper
\setcounter{grade}{1} % Set grade counter to:
% 1 --- for master of science
% 2 --- for master
% 3 --- for master of technology
% 4 --- for doctor of science
%\date{28}{8}{1998} % Enter the Gregorian date, so it will be printed and
% get converted the Jewish date.
% If not defined, today's date will be printed.
%
%\pagestyle{headings} % If you want running headers, uncomment this line
\pagestyle{thesis} % If you want special running headers,
% uncomment this line
%
%%% NEW THEOREMS
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{corolar}{Corollary}
%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\unsethebrew
\makecover % this macro builds the cover (here in English)
\frontmatter % this macro starts roman numbering (when in English)
\maketitle % macro which builds the title page (here in English)
\begin{acknowledgment} % macro which builds the acknowledgement page
% % (here in English)
\noindent I am grateful to ...
\noindent I wish to express gratitude to...
\end{acknowledgment}
\begin{dedication} % macro which builds the dedication page (here in English)
Dedicated to ...
\end{dedication}
\tableofcontents % tables (here in English)
\listoffigures
\listoftables
\begin{abstract} % Abstract (here in English)
This is only an example. This should be the abstract of the
thesis, in accordance to the standards and demands listed
by the Graduate School.
This abstract is part of the thesis, not the advertising
abstract which is to be submitted as a separate item.
\end{abstract}
\mainmatter % this macro starts arabic numbering of the main
% part
\input{abreviation} % The file abreviation.tex should contain a table
% with a list of abbreviations and symbols
\input{preface} % The introductory chapter of your thesis
\input{chap1} % Add as many chapters as needed, ie
% Documentation research, description of your
% research, discussion upon your results,
% connections between this paper and other
% printings, etc.
\input{chap2}
\input{chaph1}
\input{chaph2}
\appendix % This instruction switches to appendix mode
\input{ap1} % File app1.tex is the first appendix
\input{ap2} % File app2.tex is the second appendix
\input{aph}
\bibliographystyle{plain}
\bibliography{mybib} % File mybib.bib is your bibliographic data base
%%% HEBREW PART
\sethebrew
\makecover % this macro builds the cover (here in Hebrew)
\backmatter % this macro starts hebrew letter numbering (when in Hebrew)
\maketitle % macro which builds the title page (here in Hebrew)
\begin{acknowledgment} % macro which builds the acknowledgement page
% % (here in Hebrew)
\par '' ' ...
...
\end{acknowledgment}
\begin{dedication} % macro which builds the dedication page (here in Hebrew)
...
\end{dedication}
\tableofcontents % tables (here in Hebrew)
\listoffigures
\listoftables
\begin{abstract} % abstract (here in Hebrew)
\-\- .
.
.
\end{abstract}
\end{document}
|