It's neccessary to have at least two extra tuples of Albera Operators.
A minimal tuple is a triple (to_be_subset_eq, meet_operator, join_operator).
There are some ideas how to make 2 extra tupes. However I need help with their implementation. For examples, as follows:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{amssymb}
\usepackage{soul}
\setul{1pt}{0.5pt} %depth, thikness
\usepackage[normalem]{ulem}
\renewcommand{\ULthickness}{0.5pt}
\renewcommand{\ULdepth}{1pt}
\usepackage{accents}
\def\uSubsetOne{\mbox{\bfseries\b{$\Subset$}}}
\def\uSubsetTwo{\mbox{\ul{$\Subset$}}} %soul package
\def\uSubsetThree{\mbox{\uline{$\Subset$}}} %ulem pakcage
\newcommand{\uSubsetFour}[1]{\underline{#1\mkern-4mu}\mkern4mu } %\underline hacking
the \underline hacking is from here
\def\uSubsetFive{\mathbf{\underaccent{\bar}{\Subset}}} %accent package
\begin{document}
1. In the First triple $(\sqsubseteq,\sqcap,\sqcup)$ we need to increase the thickness.
2. Possible variants of $\Subset$ upgrading.
2.1. $(\uSubsetOne,\Cap,\Cup)$ --- the line should be at the right corner.
2.2. $(\uSubsetTwo,\Cap,\Cup)$ --- the width of the line is too large, soul package.
2.3. $(\uSubsetThree,\Cap,\Cup)$ --- the width of the line is too large, ulem package.
2.4. $(\uSubsetFour{\Subset},\Cap,\Cup)$ --- lack of thickness, problems with depth and positioning, width is too large.
2.5. $(\uSubsetFive,\Cap,\Cup)$ --- the line should be at the right corner, accents package.
\end{document}
The result of compilation:

Here are some useful links: to design a New Large Math Symbol
to design a New Arrow-like relation symbol - this variant is aslo applicable in case of implementing \multimapdot instead of an arrow in a triple (\sqsubseteq,\sqcap,\sqcup).
to design a New fuzzy logic symbol
to design a New Box-like symbol
Can anyone please help me?



\stackinsetmacro of thestackenginepackage is very good at overlaying glyphs, if you need to tailor the appearance of your new operators. And insets can be nested. See http://tex.stackexchange.com/questions/139355/looking-for-bigcap-or-bigdoublecap/139365#139365, for example, or just do a search for\stackinset. – Steven B. Segletes Feb 19 '14 at 12:06tabstackenginehas found it's way to CTAN.:)– Svend Tveskæg Feb 19 '14 at 12:10\stackunder[0.8pt]{$\Subset$}{\rule{1.4ex}{.3pt}}. – Vladimir Parkhomenko Feb 19 '14 at 15:26