2

enter image description here

How to put the hat in the above symbol in LaTeX?

Suman
  • 557

3 Answers3

4

I understand, that it is like some kind of Fourier transform of the whole expression. An alternative version added.

\documentclass{article}

\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}

\newcommand{\Sel}{\operatorname{Sel}}

\[
\Sel_{E}^{\Sigma_0}(\mathbb{Q}_\infty)_p{}\widehat{}
\]

But probably better

\[
(\Sel_{E}^{\Sigma_0}(\mathbb{Q}_\infty)_p)\,\widehat{}
\]

\end{document}

enter image description here

3

If a really wide "hat" symbol that should cover the entire expression is what you're after, you may want to look into using the Mathtime Professional 2 (mtpro2) package. The full package isn't free of charge, but its "lite" subset, which is all that's needed to create a superwide hat symbol, is indeed free.

enter image description here

\documentclass{article}
\usepackage{amsmath,amssymb}
\newcommand{\Sel}{\operatorname{Sel}}
\usepackage[lite]{mtpro2}
\begin{document}
\begin{equation*}
\widehat{\Sel_{\mathrm{E}}^{\Sigma_0}(\mathbb{Q}_\infty)_p}
\end{equation*}
\end{document}
Mico
  • 506,678
0

you write

Hat covers the whole expression

Do you mean something like this?

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}

\newcommand{\Sel}{\operatorname{Sel}}

\begin{equation*}
\widehat{\Sel_{E}^{\Sigma_0}(\mathbb{Q}_\infty)_p{}}
\end{equation*}


\end{document}

also, you might want to check this question

Federico
  • 873
  • 1
  • 7
  • 21