I am using JHEP class for my physics thesis, but everything written in math environment becomes automatically in bold font. I have tried with different compilers like: TeXworks and TeXmaker. I even send the tex file to my mentor who compiled it on an apple computer and then it works just fine, no bold font.
So the problem has to be on my end, but I am running out of ideas on why it doesn't work. I have tried searching for a solution but it doesn't seem to be a common issue.
Here is the LateX code:
\documentclass[a4paper,11pt]{article}
\usepackage{jheppub}
\usepackage[T1]{fontenc}
\begin{document}
Testing $X=56\in \mathcal{H}$
\begin{equation}
\label{eq:x}
\begin{split}
x &= 1 \,,
\qquad
y = 2 \,,
\\
z &= 3 \,.
\end{split}
\end{equation}
\end{document}
linkhttp://jhep.sissa.it/jhep/help/JHEP_TeXclass.jsp
and I added a link to the package with the full example provided by JHEP.
Everything inside the math environment is written in a bold font. And I stress that if someone else compiles the document it does not happen.
I added the package as was recommended and it fixed the rendering issue. But it created an additional problem; it either completely removed the parenthesis/symbols or just shifted them.
\documentclass[a4paper,11pt]{article}
\pdfoutput=1
\usepackage{jheppub}
\usepackage[swedish,english]{babel}
\usepackage[T1]{fontenc}
\usepackage{MnSymbol}
\usepackage{lmodern}
\begin{document}
\begin{subequations}
\begin{align}
\omega (\alpha X + \beta Y,Z) &= \alpha\omega(X,Z)+\beta\omega(Y,Z)\\
\omega (X,Y)&=-\omega (Y,X) \\
X\minushookup \omega &=0\quad \text{iff} X=0\quad
\end{align}
\end{subequations}
\begin{equation}
N^{\perp} = \{X\in V \,|\,\omega (X,Y)=0\, \forall \, Y\in N \}.
\end{equation}
\end{document}


\begin{document}and\end{document}. – Steve Hodgkinson May 17 '16 at 10:22.logfile and look at the very first line. – Torbjørn T. May 17 '16 at 10:48.logfile to your question as well? I can't guess the cause, but perhaps there are hints in the log that could help someone figure out the problem. – Torbjørn T. May 17 '16 at 11:06.logfile so I just copied the whole file. – Fredovich May 17 '16 at 11:47