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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10330
- 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: 10330
- 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