[Tex/LaTex] Small ceiling brackets

brackets

I need to find a way to insert small ceiling brackets in a text, but I don't find any command to do it.
I'd need the brackets to look like the ones in the second line around MES and MU.36:

enter image description here

I tried with \textuperscript{\lceil{MES}} but it doesn't work (btw I am pretty sure I am also mistaking the brackets {} placement here), it gives the whole text as superscript.

I am attaching my MWE with my preamble: I copied the brackets from the database I am using for the text but they do not show up in the pdf.

MWE:

\documentclass[a4paper, 12pt]{book}
\usepackage[T1]{fontenc}
\usepackage[italian]{babel}
\usepackage[autostyle=true]{csquotes}
\usepackage[backend=biber,style=philosophy-verbose,latinemph,singletitle=true]{biblatex}
\usepackage[a4paper,top=1.5cm,bottom=1.5cm,left=1.5cm,right=1.5cm]{geometry}
\pretolerance=10000
\tolerance=2000 
\emergencystretch=10pt


%%%%

%%%%

\renewcommand{\baselinestretch}{1.5} %INTERLINEA

%%%%

\DeclareLanguageMapping{italian}{italian-philosophy} %MAPPING LINGUA





%%%%%

\usepackage{fontspec}

\usepackage{xunicode}
\usepackage{xltxtra}
\usepackage{paralist}
\usepackage{verbatim}
\usepackage{caption}

\usepackage{tabularx}
\usepackage{multirow}

%%%%

\usepackage{polyglossia}
\newfontfamily\italianfont[Script=Latin]{Times New Roman}
\newfontfamily\greekfont[Script=Greek]{Gentium Plus}
\setmainlanguage{italian}
\setotherlanguages{greek}
\PolyglossiaSetup{italian}{indentfirst=false} %NO INDENT PRIMA RIGA DOPO CHAPTER O SECTION


%%%%



%%%%%%%

\usepackage{blindtext}   
\renewcommand*{\mkbibnamefamily}[1]{\textsc{#1}}


\makeatletter

\DeclareCiteCommand{\textcite}
  {\iffootnote{\usebibmacro{cite:init}}{}%
   \usebibmacro{prenote}}%
  {\usebibmacro{citeindex}%
   \iffootnote
     {\global\booltrue{cbx@mlafootnotes}%
      \renewcommand*{\newunitpunct}{\addcomma\space}%
      \usebibmacro{cite:mla:foot}}
     {\usebibmacro{cite:mla}}}
  {}
  {\usebibmacro{mla:foot:postnote}}

\makeatother


%%%%%%
\bibliography{contratti.bib}

%%%%%

\newcommand{\cmd}[1]{\texttt{\textbackslash #1}}

%%%%%

\setlength{\parindent}{24pt}    %INDENT PARAGRAFI


%%%%%%
%TOGLIE "" AI TITOLI DI TUTTE LE ENTRY
\DeclareFieldFormat*{title}{#1}

\DeclareFieldFormat[article]{citetitle}{#1}
\DeclareFieldFormat[article]{title}{#1} 


%%%%%%%

%TOGLIE PARENTESI A DATE
\renewbibmacro*{issue+date}{%
  \setunit{\addcomma\space}% NEW
%  \printtext[parens]{% DELETED
    \iffieldundef{issue}
      {\usebibmacro{date}}
      {\printfield{issue}%
       \setunit*{\addspace}%
%       \usebibmacro{date}}}% DELETED
       \usebibmacro{date}}% NEW
  \newunit}

%%%%%%

%TOGLIE "P." ALLE PAGINE DI TUTTE LE ENTRY
\DeclareFieldFormat*{pages}{#1}

%%%%%%%
\renewbibmacro*{cite:title}{%
  \ifsingletitle{\usebibmacro{cite:opcit}}{%
    \printtext[bibhyperlink]{%
      \printfield[citetitle]{labeltitle}%
      \iftoggle{cbx:commacit}{\setunit{\addcomma\space}}%
      {\setunit{\addspace\midsentence}}}}}

\usepackage{amstext}
\newcommand{\textunderscript}[1]{$_{\text{#1}}$} %underscript per numeri accadico

\begin{document}

MU.37.KAM\textsubscript{2} man-ti u mse-lu ITU.ŠE 9 LU\textsubscript{2}.mu-ma-'i-ir 
KUR URI.KI u LU\textsubscript{2}.paq-du. ⸢MEŠ⸣  
ša\textsubscript{2} LUGAL ša\textsubscript{2} ina ⸢MU.36⸣.KAM\textsubscript{2} ana KUR sa-par-du ana 
UGU LUGAL GIN-uʾ

\end{document}

Best Answer

The delimiters are named upper-right/left-corner:

\ulcorner and \urcorner

from the package amssymb

Stumbled across on: https://oeis.org/wiki/List_of_LaTeX_mathematical_symbols

Related Question