- #1
- 10,877
- 423
For about a year and a half now, I've been writing down stuff I've learned into a bunch of LateX files, to make it easy to refresh my memory when I've forgotten something, and perhaps also to be able to show some of it to other people at some point. In order to make it look nice, I chose to use a template that a publisher provides for their book authors. (If someone wants to see it, it's the "monograph" file that can be downloaded from http://www.springer.com/authors/book+authors?SGWID=0-154102-12-417900-0). Everything does look really nice, except for two things:
1. When I use \left and \right to have LaTeX choose the size of parentheses and stuff, they always turn out too big. This also happens when I use the cases environment.
2. There appears to be a negative space after each mathbb character, so if I e.g. want to end a sentence with "[itex]\mathbb C.[/itex]" have to type it as "\mathbb C\ .", or the period won't be visible.
These are problems that can be worked around without too much trouble, but I would of course prefer to fix the problem rather than work around it every time. So does anyone have any idea about what might be wrong? I don't even know what to look for. I guess I should look in the .cls file, but look for what?
This is the stuff at the start of the main LaTeX file.
The DeclareMathAlphabet command is something I found in a Google search. It restores the normal mathcal font, which had been replaced by something else.
1. When I use \left and \right to have LaTeX choose the size of parentheses and stuff, they always turn out too big. This also happens when I use the cases environment.
2. There appears to be a negative space after each mathbb character, so if I e.g. want to end a sentence with "[itex]\mathbb C.[/itex]" have to type it as "\mathbb C\ .", or the period won't be visible.
These are problems that can be worked around without too much trouble, but I would of course prefer to fix the problem rather than work around it every time. So does anyone have any idea about what might be wrong? I don't even know what to look for. I guess I should look in the .cls file, but look for what?
This is the stuff at the start of the main LaTeX file.
Code:
documentclass[graybox,envcountchap,sectrefs,envcountsame]{svmono}
\usepackage{mathptmx}
\usepackage{helvet}
\usepackage{courier}
\usepackage{type1cm}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage[bottom]{footmisc}
\usepackage{mathtools}
\DeclareMathAlphabet{\mathcal}{OMS}{cmsy}{m}{n}
\makeindex
\usepackage{amsmath,amssymb,enumerate,mathtools}
The DeclareMathAlphabet command is something I found in a Google search. It restores the normal mathcal font, which had been replaced by something else.