0

Is there a command for this symbol in Latex? |=. If I use | and = in the source code, then in the pdf there is a big gap between them.

The symbol is from math (from logical clauses). I'm not exactly sure how to translate it in english, it kinda means "resolves" and it used like this c |= C.

Silent Control
  • 103
  • 1
  • 4

1 Answers1

2

I think what you are trying to achieve is a relative operator defined by \models

I think you can use this

\documentclass{article}
\begin{document}
    $c\models C$
\end{document}

to get as shown below

Moreover, as @campa pointed out try looking up for the symbol as well.

Also, another option is using \vDash (as ''campa'' pointed told us in comments) that is available in amssymb package.

\documentclass{article}
\usepackage{amssymb}
\begin{document}
    $c\vDash C$
\end{document}

to get

enter image description here