0

I want to achieve something like this:

enter image description here

how do i do this for an arbitrary relation symbol? Latex is putting a whitespace after it.

T_01
  • 127
  • You may try one or some negative space(s) (\!) after the symbol to remove the whitespace folowing... or even some \hspace{-0.5em} or \kern-0.5em etc. – koleygr Jul 22 '19 at 18:15
  • 1
    Your question is not entirely clear. Perhaps try with \mathord{<relation>} or {<relation>}. – Werner Jul 22 '19 at 18:18

1 Answers1

1

I don't think this is necessarily a good idea, but you can just define a new operator:

\documentclass{article}

\usepackage{amsmath}

\DeclareMathOperator\eq{=}

\begin{document}

\[
  \eq(t_1, \dots, t_n)
\]

\end{document}

MWE output

schtandard
  • 14,892