Où trouver des opérateurs de logique floue ?#

Voici ce que propose Vincent Henn le 12 avril 1995 pour avoir des commandes simples générant ces opérateurs (avec une légère mise à jour des extensions et commandes pour les adapter aux commandes actuelles).

\documentclass[french]{article}
  \usepackage{lmodern} % Caractères plus lisibles
  \pagestyle{empty} % N'affiche pas de numéro de page
  \usepackage{mathtools}

  \newcommand{\fmin}{\mathop{\flou{\min }}}
  \newcommand{\fmax}{\mathop{\flou{\max }}}
  \newcommand{\V}{\mathop{\mathrm V\kern 0pt}}
  \newcommand{\ET}{\mathrel{\mathrm{ET}}}
  \newcommand{\OU}{\mathrel{\mathrm{OU}}}
  \newcommand{\Sim}{\mathop{\mathrm S \kern 0pt}}
  \newcommand{\hauteur}{\mathop{\mathrm h\kern 0pt}}
  \newcommand{\card}[1]{\| #1 \|}
  \newcommand{\flou}[1]{\ensuremath{\widetilde{#1}}}
  \newcommand{\Poss}{\mathop{\Pi}}
  \newcommand{\Nec}{\mathop{\mathrm N\kern 0pt}}
  \newcommand{\poss}{\operatorname{Poss}}
  \newcommand{\nec}{\operatorname{Nec}}
  \newcommand{\serie}[3]{%
  %  #1 -> le nom de la variable
  %  #2 -> l'indice de début
  %  #3 -> l'indice de fin
  \ensuremath{{#1}_{#2},\ldots,{#1}_{#3}}}

\begin{document}
Voici les différentes commandes générées par ces définitions :
\begin{itemize}
\item $\fmin$, $\fmax$ ;
\item $V$, $\ET$, $\OU$ ;
\item $\Sim$ ;
\item $\hauteur$ ;
\item $\card{A}$, $\flou{A}$ ;
\item $\Poss$, $\poss$ ;
\item $\Nec$, $\nec$ ;
\item $\serie{x}{1}{n}$.
\end{itemize}
\end{document}