MiKTeX and proTeXt ⇒ Symbols not printing correctly
Symbols not printing correctly
Can someone suggest why?
\begin{eqnarray*}
{\rm var}\left[ {\alphabold \zeta } \right]= \sigma^2\left(\alphabold\Sigma_{c}\otimes \alphabold\Sigma_{r}\right)
\end{eqnarray*}
My definitions at the beginning of my file are:
\documentclass[12pt,twoside]{article}
\usepackage{amsmath,epsfig}
\usepackage{jabes_modify}
\usepackage[hang]{subfigure}
\usepackage{verbatim}
\usepackage{lineno}
\usepackage{latexsym}
\usepackage{times}
\usepackage{bm}
Thanks
Jo
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Symbols not printing correctly
do you get errors or warnings?
After I've built a compilable example from your code snippets, the \Sigma was printed fine. I've used this code, because I don't have jabes_modify.sty and no \alphabold symbol:
Code: Select all
\documentclass[12pt,twoside]{article}
\usepackage{amsmath,epsfig}
%\usepackage{jabes_modify}
\usepackage[hang]{subfigure}
\usepackage{verbatim}
\usepackage{lineno}
\usepackage{latexsym}
\usepackage{times}
\usepackage{bm}
\begin{document}
\begin{eqnarray*}
{\rm var}\left[ {\alpha \zeta } \right]= \sigma^2\left(\alpha \Sigma_{c}\otimes \alpha \Sigma_{r}\right)
\end{eqnarray*}
\end{document}
By the way: don't use eqnarray, it's outdated and produces inconsistent spacing, use the align environment instead, see eqnarray vs. align for more information. \rm is deprecated too.
The code above doesn't even need eqnarray*, equation* would be enough.
Stefan
Symbols not printing correctly
Code: Select all
\documentclass[12pt,twoside]{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{jabes_modify}
\usepackage[format=hang]{subfig}
\usepackage{verbatim}
\usepackage{lineno}
\usepackage{latexsym}
\usepackage{mathptmx}
\usepackage{bm}
Code: Select all
\newcommand*\alphabold{\boldsymbol{\alpha}}
Re: Symbols not printing correctly
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Symbols not printing correctly
how did you define \alphabold?
For instance \Sigma can be made bold also by \boldsymbol{\Sigma}.
Stefan