ondes / Template-Latex-ITU-Thesis

LaTeX Template of Istanbul Technical University thesis projects
59 stars 21 forks source link

Bold equation numbers #18

Open tasmektep opened 3 years ago

tasmektep commented 3 years ago

The equation number style is not matchin with ITU's template. You can fix this by deleting bold equation number section (bfseries) from defs.tex file.

Use this

% Bold Equation Number, Unbold Reference
\makeatletter
\def\tagform@#1{\maketag@@@{(\ignorespaces#1\unskip\@@italiccorr)}} % All bold in eq. number incl. parentheses 
%\renewcommand{\eqref}[1]{\textup{{\normalfont(\ref{#1}}\normalfont)}}
\renewcommand{\eqref}[1]{\textup{\bf(\ref{#1})}} % All bold in eq. referencing with parentheses - SBÖ
\makeatother

instead this

% Bold Equation Number, Unbold Reference
\makeatletter
\def\tagform@#1{\maketag@@@{\bfseries(\ignorespaces#1\unskip\@@italiccorr)}} % All bold in eq. number incl. parentheses 
%\renewcommand{\eqref}[1]{\textup{{\normalfont(\ref{#1}}\normalfont)}}
\renewcommand{\eqref}[1]{\textup{\bf(\ref{#1})}} % All bold in eq. referencing with parentheses - SBÖ
\makeatother