Environment with argument and optional argument












2















I want to create an environment that receives an argument and an optional argument in such a way that the first argument will be a title and the optional argument will decide whether the title should be justified to the left or centered. It's possible without any package?










share|improve this question




















  • 1





    Yes, this is possible and there are many packages, that provide such environments already, e.g. mdframed or tcolorbox, with lot of additional features.

    – user31729
    Feb 1 at 17:25













  • You should take look at the xparsepackage to do that.

    – Bernard
    Feb 1 at 17:26











  • I want to do it without any package.

    – Joan
    Feb 1 at 17:29
















2















I want to create an environment that receives an argument and an optional argument in such a way that the first argument will be a title and the optional argument will decide whether the title should be justified to the left or centered. It's possible without any package?










share|improve this question




















  • 1





    Yes, this is possible and there are many packages, that provide such environments already, e.g. mdframed or tcolorbox, with lot of additional features.

    – user31729
    Feb 1 at 17:25













  • You should take look at the xparsepackage to do that.

    – Bernard
    Feb 1 at 17:26











  • I want to do it without any package.

    – Joan
    Feb 1 at 17:29














2












2








2








I want to create an environment that receives an argument and an optional argument in such a way that the first argument will be a title and the optional argument will decide whether the title should be justified to the left or centered. It's possible without any package?










share|improve this question
















I want to create an environment that receives an argument and an optional argument in such a way that the first argument will be a title and the optional argument will decide whether the title should be justified to the left or centered. It's possible without any package?







macros environments






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 1 at 22:00







user31729

















asked Feb 1 at 17:16









JoanJoan

1027




1027








  • 1





    Yes, this is possible and there are many packages, that provide such environments already, e.g. mdframed or tcolorbox, with lot of additional features.

    – user31729
    Feb 1 at 17:25













  • You should take look at the xparsepackage to do that.

    – Bernard
    Feb 1 at 17:26











  • I want to do it without any package.

    – Joan
    Feb 1 at 17:29














  • 1





    Yes, this is possible and there are many packages, that provide such environments already, e.g. mdframed or tcolorbox, with lot of additional features.

    – user31729
    Feb 1 at 17:25













  • You should take look at the xparsepackage to do that.

    – Bernard
    Feb 1 at 17:26











  • I want to do it without any package.

    – Joan
    Feb 1 at 17:29








1




1





Yes, this is possible and there are many packages, that provide such environments already, e.g. mdframed or tcolorbox, with lot of additional features.

– user31729
Feb 1 at 17:25







Yes, this is possible and there are many packages, that provide such environments already, e.g. mdframed or tcolorbox, with lot of additional features.

– user31729
Feb 1 at 17:25















You should take look at the xparsepackage to do that.

– Bernard
Feb 1 at 17:26





You should take look at the xparsepackage to do that.

– Bernard
Feb 1 at 17:26













I want to do it without any package.

– Joan
Feb 1 at 17:29





I want to do it without any package.

– Joan
Feb 1 at 17:29










3 Answers
3






active

oldest

votes


















5














The optional argument can be l or c (default c).



documentclass{article}

makeatletter
newenvironment{something}[2][c]
{begin{csname #1@somethingtitleendcsname}
bfseries #2
end{csname #1@somethingtitleendcsname}}
{paraddvspace{topsep}}
newcommandl@somethingtitle{flushleft}
newcommandc@somethingtitle{center}
makeatother

begin{document}

begin{something}{This is centered}
This is the environment's contents
This is the environment's contents
This is the environment's contents
This is the environment's contents
end{something}

begin{something}[l]{This is left flush}
This is the environment's contents
This is the environment's contents
This is the environment's contents
This is the environment's contents
end{something}

end{document}


enter image description here






share|improve this answer
























  • I would like to know why you use the char @?

    – Joan
    Feb 1 at 22:10











  • @Joan In order to avoid clashes with user macros.

    – egreg
    Feb 1 at 23:02











  • in the case that I want to add an optional argument that allows to decide if the title wants to be added to the ToC, how could I do it?

    – Joan
    Feb 21 at 21:04



















4














enter image description here



Without any package: Using an optional argument that is checked with pdfstrcmp (a pdftex primitive).



If #1 is equal to left, the title is left aligned, in any other case it is centered.



documentclass{article}

newenvironment{foo}[2]{%
ifnumpdfstrcmp{#1}{left}=0%
#2%
else
hfil#2hfil%
fi%
medskip

}{}

newcommand{footitleformat}[1]{%
bfseriesMakeUppercase{#1}%
}

newenvironment{fooother}[2]{%
ifnumpdfstrcmp{#1}{left}=0%
footitleformat{#2}%
else
begingroup
centering
footitleformat{#2}%

endgroup
fi%
medskip

}{}



begin{document}

begin{foo}{This is centered}
Foo stuff
end{foo}


begin{foo}[left]{This is not centered}
Other Foo stuff
end{foo}

begin{fooother}{This is centered again}

Yet another Foo stuff
end{fooother}


end{document}

documentclass{article}

newenvironment{foo}[2]{%
ifnumpdfstrcmp{#1}{left}=0%
#2%
else
hfil#2hfil%
fi%
medskip

}{}


begin{document}

begin{foo}{This is centered}
Foo stuff
end{foo}


begin{foo}[left]{This is not centered}
Other Foo stuff
end{foo}


end{document}





share|improve this answer


























  • I try to use {centeringbfseriesMakeUppercase{#2}} but the text is not center...

    – Joan
    Feb 1 at 18:01













  • @Joan: You need an empty line after centering

    – user31729
    Feb 1 at 18:04











  • Don't understand.

    – Joan
    Feb 1 at 18:13











  • @Joan: I changed the answer: I was too short in my explanation ... you need an empty line after the text that is to be centered.

    – user31729
    Feb 1 at 18:25






  • 1





    @Joan: See the answers to the question here -- it takes too long to explain this in a comment

    – user31729
    Feb 1 at 20:25





















3














Write the environment to take a key-valued optional argument



enter image description here



documentclass{article}

usepackage{xkeyval}

makeatletter
% From the xkeyval documentation (section 3.3 Choice keys)
% http://texdoc.net/texmf-dist/doc/latex/xkeyval/xkeyval.pdf
define@choicekey*{paralign}{align}[valnr]{left,center,right}[center]{% Add align=? key-value
gdeftitlealign{}%
ifcasenrrelax
gdeftitlealign{raggedright}or% 0 = left
gdeftitlealign{centering}or% 1 = center
gdeftitlealign{raggedleft}% 2 = right
fi
}
define@cmdkey{paralign}{format}{}% Add format=? key-value

newenvironment{mytitle}[2]{%
paraddvspace{medskipamount}
begingroup
setkeys{paralign}{%
align,format,% Default settings (align=center,format={})
#1}% Local settings
titlealign cmdKV@paralign@format #2%
par
endgroup
nobreaksmallskip
}{%
paraddvspace{medskipamount}
}
makeatother

begin{document}

begin{mytitle}{Centred titled}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
enim ligula, a efficitur augue sodales nonldots
end{mytitle}

begin{mytitle}[align=left]{Left-aligned title}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
enim ligula, a efficitur augue sodales nonldots
end{mytitle}

begin{mytitle}[align=right,format=bfseries]{Right-aligned title}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
enim ligula, a efficitur augue sodales nonldots
end{mytitle}

end{document}





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%2f472914%2fenvironment-with-argument-and-optional-argument%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    5














    The optional argument can be l or c (default c).



    documentclass{article}

    makeatletter
    newenvironment{something}[2][c]
    {begin{csname #1@somethingtitleendcsname}
    bfseries #2
    end{csname #1@somethingtitleendcsname}}
    {paraddvspace{topsep}}
    newcommandl@somethingtitle{flushleft}
    newcommandc@somethingtitle{center}
    makeatother

    begin{document}

    begin{something}{This is centered}
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    end{something}

    begin{something}[l]{This is left flush}
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    end{something}

    end{document}


    enter image description here






    share|improve this answer
























    • I would like to know why you use the char @?

      – Joan
      Feb 1 at 22:10











    • @Joan In order to avoid clashes with user macros.

      – egreg
      Feb 1 at 23:02











    • in the case that I want to add an optional argument that allows to decide if the title wants to be added to the ToC, how could I do it?

      – Joan
      Feb 21 at 21:04
















    5














    The optional argument can be l or c (default c).



    documentclass{article}

    makeatletter
    newenvironment{something}[2][c]
    {begin{csname #1@somethingtitleendcsname}
    bfseries #2
    end{csname #1@somethingtitleendcsname}}
    {paraddvspace{topsep}}
    newcommandl@somethingtitle{flushleft}
    newcommandc@somethingtitle{center}
    makeatother

    begin{document}

    begin{something}{This is centered}
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    end{something}

    begin{something}[l]{This is left flush}
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    end{something}

    end{document}


    enter image description here






    share|improve this answer
























    • I would like to know why you use the char @?

      – Joan
      Feb 1 at 22:10











    • @Joan In order to avoid clashes with user macros.

      – egreg
      Feb 1 at 23:02











    • in the case that I want to add an optional argument that allows to decide if the title wants to be added to the ToC, how could I do it?

      – Joan
      Feb 21 at 21:04














    5












    5








    5







    The optional argument can be l or c (default c).



    documentclass{article}

    makeatletter
    newenvironment{something}[2][c]
    {begin{csname #1@somethingtitleendcsname}
    bfseries #2
    end{csname #1@somethingtitleendcsname}}
    {paraddvspace{topsep}}
    newcommandl@somethingtitle{flushleft}
    newcommandc@somethingtitle{center}
    makeatother

    begin{document}

    begin{something}{This is centered}
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    end{something}

    begin{something}[l]{This is left flush}
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    end{something}

    end{document}


    enter image description here






    share|improve this answer













    The optional argument can be l or c (default c).



    documentclass{article}

    makeatletter
    newenvironment{something}[2][c]
    {begin{csname #1@somethingtitleendcsname}
    bfseries #2
    end{csname #1@somethingtitleendcsname}}
    {paraddvspace{topsep}}
    newcommandl@somethingtitle{flushleft}
    newcommandc@somethingtitle{center}
    makeatother

    begin{document}

    begin{something}{This is centered}
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    end{something}

    begin{something}[l]{This is left flush}
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    This is the environment's contents
    end{something}

    end{document}


    enter image description here







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Feb 1 at 21:53









    egregegreg

    733k8919313256




    733k8919313256













    • I would like to know why you use the char @?

      – Joan
      Feb 1 at 22:10











    • @Joan In order to avoid clashes with user macros.

      – egreg
      Feb 1 at 23:02











    • in the case that I want to add an optional argument that allows to decide if the title wants to be added to the ToC, how could I do it?

      – Joan
      Feb 21 at 21:04



















    • I would like to know why you use the char @?

      – Joan
      Feb 1 at 22:10











    • @Joan In order to avoid clashes with user macros.

      – egreg
      Feb 1 at 23:02











    • in the case that I want to add an optional argument that allows to decide if the title wants to be added to the ToC, how could I do it?

      – Joan
      Feb 21 at 21:04

















    I would like to know why you use the char @?

    – Joan
    Feb 1 at 22:10





    I would like to know why you use the char @?

    – Joan
    Feb 1 at 22:10













    @Joan In order to avoid clashes with user macros.

    – egreg
    Feb 1 at 23:02





    @Joan In order to avoid clashes with user macros.

    – egreg
    Feb 1 at 23:02













    in the case that I want to add an optional argument that allows to decide if the title wants to be added to the ToC, how could I do it?

    – Joan
    Feb 21 at 21:04





    in the case that I want to add an optional argument that allows to decide if the title wants to be added to the ToC, how could I do it?

    – Joan
    Feb 21 at 21:04











    4














    enter image description here



    Without any package: Using an optional argument that is checked with pdfstrcmp (a pdftex primitive).



    If #1 is equal to left, the title is left aligned, in any other case it is centered.



    documentclass{article}

    newenvironment{foo}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    #2%
    else
    hfil#2hfil%
    fi%
    medskip

    }{}

    newcommand{footitleformat}[1]{%
    bfseriesMakeUppercase{#1}%
    }

    newenvironment{fooother}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    footitleformat{#2}%
    else
    begingroup
    centering
    footitleformat{#2}%

    endgroup
    fi%
    medskip

    }{}



    begin{document}

    begin{foo}{This is centered}
    Foo stuff
    end{foo}


    begin{foo}[left]{This is not centered}
    Other Foo stuff
    end{foo}

    begin{fooother}{This is centered again}

    Yet another Foo stuff
    end{fooother}


    end{document}

    documentclass{article}

    newenvironment{foo}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    #2%
    else
    hfil#2hfil%
    fi%
    medskip

    }{}


    begin{document}

    begin{foo}{This is centered}
    Foo stuff
    end{foo}


    begin{foo}[left]{This is not centered}
    Other Foo stuff
    end{foo}


    end{document}





    share|improve this answer


























    • I try to use {centeringbfseriesMakeUppercase{#2}} but the text is not center...

      – Joan
      Feb 1 at 18:01













    • @Joan: You need an empty line after centering

      – user31729
      Feb 1 at 18:04











    • Don't understand.

      – Joan
      Feb 1 at 18:13











    • @Joan: I changed the answer: I was too short in my explanation ... you need an empty line after the text that is to be centered.

      – user31729
      Feb 1 at 18:25






    • 1





      @Joan: See the answers to the question here -- it takes too long to explain this in a comment

      – user31729
      Feb 1 at 20:25


















    4














    enter image description here



    Without any package: Using an optional argument that is checked with pdfstrcmp (a pdftex primitive).



    If #1 is equal to left, the title is left aligned, in any other case it is centered.



    documentclass{article}

    newenvironment{foo}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    #2%
    else
    hfil#2hfil%
    fi%
    medskip

    }{}

    newcommand{footitleformat}[1]{%
    bfseriesMakeUppercase{#1}%
    }

    newenvironment{fooother}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    footitleformat{#2}%
    else
    begingroup
    centering
    footitleformat{#2}%

    endgroup
    fi%
    medskip

    }{}



    begin{document}

    begin{foo}{This is centered}
    Foo stuff
    end{foo}


    begin{foo}[left]{This is not centered}
    Other Foo stuff
    end{foo}

    begin{fooother}{This is centered again}

    Yet another Foo stuff
    end{fooother}


    end{document}

    documentclass{article}

    newenvironment{foo}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    #2%
    else
    hfil#2hfil%
    fi%
    medskip

    }{}


    begin{document}

    begin{foo}{This is centered}
    Foo stuff
    end{foo}


    begin{foo}[left]{This is not centered}
    Other Foo stuff
    end{foo}


    end{document}





    share|improve this answer


























    • I try to use {centeringbfseriesMakeUppercase{#2}} but the text is not center...

      – Joan
      Feb 1 at 18:01













    • @Joan: You need an empty line after centering

      – user31729
      Feb 1 at 18:04











    • Don't understand.

      – Joan
      Feb 1 at 18:13











    • @Joan: I changed the answer: I was too short in my explanation ... you need an empty line after the text that is to be centered.

      – user31729
      Feb 1 at 18:25






    • 1





      @Joan: See the answers to the question here -- it takes too long to explain this in a comment

      – user31729
      Feb 1 at 20:25
















    4












    4








    4







    enter image description here



    Without any package: Using an optional argument that is checked with pdfstrcmp (a pdftex primitive).



    If #1 is equal to left, the title is left aligned, in any other case it is centered.



    documentclass{article}

    newenvironment{foo}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    #2%
    else
    hfil#2hfil%
    fi%
    medskip

    }{}

    newcommand{footitleformat}[1]{%
    bfseriesMakeUppercase{#1}%
    }

    newenvironment{fooother}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    footitleformat{#2}%
    else
    begingroup
    centering
    footitleformat{#2}%

    endgroup
    fi%
    medskip

    }{}



    begin{document}

    begin{foo}{This is centered}
    Foo stuff
    end{foo}


    begin{foo}[left]{This is not centered}
    Other Foo stuff
    end{foo}

    begin{fooother}{This is centered again}

    Yet another Foo stuff
    end{fooother}


    end{document}

    documentclass{article}

    newenvironment{foo}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    #2%
    else
    hfil#2hfil%
    fi%
    medskip

    }{}


    begin{document}

    begin{foo}{This is centered}
    Foo stuff
    end{foo}


    begin{foo}[left]{This is not centered}
    Other Foo stuff
    end{foo}


    end{document}





    share|improve this answer















    enter image description here



    Without any package: Using an optional argument that is checked with pdfstrcmp (a pdftex primitive).



    If #1 is equal to left, the title is left aligned, in any other case it is centered.



    documentclass{article}

    newenvironment{foo}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    #2%
    else
    hfil#2hfil%
    fi%
    medskip

    }{}

    newcommand{footitleformat}[1]{%
    bfseriesMakeUppercase{#1}%
    }

    newenvironment{fooother}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    footitleformat{#2}%
    else
    begingroup
    centering
    footitleformat{#2}%

    endgroup
    fi%
    medskip

    }{}



    begin{document}

    begin{foo}{This is centered}
    Foo stuff
    end{foo}


    begin{foo}[left]{This is not centered}
    Other Foo stuff
    end{foo}

    begin{fooother}{This is centered again}

    Yet another Foo stuff
    end{fooother}


    end{document}

    documentclass{article}

    newenvironment{foo}[2]{%
    ifnumpdfstrcmp{#1}{left}=0%
    #2%
    else
    hfil#2hfil%
    fi%
    medskip

    }{}


    begin{document}

    begin{foo}{This is centered}
    Foo stuff
    end{foo}


    begin{foo}[left]{This is not centered}
    Other Foo stuff
    end{foo}


    end{document}






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Feb 1 at 18:25

























    answered Feb 1 at 17:34







    user31729




















    • I try to use {centeringbfseriesMakeUppercase{#2}} but the text is not center...

      – Joan
      Feb 1 at 18:01













    • @Joan: You need an empty line after centering

      – user31729
      Feb 1 at 18:04











    • Don't understand.

      – Joan
      Feb 1 at 18:13











    • @Joan: I changed the answer: I was too short in my explanation ... you need an empty line after the text that is to be centered.

      – user31729
      Feb 1 at 18:25






    • 1





      @Joan: See the answers to the question here -- it takes too long to explain this in a comment

      – user31729
      Feb 1 at 20:25





















    • I try to use {centeringbfseriesMakeUppercase{#2}} but the text is not center...

      – Joan
      Feb 1 at 18:01













    • @Joan: You need an empty line after centering

      – user31729
      Feb 1 at 18:04











    • Don't understand.

      – Joan
      Feb 1 at 18:13











    • @Joan: I changed the answer: I was too short in my explanation ... you need an empty line after the text that is to be centered.

      – user31729
      Feb 1 at 18:25






    • 1





      @Joan: See the answers to the question here -- it takes too long to explain this in a comment

      – user31729
      Feb 1 at 20:25



















    I try to use {centeringbfseriesMakeUppercase{#2}} but the text is not center...

    – Joan
    Feb 1 at 18:01







    I try to use {centeringbfseriesMakeUppercase{#2}} but the text is not center...

    – Joan
    Feb 1 at 18:01















    @Joan: You need an empty line after centering

    – user31729
    Feb 1 at 18:04





    @Joan: You need an empty line after centering

    – user31729
    Feb 1 at 18:04













    Don't understand.

    – Joan
    Feb 1 at 18:13





    Don't understand.

    – Joan
    Feb 1 at 18:13













    @Joan: I changed the answer: I was too short in my explanation ... you need an empty line after the text that is to be centered.

    – user31729
    Feb 1 at 18:25





    @Joan: I changed the answer: I was too short in my explanation ... you need an empty line after the text that is to be centered.

    – user31729
    Feb 1 at 18:25




    1




    1





    @Joan: See the answers to the question here -- it takes too long to explain this in a comment

    – user31729
    Feb 1 at 20:25







    @Joan: See the answers to the question here -- it takes too long to explain this in a comment

    – user31729
    Feb 1 at 20:25













    3














    Write the environment to take a key-valued optional argument



    enter image description here



    documentclass{article}

    usepackage{xkeyval}

    makeatletter
    % From the xkeyval documentation (section 3.3 Choice keys)
    % http://texdoc.net/texmf-dist/doc/latex/xkeyval/xkeyval.pdf
    define@choicekey*{paralign}{align}[valnr]{left,center,right}[center]{% Add align=? key-value
    gdeftitlealign{}%
    ifcasenrrelax
    gdeftitlealign{raggedright}or% 0 = left
    gdeftitlealign{centering}or% 1 = center
    gdeftitlealign{raggedleft}% 2 = right
    fi
    }
    define@cmdkey{paralign}{format}{}% Add format=? key-value

    newenvironment{mytitle}[2]{%
    paraddvspace{medskipamount}
    begingroup
    setkeys{paralign}{%
    align,format,% Default settings (align=center,format={})
    #1}% Local settings
    titlealign cmdKV@paralign@format #2%
    par
    endgroup
    nobreaksmallskip
    }{%
    paraddvspace{medskipamount}
    }
    makeatother

    begin{document}

    begin{mytitle}{Centred titled}
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
    enim ligula, a efficitur augue sodales nonldots
    end{mytitle}

    begin{mytitle}[align=left]{Left-aligned title}
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
    enim ligula, a efficitur augue sodales nonldots
    end{mytitle}

    begin{mytitle}[align=right,format=bfseries]{Right-aligned title}
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
    enim ligula, a efficitur augue sodales nonldots
    end{mytitle}

    end{document}





    share|improve this answer




























      3














      Write the environment to take a key-valued optional argument



      enter image description here



      documentclass{article}

      usepackage{xkeyval}

      makeatletter
      % From the xkeyval documentation (section 3.3 Choice keys)
      % http://texdoc.net/texmf-dist/doc/latex/xkeyval/xkeyval.pdf
      define@choicekey*{paralign}{align}[valnr]{left,center,right}[center]{% Add align=? key-value
      gdeftitlealign{}%
      ifcasenrrelax
      gdeftitlealign{raggedright}or% 0 = left
      gdeftitlealign{centering}or% 1 = center
      gdeftitlealign{raggedleft}% 2 = right
      fi
      }
      define@cmdkey{paralign}{format}{}% Add format=? key-value

      newenvironment{mytitle}[2]{%
      paraddvspace{medskipamount}
      begingroup
      setkeys{paralign}{%
      align,format,% Default settings (align=center,format={})
      #1}% Local settings
      titlealign cmdKV@paralign@format #2%
      par
      endgroup
      nobreaksmallskip
      }{%
      paraddvspace{medskipamount}
      }
      makeatother

      begin{document}

      begin{mytitle}{Centred titled}
      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
      enim ligula, a efficitur augue sodales nonldots
      end{mytitle}

      begin{mytitle}[align=left]{Left-aligned title}
      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
      enim ligula, a efficitur augue sodales nonldots
      end{mytitle}

      begin{mytitle}[align=right,format=bfseries]{Right-aligned title}
      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
      enim ligula, a efficitur augue sodales nonldots
      end{mytitle}

      end{document}





      share|improve this answer


























        3












        3








        3







        Write the environment to take a key-valued optional argument



        enter image description here



        documentclass{article}

        usepackage{xkeyval}

        makeatletter
        % From the xkeyval documentation (section 3.3 Choice keys)
        % http://texdoc.net/texmf-dist/doc/latex/xkeyval/xkeyval.pdf
        define@choicekey*{paralign}{align}[valnr]{left,center,right}[center]{% Add align=? key-value
        gdeftitlealign{}%
        ifcasenrrelax
        gdeftitlealign{raggedright}or% 0 = left
        gdeftitlealign{centering}or% 1 = center
        gdeftitlealign{raggedleft}% 2 = right
        fi
        }
        define@cmdkey{paralign}{format}{}% Add format=? key-value

        newenvironment{mytitle}[2]{%
        paraddvspace{medskipamount}
        begingroup
        setkeys{paralign}{%
        align,format,% Default settings (align=center,format={})
        #1}% Local settings
        titlealign cmdKV@paralign@format #2%
        par
        endgroup
        nobreaksmallskip
        }{%
        paraddvspace{medskipamount}
        }
        makeatother

        begin{document}

        begin{mytitle}{Centred titled}
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
        enim ligula, a efficitur augue sodales nonldots
        end{mytitle}

        begin{mytitle}[align=left]{Left-aligned title}
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
        enim ligula, a efficitur augue sodales nonldots
        end{mytitle}

        begin{mytitle}[align=right,format=bfseries]{Right-aligned title}
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
        enim ligula, a efficitur augue sodales nonldots
        end{mytitle}

        end{document}





        share|improve this answer













        Write the environment to take a key-valued optional argument



        enter image description here



        documentclass{article}

        usepackage{xkeyval}

        makeatletter
        % From the xkeyval documentation (section 3.3 Choice keys)
        % http://texdoc.net/texmf-dist/doc/latex/xkeyval/xkeyval.pdf
        define@choicekey*{paralign}{align}[valnr]{left,center,right}[center]{% Add align=? key-value
        gdeftitlealign{}%
        ifcasenrrelax
        gdeftitlealign{raggedright}or% 0 = left
        gdeftitlealign{centering}or% 1 = center
        gdeftitlealign{raggedleft}% 2 = right
        fi
        }
        define@cmdkey{paralign}{format}{}% Add format=? key-value

        newenvironment{mytitle}[2]{%
        paraddvspace{medskipamount}
        begingroup
        setkeys{paralign}{%
        align,format,% Default settings (align=center,format={})
        #1}% Local settings
        titlealign cmdKV@paralign@format #2%
        par
        endgroup
        nobreaksmallskip
        }{%
        paraddvspace{medskipamount}
        }
        makeatother

        begin{document}

        begin{mytitle}{Centred titled}
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
        enim ligula, a efficitur augue sodales nonldots
        end{mytitle}

        begin{mytitle}[align=left]{Left-aligned title}
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
        enim ligula, a efficitur augue sodales nonldots
        end{mytitle}

        begin{mytitle}[align=right,format=bfseries]{Right-aligned title}
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus placerat
        enim ligula, a efficitur augue sodales nonldots
        end{mytitle}

        end{document}






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Feb 1 at 20:34









        WernerWerner

        450k729991709




        450k729991709






























            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%2f472914%2fenvironment-with-argument-and-optional-argument%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

            MongoDB - Not Authorized To Execute Command

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

            How to fix TextFormField cause rebuild widget in Flutter