Environment with argument and optional argument
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
add a comment |
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
1
Yes, this is possible and there are many packages, that provide such environments already, e.g.mdframed
ortcolorbox
, with lot of additional features.
– user31729
Feb 1 at 17:25
You should take look at thexparse
package to do that.
– Bernard
Feb 1 at 17:26
I want to do it without any package.
– Joan
Feb 1 at 17:29
add a comment |
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
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
macros environments
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
ortcolorbox
, with lot of additional features.
– user31729
Feb 1 at 17:25
You should take look at thexparse
package to do that.
– Bernard
Feb 1 at 17:26
I want to do it without any package.
– Joan
Feb 1 at 17:29
add a comment |
1
Yes, this is possible and there are many packages, that provide such environments already, e.g.mdframed
ortcolorbox
, with lot of additional features.
– user31729
Feb 1 at 17:25
You should take look at thexparse
package 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
xparse
package to do that.– Bernard
Feb 1 at 17:26
You should take look at the
xparse
package 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
add a comment |
3 Answers
3
active
oldest
votes
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}
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
add a comment |
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}
I try to use{centeringbfseriesMakeUppercase{#2}}
but the text is not center...
– Joan
Feb 1 at 18:01
@Joan: You need an empty line aftercentering
– 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
|
show 6 more comments
Write the environment to take a key-valued optional argument
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}
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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}
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
add a comment |
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}
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
add a comment |
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}
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}
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
add a comment |
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
add a comment |
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}
I try to use{centeringbfseriesMakeUppercase{#2}}
but the text is not center...
– Joan
Feb 1 at 18:01
@Joan: You need an empty line aftercentering
– 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
|
show 6 more comments
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}
I try to use{centeringbfseriesMakeUppercase{#2}}
but the text is not center...
– Joan
Feb 1 at 18:01
@Joan: You need an empty line aftercentering
– 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
|
show 6 more comments
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}
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}
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 aftercentering
– 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
|
show 6 more comments
I try to use{centeringbfseriesMakeUppercase{#2}}
but the text is not center...
– Joan
Feb 1 at 18:01
@Joan: You need an empty line aftercentering
– 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
|
show 6 more comments
Write the environment to take a key-valued optional argument
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}
add a comment |
Write the environment to take a key-valued optional argument
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}
add a comment |
Write the environment to take a key-valued optional argument
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}
Write the environment to take a key-valued optional argument
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}
answered Feb 1 at 20:34


WernerWerner
450k729991709
450k729991709
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
Yes, this is possible and there are many packages, that provide such environments already, e.g.
mdframed
ortcolorbox
, with lot of additional features.– user31729
Feb 1 at 17:25
You should take look at the
xparse
package to do that.– Bernard
Feb 1 at 17:26
I want to do it without any package.
– Joan
Feb 1 at 17:29