Gauss brackets with double vertical linesHow can I create a new extensible symbol?Use custom bracketsproblem of introducing long brackets in different linesDouble square bracketsTwo double-line equations need double left bracketsProblem with bracketsperp with two vertical linesBrackets around multiple linesCurly brackets spanning multiple lines (no math env)Impact of enclosing lines with curly bracketsbig double square bracketsDouble vertical bar with dash through it

PTIJ: Which Dr. Seuss books should one obtain?

Why is indicated airspeed rather than ground speed used during the takeoff roll?

Jem'Hadar, something strange about their life expectancy

Why is "la Gestapo" feminine?

Should a narrator ever describe things based on a characters view instead of fact?

How do you justify more code being written by following clean code practices?

Should I be concerned about student access to a test bank?

Why is there so much iron?

Why are there no stars visible in cislunar space?

What is the reasoning behind standardization (dividing by standard deviation)?

Do people actually use the word "kaputt" in conversation?

Imaginary part of expression too difficult to calculate

"Marked down as someone wanting to sell shares." What does that mean?

How to find the largest number(s) in a list of elements, possibly non-unique?

Have the tides ever turned twice on any open problem?

Why is participating in the European Parliamentary elections used as a threat?

What is it called when someone votes for an option that's not their first choice?

What is the tangent at a sharp point on a curve?

Does convergence of polynomials imply that of its coefficients?

Would mining huge amounts of resources on the Moon change its orbit?

What is 露わになる affecting in the following sentence, '才能の持ち主' (持ち主 to be specific) or '才能'?

What will the Frenchman say?

What is the difference between something being completely legal and being completely decriminalized?

Does fire aspect on a sword, destroy mob drops?



Gauss brackets with double vertical lines


How can I create a new extensible symbol?Use custom bracketsproblem of introducing long brackets in different linesDouble square bracketsTwo double-line equations need double left bracketsProblem with bracketsperp with two vertical linesBrackets around multiple linesCurly brackets spanning multiple lines (no math env)Impact of enclosing lines with curly bracketsbig double square bracketsDouble vertical bar with dash through it













4















I would like to have commands for left- and right gauss brackets which have a double vertical line, but otherwise behave exactly like lfloor and rfloor. In particular, they should come in various sizes and other things should stay unchanged.



I found two candidates, which are both not optimal, unfortunately:



  • llfloor and rrfloor in the package stmaryrd. Unfortunately they do not understand preceeding left and right commands. My impression is they are fixed size.


  • lFloor and rFloor in the package nath. They come in different sizes, but the problem is that including the package nath introduces automatic sizing behaviour of all symbols of parantheses-type. This might be interesting, but for the moment this change is just too radical for my taste.










share|improve this question






















  • Please do you have available a MWE for this problem? Thank you.

    – Sebastiano
    5 hours ago












  • tex.stackexchange.com/questions/140055/use-custom-brackets

    – JPi
    3 hours ago















4















I would like to have commands for left- and right gauss brackets which have a double vertical line, but otherwise behave exactly like lfloor and rfloor. In particular, they should come in various sizes and other things should stay unchanged.



I found two candidates, which are both not optimal, unfortunately:



  • llfloor and rrfloor in the package stmaryrd. Unfortunately they do not understand preceeding left and right commands. My impression is they are fixed size.


  • lFloor and rFloor in the package nath. They come in different sizes, but the problem is that including the package nath introduces automatic sizing behaviour of all symbols of parantheses-type. This might be interesting, but for the moment this change is just too radical for my taste.










share|improve this question






















  • Please do you have available a MWE for this problem? Thank you.

    – Sebastiano
    5 hours ago












  • tex.stackexchange.com/questions/140055/use-custom-brackets

    – JPi
    3 hours ago













4












4








4


1






I would like to have commands for left- and right gauss brackets which have a double vertical line, but otherwise behave exactly like lfloor and rfloor. In particular, they should come in various sizes and other things should stay unchanged.



I found two candidates, which are both not optimal, unfortunately:



  • llfloor and rrfloor in the package stmaryrd. Unfortunately they do not understand preceeding left and right commands. My impression is they are fixed size.


  • lFloor and rFloor in the package nath. They come in different sizes, but the problem is that including the package nath introduces automatic sizing behaviour of all symbols of parantheses-type. This might be interesting, but for the moment this change is just too radical for my taste.










share|improve this question














I would like to have commands for left- and right gauss brackets which have a double vertical line, but otherwise behave exactly like lfloor and rfloor. In particular, they should come in various sizes and other things should stay unchanged.



I found two candidates, which are both not optimal, unfortunately:



  • llfloor and rrfloor in the package stmaryrd. Unfortunately they do not understand preceeding left and right commands. My impression is they are fixed size.


  • lFloor and rFloor in the package nath. They come in different sizes, but the problem is that including the package nath introduces automatic sizing behaviour of all symbols of parantheses-type. This might be interesting, but for the moment this change is just too radical for my taste.







symbols brackets stmaryrd nath






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 5 hours ago









azimutazimut

396513




396513












  • Please do you have available a MWE for this problem? Thank you.

    – Sebastiano
    5 hours ago












  • tex.stackexchange.com/questions/140055/use-custom-brackets

    – JPi
    3 hours ago

















  • Please do you have available a MWE for this problem? Thank you.

    – Sebastiano
    5 hours ago












  • tex.stackexchange.com/questions/140055/use-custom-brackets

    – JPi
    3 hours ago
















Please do you have available a MWE for this problem? Thank you.

– Sebastiano
5 hours ago






Please do you have available a MWE for this problem? Thank you.

– Sebastiano
5 hours ago














tex.stackexchange.com/questions/140055/use-custom-brackets

– JPi
3 hours ago





tex.stackexchange.com/questions/140055/use-custom-brackets

– JPi
3 hours ago










2 Answers
2






active

oldest

votes


















3














Thanks to Werner for providing a solution for this similar question.



A rather quick fix using scalerel would be the following.



Conveniently, scalerel provides scaleleftright[<max width>]<left obj><stuff><right obj> (and a comparable stretchleftright) for scaling/stretching both <left obj> and <right obj> to the height of <stuff> (constrained, if required and optional, to a width of <max width>). Here's a quick example:





documentclassarticle
usepackagescalerel, stmaryrd % http://ctan.org/pkg/scalerel

newcommandgaussbracket[1]stretchleftrightllfloor#1rrfloor

begindocument
[ gaussbracketdisplaystylesum_i=1^n i ]
enddocument





share|improve this answer




















  • 1





    Very very good. I have really appreciated your code.

    – Sebastiano
    5 hours ago











  • Thanks, but it's not exactly what I wanted. I wanted a pair of commands, one for left and one for right bracket, which can be resized by big, Big, etc. Also, the scaled symbol does not look so good (too thick vertical line).

    – azimut
    3 hours ago



















2














An option if you don't want to use any packages other than amsmath would be to place two lfloors next to each other with a little negative space between:



enter image description here



This has the advantage of not thickening the horizontal portion of the delimiter.



documentclassarticle
usepackageamsmath

newcommandgaussbr[1]%
leftlfloorhspace-.33emleftlfloor #1rightrfloorhspace-.33emrightrfloor%


begindocument

[
gaussbrAgaussbrsum_n=0^inftya_n
]

enddocument


Of course, you can adjust the amount of negative space to your liking.






share|improve this answer
























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "85"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f480159%2fgauss-brackets-with-double-vertical-lines%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    Thanks to Werner for providing a solution for this similar question.



    A rather quick fix using scalerel would be the following.



    Conveniently, scalerel provides scaleleftright[<max width>]<left obj><stuff><right obj> (and a comparable stretchleftright) for scaling/stretching both <left obj> and <right obj> to the height of <stuff> (constrained, if required and optional, to a width of <max width>). Here's a quick example:





    documentclassarticle
    usepackagescalerel, stmaryrd % http://ctan.org/pkg/scalerel

    newcommandgaussbracket[1]stretchleftrightllfloor#1rrfloor

    begindocument
    [ gaussbracketdisplaystylesum_i=1^n i ]
    enddocument





    share|improve this answer




















    • 1





      Very very good. I have really appreciated your code.

      – Sebastiano
      5 hours ago











    • Thanks, but it's not exactly what I wanted. I wanted a pair of commands, one for left and one for right bracket, which can be resized by big, Big, etc. Also, the scaled symbol does not look so good (too thick vertical line).

      – azimut
      3 hours ago
















    3














    Thanks to Werner for providing a solution for this similar question.



    A rather quick fix using scalerel would be the following.



    Conveniently, scalerel provides scaleleftright[<max width>]<left obj><stuff><right obj> (and a comparable stretchleftright) for scaling/stretching both <left obj> and <right obj> to the height of <stuff> (constrained, if required and optional, to a width of <max width>). Here's a quick example:





    documentclassarticle
    usepackagescalerel, stmaryrd % http://ctan.org/pkg/scalerel

    newcommandgaussbracket[1]stretchleftrightllfloor#1rrfloor

    begindocument
    [ gaussbracketdisplaystylesum_i=1^n i ]
    enddocument





    share|improve this answer




















    • 1





      Very very good. I have really appreciated your code.

      – Sebastiano
      5 hours ago











    • Thanks, but it's not exactly what I wanted. I wanted a pair of commands, one for left and one for right bracket, which can be resized by big, Big, etc. Also, the scaled symbol does not look so good (too thick vertical line).

      – azimut
      3 hours ago














    3












    3








    3







    Thanks to Werner for providing a solution for this similar question.



    A rather quick fix using scalerel would be the following.



    Conveniently, scalerel provides scaleleftright[<max width>]<left obj><stuff><right obj> (and a comparable stretchleftright) for scaling/stretching both <left obj> and <right obj> to the height of <stuff> (constrained, if required and optional, to a width of <max width>). Here's a quick example:





    documentclassarticle
    usepackagescalerel, stmaryrd % http://ctan.org/pkg/scalerel

    newcommandgaussbracket[1]stretchleftrightllfloor#1rrfloor

    begindocument
    [ gaussbracketdisplaystylesum_i=1^n i ]
    enddocument





    share|improve this answer















    Thanks to Werner for providing a solution for this similar question.



    A rather quick fix using scalerel would be the following.



    Conveniently, scalerel provides scaleleftright[<max width>]<left obj><stuff><right obj> (and a comparable stretchleftright) for scaling/stretching both <left obj> and <right obj> to the height of <stuff> (constrained, if required and optional, to a width of <max width>). Here's a quick example:





    documentclassarticle
    usepackagescalerel, stmaryrd % http://ctan.org/pkg/scalerel

    newcommandgaussbracket[1]stretchleftrightllfloor#1rrfloor

    begindocument
    [ gaussbracketdisplaystylesum_i=1^n i ]
    enddocument






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited 5 hours ago

























    answered 5 hours ago









    PeiffapPeiffap

    787




    787







    • 1





      Very very good. I have really appreciated your code.

      – Sebastiano
      5 hours ago











    • Thanks, but it's not exactly what I wanted. I wanted a pair of commands, one for left and one for right bracket, which can be resized by big, Big, etc. Also, the scaled symbol does not look so good (too thick vertical line).

      – azimut
      3 hours ago













    • 1





      Very very good. I have really appreciated your code.

      – Sebastiano
      5 hours ago











    • Thanks, but it's not exactly what I wanted. I wanted a pair of commands, one for left and one for right bracket, which can be resized by big, Big, etc. Also, the scaled symbol does not look so good (too thick vertical line).

      – azimut
      3 hours ago








    1




    1





    Very very good. I have really appreciated your code.

    – Sebastiano
    5 hours ago





    Very very good. I have really appreciated your code.

    – Sebastiano
    5 hours ago













    Thanks, but it's not exactly what I wanted. I wanted a pair of commands, one for left and one for right bracket, which can be resized by big, Big, etc. Also, the scaled symbol does not look so good (too thick vertical line).

    – azimut
    3 hours ago






    Thanks, but it's not exactly what I wanted. I wanted a pair of commands, one for left and one for right bracket, which can be resized by big, Big, etc. Also, the scaled symbol does not look so good (too thick vertical line).

    – azimut
    3 hours ago












    2














    An option if you don't want to use any packages other than amsmath would be to place two lfloors next to each other with a little negative space between:



    enter image description here



    This has the advantage of not thickening the horizontal portion of the delimiter.



    documentclassarticle
    usepackageamsmath

    newcommandgaussbr[1]%
    leftlfloorhspace-.33emleftlfloor #1rightrfloorhspace-.33emrightrfloor%


    begindocument

    [
    gaussbrAgaussbrsum_n=0^inftya_n
    ]

    enddocument


    Of course, you can adjust the amount of negative space to your liking.






    share|improve this answer





























      2














      An option if you don't want to use any packages other than amsmath would be to place two lfloors next to each other with a little negative space between:



      enter image description here



      This has the advantage of not thickening the horizontal portion of the delimiter.



      documentclassarticle
      usepackageamsmath

      newcommandgaussbr[1]%
      leftlfloorhspace-.33emleftlfloor #1rightrfloorhspace-.33emrightrfloor%


      begindocument

      [
      gaussbrAgaussbrsum_n=0^inftya_n
      ]

      enddocument


      Of course, you can adjust the amount of negative space to your liking.






      share|improve this answer



























        2












        2








        2







        An option if you don't want to use any packages other than amsmath would be to place two lfloors next to each other with a little negative space between:



        enter image description here



        This has the advantage of not thickening the horizontal portion of the delimiter.



        documentclassarticle
        usepackageamsmath

        newcommandgaussbr[1]%
        leftlfloorhspace-.33emleftlfloor #1rightrfloorhspace-.33emrightrfloor%


        begindocument

        [
        gaussbrAgaussbrsum_n=0^inftya_n
        ]

        enddocument


        Of course, you can adjust the amount of negative space to your liking.






        share|improve this answer















        An option if you don't want to use any packages other than amsmath would be to place two lfloors next to each other with a little negative space between:



        enter image description here



        This has the advantage of not thickening the horizontal portion of the delimiter.



        documentclassarticle
        usepackageamsmath

        newcommandgaussbr[1]%
        leftlfloorhspace-.33emleftlfloor #1rightrfloorhspace-.33emrightrfloor%


        begindocument

        [
        gaussbrAgaussbrsum_n=0^inftya_n
        ]

        enddocument


        Of course, you can adjust the amount of negative space to your liking.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited 1 hour ago

























        answered 1 hour ago









        Sandy GSandy G

        3,2671425




        3,2671425



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f480159%2fgauss-brackets-with-double-vertical-lines%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

            Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

            Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»