8

I need the LaTeX equation with double square bracket and double paranthesis. Can anyone suggest me the proper code? Here, I had attached the screenshots. enter image description here

jub0bs
  • 58,916
ravi
  • 1,379

2 Answers2

6

In favour of Consistent typography, I always suggest creating a command that generates a certain output:

enter image description here

\documentclass{article}
\newcommand{\llrrbracket}[1]{% \llrrbracket{..}
  \left[\mkern-3mu\left[#1\right]\mkern-3mu\right]}
\newcommand{\llrrparen}[1]{% \llrrparen{..}
  \left(\mkern-6mu\left(#1\right)\mkern-6mu\right)}
\begin{document}
\[
  \llrrbracket{\frac{1}{x}} \quad \mbox{in the case }
  P_\infty = F_p\llrrparen{\frac{1}{x}}
\]
\end{document}

You can, of course, play around with the choice of \mkern, which brings the two elements together.

Werner
  • 603,163
5

You can try the following:

    \documentclass{article}
    \usepackage{amsmath}
    \usepackage{amsfonts}
    \usepackage{stmaryrd}
    \begin{document}
    \begin{equation}
    \bigg\llbracket \frac{1}{x}\bigg\rrbracket  \text{ in the case } P_\infty = \mathbb{F}_p \left(\left(\frac{1}{x} \right)\right)
\end{equation}
    \end{document}

enter image description here

EDIT:

I have updated the code to contain the suggestion given in the comment. The above code uses the stmaryrd package.

Jeel Shah
  • 3,794