Getting Math Symbols on MikTeX and TeXnicCenter

  • Thread starter Thread starter Hurkyl
  • Start date Start date
AI Thread Summary
MikTeX users often encounter issues with missing mathematical symbols and fonts, such as the integral sign and the mathbb font. The integral sign can be resolved by ensuring that no conflicting definitions are present in the document preamble. For the mathbb font, users should include the amssymb package, which provides access to blackboard bold fonts commonly used in mathematics. Additional packages like amsmath and amsthm can enhance functionality for mathematical typesetting. Users are encouraged to check the MikTeX package manager for necessary installations and refer to resources like the AMS website for further guidance on LaTeX math typesetting.
Hurkyl
Staff Emeritus
Science Advisor
Gold Member
Messages
14,922
Reaction score
28
My installation of MikTeX (and the TeXnicCenter) has bothered me for a while, because it doesn't have some of my favorite fonts, such as mathbb. (\mathbb{R}) However, I just found out it doesn't even have the integral sign!

I checked the package manager, and nothing that I didn't have installed looked like it would contain things like this...

Someone else has to have already run into this problem and figured out what to do... so how do I get 'em? =)
 
Computer science news on Phys.org
Hurkyl said:
My installation of MikTeX (and the TeXnicCenter) has bothered me for a while, because it doesn't have some of my favorite fonts, such as mathbb. (\mathbb{R}) However, I just found out it doesn't even have the integral sign!

I checked the package manager, and nothing that I didn't have installed looked like it would contain things like this...

Someone else has to have already run into this problem and figured out what to do... so how do I get 'em? =)

Code:
\documentclass[11pt]{article}
\usepackage{amsmath}
\topskip 0in
\textheight 8.0in
\textwidth 6.5in
\oddsidemargin 0in
\evensidemargin 0in
\headheight 0in
\boldmath
\flushbottom
\begin{document}
\noindent

$$
\int{sin(x)}dx
$$


\end{document}

Copy and paste it, save a source file and try to compile it as a DVI. Does that give you a integral symbol?
 
Last edited:
Actually, I figured out my integral woes...

I had copied a header where I had defined \int for something. :blushing: That still doesn't explain why I couldn't find the integral sign in the documentation, though! Bad TeXnicCenter!

I'd still like to get \mathbb if you know how...
 
I believe honestrosewater is right (I've been using MikTeX as well).

Here's a good pdf file for math latex, in case you may be using the wrong function names:
http://www.maths.nottingham.ac.uk/local/Guides/short-math-guide.pdf
 
Last edited by a moderator:
Code:
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{pictex}

use these and you should be fine...I cannot say for sure what package it is in but those work fine for me.

Good luck
 
\usepackage{amssymb} is enough for the blackboard bold math font, though if you use math extensively you should consider always using at least something like

Code:
\documentclass[12pt, article]{memoir}
 
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{mathtools}

\newcommand{\R}{\mathbb{R}}

\begin{document}

$\R$

\[
\R
\]
 
\end{document}
 
Yay, it does seem to have "amssymb". (Sigh, I had only guessed at amssym and amssymbol)
 
Back
Top