LATEX RESOURCES AND HELPFiles | Converters | Links | Tips |
|
|
I encourage any suggestions that you may have that you want to add to this page. Please email me at mtackett@math.kent.edu if you have any suggestions! I have the following books available for checking out in my office:
|
Style Files and Samples to download |
|
Thesis/Dissertation Latex Sample files (I think... not sure how current these are yet!!!): Thesis format guide | Dissertation Sample |
|
Thesis/Dissertation Style Files: mathdiss.cls | mathdiss.sty | mathdissco.cls | mathdissco.sty | maththesis.cls | maththesis.sty |
|
I believe the usage for the Thesis/Dissertation style files is as follows:
|
|
Department Letterhead for LaTeX: See the README file and comments in the
source files and examples found there. |
|
|
Converters |
| LATEX to WORD converter!!! Click on this link to download a converter for transforming latex into word documents: http://sourceforge.net/projects/latex2rtf |
| Docudesk - not sure where it's at yet, but I've been told that this is a converter for "DVI to PDF" - if I find a link to download it, I'll let you know. |
LaTeX Info Links |
|
These are some links I have visited in the past. They might help you too... |
| Jakob's LaTeX tricks |
| LaTeX help 1.1 - Table of Contents |
| LaTeX Project Home page |
| LaTeX Tricks |
| TeX Users Group (TUG) home page |
| Summary of Latex |
| http://amath.colorado.edu/documentation/LaTeX/ - this page has some really great information too |
LaTeX Tips and hints |
|
For
Math Bold Font: need one of those characters that has the double line
on the letter? Normally, you would use a math bold font to create
the letters and use this code in the header of the file: \newfont{\bb}{msbm10} \def\Bbb#1{\mbox{\bb #1}} Then
you might also add a newcommand line in the header, like this, for
specific letters that you are using: BUT... if you don't have the math
bold font in the package that you are using, sometimes you can cheat
and simply overlay an "I" over the letter, like this:
I know there are other ways to do this also... I think the \mathbb command might do it. |
| Caligraphy: use \cal before the symbol |
|
INSERTING IMAGES: Check out this link
http://amath.colorado.edu/documentation/LaTeX/reference/figures.html
- it has some good information on how to include graphics in your
documents. As for me, to insert images into a
latex document, I use a package called "psfig" and then use \begin{figure}
and \end{figure} commands... Here's a basic example: \begin{figure} \centering \input{} \caption{}\label{} \end{figure} Here's what I use: \begin{figure}[htb] \centerline{\psfig{figure=file.eps}} \caption{blahblahblah} \label{Fig. 1} \end{figure} |