Latex Thesis Template
This is the latex code of my Bachelor's thesis and my first book. I deleted most content of the thesis, but left many important structures in there, so you can easily use the existing code as a template for your Bachelor's thesis, Master's thesis, Ph D? thesis or book. The code has the following functionalities:
- external chapter files
- list of tables, list of figures
- ability to use the same code for creating dvi files AND pdf files
- even with images, provided you have the eps and png files ready, see example
- for a free and simple windows program to create eps files, see PNG To EPS And JPG To EPS Converter For Windows
- there are links in the final pdf file and the dvi file
- different kinds of references
- colors
- appendix
- glossary
- pretty source code listings
- large tables that might exceed one page
- works under Linux and Windows
- pretty title page
- etc.
You can also see the complete Bachelor Thesis.
1. Download
2. Additional Information
3. Participate
4. Samples
4.1. The header
5. Comments, Questions and Suggestions
5.0.0.1. ~Shammi, Japan — [-12 May 2007, 13:12-]
2. Additional Information
3. Participate
4. Samples
4.1. The header
5. Comments, Questions and Suggestions
5.0.0.1. ~Shammi, Japan — [-12 May 2007, 13:12-]
1. Download
- the complete package, with sample images LatexThesisFramework.zip
- The final pdf and dvi files: finalThesis.pdf, finalThesis.dvi
- notice the links in the pdf file, very subtle, so it looks great when printed
2. Additional Information
- Q: How do I create eps files or how can I convert png to eps images?
- A: Download Inkscape, copy and paste the image into an empty page and export it to eps. Or even simpler: PNG To EPS And JPG To EPS Converter For Windows
3. Participate
- After you finish your thesis and you think you have some nice additions to the code, please contact me (Richard Socher).
4. Samples
4.1. The header
% Latex Code by Richard Socher, www.socher.org, permission granted to redistribute, if this line is left here ;)
\documentclass[
% pdftex,
a4paper,
12pt,
% twoside,
oneside,
idxtotoc,
halfparskip,
chapterprefix,
]{scrbook}
\usepackage{moreverb}
%\usepackage{german}
%\usepackage[german]{babel}
%ü,ä,ö,ß
\usepackage[latin1]{inputenc}
\usepackage{longtable}
\usepackage{tabularx}
\usepackage{graphics}
\usepackage{verbatim}
\usepackage{listings}
\usepackage{array}
\usepackage[refpages]{gloss}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{courier}
\usepackage{rotating}
\usepackage{color}
\usepackage{comment}
%\definecolor{LinkColor}{rgb}{0,0,0.5} % blue links in pdf?
\definecolor{LinkColor}{rgb}{0,0,0}
\usepackage[%
pdftitle={Bachelor Thesis},%
pdfauthor={Richard Socher},%
pdfcreator={LaTeX with hyperref},
pdfsubject={Automatic Extension of Feature-based Semantic Lexicons via Bootstrapping Algorithms},
pdfkeywords={semantic, bootstrapping}]{hyperref}
\hypersetup{colorlinks=true,%
linkcolor=LinkColor,%
citecolor=LinkColor,%
filecolor=LinkColor,%
menucolor=LinkColor,%
pagecolor=LinkColor,%
urlcolor=LinkColor}
\makegloss
% do this in shell to update:
% directoryOfThesis> bibtex baa_main.gls
\documentclass[
% pdftex,
a4paper,
12pt,
% twoside,
oneside,
idxtotoc,
halfparskip,
chapterprefix,
]{scrbook}
\usepackage{moreverb}
%\usepackage{german}
%\usepackage[german]{babel}
%ü,ä,ö,ß
\usepackage[latin1]{inputenc}
\usepackage{longtable}
\usepackage{tabularx}
\usepackage{graphics}
\usepackage{verbatim}
\usepackage{listings}
\usepackage{array}
\usepackage[refpages]{gloss}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{courier}
\usepackage{rotating}
\usepackage{color}
\usepackage{comment}
%\definecolor{LinkColor}{rgb}{0,0,0.5} % blue links in pdf?
\definecolor{LinkColor}{rgb}{0,0,0}
\usepackage[%
pdftitle={Bachelor Thesis},%
pdfauthor={Richard Socher},%
pdfcreator={LaTeX with hyperref},
pdfsubject={Automatic Extension of Feature-based Semantic Lexicons via Bootstrapping Algorithms},
pdfkeywords={semantic, bootstrapping}]{hyperref}
\hypersetup{colorlinks=true,%
linkcolor=LinkColor,%
citecolor=LinkColor,%
filecolor=LinkColor,%
menucolor=LinkColor,%
pagecolor=LinkColor,%
urlcolor=LinkColor}
\makegloss
% do this in shell to update:
% directoryOfThesis> bibtex baa_main.gls
5. Comments, Questions and Suggestions