blob: 09b59275144b9f5beb701f6caed8ca305d8142db (
plain)
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
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{technionThesisSetup}[2019/1/31 Setup for Technion thesis]
% Written by Boaz Shuval.
% This is part of a template for writing a thesis according to the Technion specifications.
% Version: 1.0
% Enter the thesis submit date: {dd}{mm}{yyyy}
% This computes the Hebrew date, as well (taking into account leap years, etc.)
\ThesisSubmitDate{30}{1}{2019}
% Your details:
\renewcommand{\AuthorEnglish}{Author Name}
\renewcommand{\AdvisorEnglish}{Advisor Name}
\renewcommand{\AdvisorTitleEnglish}{Professor}
\renewcommand{\TitleEnglish}{Thesis Title}
\renewcommand{\DegreeEnglish}{Doctor of Philosophy} % OR: Master of Science
\renewcommand{\FacultyEnglish}{My Faculty}
\renewcommand{\FinancialEnglish}{The generous financial help of the Technion is gratefully acknowledged.}
% Your details in Hebrew:
\renewcommand{\AuthorHebrew}{שם המחבר}
\renewcommand{\AdvisorHebrew}{שם המנחה}
\renewcommand{\AdvisorTitleHebrew}{פרופסור}
\renewcommand{\TitleHebrew}{כותרת התיזה}
\renewcommand{\DegreeHebrew}{דוקטור לפילוסופיה} % OR: מגיסטר למדעים
\renewcommand{\FacultyHebrew}{הפקולטה שלי}
\renewcommand{\FinancialHebrew}{אני מודה לטכניון על התמיכה הכספית הנדיבה בהשתלמותי.}
% Change the following according to your list of publications
\renewcommand{\PubListEnglish}{%
\begin{itemize}
\item Publication 1. \\
\Cref{chap_first} is based on this paper.
\item Publication 2. \\
\Cref{chap_second} is based on this paper.
% \item Publication 3. \\
% \Cref{chap_third} is based on this paper.
% \item Publication 4. \\
% \Cref{chap_fourth} is based on this paper.
\end{itemize}}
\renewcommand{\PubListHebrew}{%
\begin{english}
\begin{itemize}
\item First publication.
\vspace{-1em}
\begin{flushright}
\texthebrew{פרק \ref{chap_first} מבוסס על מאמר זה.}
\end{flushright}
\item Second publication.
\vspace{-1em}
\begin{flushright}
\texthebrew{פרק \ref{chap_second} מבוסס על מאמר זה.}
\end{flushright}
% \item Third publication.
% \vspace{-1em}
% \begin{flushright}
% \texthebrew{פרק \ref{chap_third} מבוסס על מאמר זה.}
% \end{flushright}
% \item Fourth publication.
% \vspace{-1em}
% \begin{flushright}
% \texthebrew{פרק \ref{chap_fourth} מבוסס על מאמר זה.}
% \end{flushright}
\end{itemize}
\end{english}}
% If, for some reason, you do not want to use the automatic date mechanism of this template, uncomment the following lines and change accrodingly.
% \renewcommand{\MonthEnglish}{Month}
% \renewcommand{\YearEnglish}{Year}
% \renewcommand{\JewishMonthEnglish}{JewishMonth}
% \renewcommand{\JewishYearEnglish}{JewishYear}
% \renewcommand{\MonthHebrew}{חודש}
% \renewcommand{\YearHebrew}{שנה}
% \renewcommand{\JewishMonthHebrew}{חודש עברי}
% \renewcommand{\JewishYearHebrew}{שנה עברית}
|