How to create an article summary template?
up vote
1
down vote
favorite
I would like to create a box so that the summary is inside, the detail of the box is that it has a detail in the lower right corner.
tikz-styles fancybox
add a comment |
up vote
1
down vote
favorite
I would like to create a box so that the summary is inside, the detail of the box is that it has a detail in the lower right corner.
tikz-styles fancybox
Welcome to TeX.SX! Have your triedbegin{abstract}....end{abstract}
? If this doesn't help then please edit your question to give a minimal working example showing what you have tired because, at a minimum, it will help to know what document class you are using. A MWE should compile and be as small as possible to demonstrate your problem.
– Andrew
Dec 3 at 23:57
Please have a look at section 4.8 Corners of the tcolorbox manual.
– marmot
Dec 3 at 23:58
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:12
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:13
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I would like to create a box so that the summary is inside, the detail of the box is that it has a detail in the lower right corner.
tikz-styles fancybox
I would like to create a box so that the summary is inside, the detail of the box is that it has a detail in the lower right corner.
tikz-styles fancybox
tikz-styles fancybox
edited Dec 3 at 23:36
Sigur
23.7k355136
23.7k355136
asked Dec 3 at 23:22
Itamar Barbosa de Lima
353
353
Welcome to TeX.SX! Have your triedbegin{abstract}....end{abstract}
? If this doesn't help then please edit your question to give a minimal working example showing what you have tired because, at a minimum, it will help to know what document class you are using. A MWE should compile and be as small as possible to demonstrate your problem.
– Andrew
Dec 3 at 23:57
Please have a look at section 4.8 Corners of the tcolorbox manual.
– marmot
Dec 3 at 23:58
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:12
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:13
add a comment |
Welcome to TeX.SX! Have your triedbegin{abstract}....end{abstract}
? If this doesn't help then please edit your question to give a minimal working example showing what you have tired because, at a minimum, it will help to know what document class you are using. A MWE should compile and be as small as possible to demonstrate your problem.
– Andrew
Dec 3 at 23:57
Please have a look at section 4.8 Corners of the tcolorbox manual.
– marmot
Dec 3 at 23:58
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:12
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:13
Welcome to TeX.SX! Have your tried
begin{abstract}....end{abstract}
? If this doesn't help then please edit your question to give a minimal working example showing what you have tired because, at a minimum, it will help to know what document class you are using. A MWE should compile and be as small as possible to demonstrate your problem.– Andrew
Dec 3 at 23:57
Welcome to TeX.SX! Have your tried
begin{abstract}....end{abstract}
? If this doesn't help then please edit your question to give a minimal working example showing what you have tired because, at a minimum, it will help to know what document class you are using. A MWE should compile and be as small as possible to demonstrate your problem.– Andrew
Dec 3 at 23:57
Please have a look at section 4.8 Corners of the tcolorbox manual.
– marmot
Dec 3 at 23:58
Please have a look at section 4.8 Corners of the tcolorbox manual.
– marmot
Dec 3 at 23:58
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:12
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:12
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:13
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:13
add a comment |
1 Answer
1
active
oldest
votes
up vote
4
down vote
accepted
I focus here on the box, which I almost entirely stole from this nice answer.
documentclass{article}
usepackage{lipsum}
usepackage[most]{tcolorbox}
newtcolorbox{WeMissChristian}[1]{enhanced,
before skip=2mm,after skip=3mm,
boxrule=0.4pt,left=5mm,right=2mm,top=1mm,bottom=1mm,
colback=yellow!50,
colframe=yellow!20!black,
sharp corners,rounded corners=southeast,arc is angular,arc=3mm,
#1}
begin{document}
begin{WeMissChristian}
subsubsection*{Abstract}
lipsum[1]
paragraph{key words:} hibernation, black forest, ducks
end{WeMissChristian}
end{document}
Those of you who think an abstract needs to be typeset in a dedicated environment: please don't jump at me, I'm just a marmot. ;-)
That's right!!! Thank you very much "marmot".
– Itamar Barbosa de Lima
Dec 4 at 0:50
How to create this "newtcolorbox ..." in an .sty file and use it in .tex file. I want to leave the .tex file clean.
– Itamar Barbosa de Lima
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
I focus here on the box, which I almost entirely stole from this nice answer.
documentclass{article}
usepackage{lipsum}
usepackage[most]{tcolorbox}
newtcolorbox{WeMissChristian}[1]{enhanced,
before skip=2mm,after skip=3mm,
boxrule=0.4pt,left=5mm,right=2mm,top=1mm,bottom=1mm,
colback=yellow!50,
colframe=yellow!20!black,
sharp corners,rounded corners=southeast,arc is angular,arc=3mm,
#1}
begin{document}
begin{WeMissChristian}
subsubsection*{Abstract}
lipsum[1]
paragraph{key words:} hibernation, black forest, ducks
end{WeMissChristian}
end{document}
Those of you who think an abstract needs to be typeset in a dedicated environment: please don't jump at me, I'm just a marmot. ;-)
That's right!!! Thank you very much "marmot".
– Itamar Barbosa de Lima
Dec 4 at 0:50
How to create this "newtcolorbox ..." in an .sty file and use it in .tex file. I want to leave the .tex file clean.
– Itamar Barbosa de Lima
2 days ago
add a comment |
up vote
4
down vote
accepted
I focus here on the box, which I almost entirely stole from this nice answer.
documentclass{article}
usepackage{lipsum}
usepackage[most]{tcolorbox}
newtcolorbox{WeMissChristian}[1]{enhanced,
before skip=2mm,after skip=3mm,
boxrule=0.4pt,left=5mm,right=2mm,top=1mm,bottom=1mm,
colback=yellow!50,
colframe=yellow!20!black,
sharp corners,rounded corners=southeast,arc is angular,arc=3mm,
#1}
begin{document}
begin{WeMissChristian}
subsubsection*{Abstract}
lipsum[1]
paragraph{key words:} hibernation, black forest, ducks
end{WeMissChristian}
end{document}
Those of you who think an abstract needs to be typeset in a dedicated environment: please don't jump at me, I'm just a marmot. ;-)
That's right!!! Thank you very much "marmot".
– Itamar Barbosa de Lima
Dec 4 at 0:50
How to create this "newtcolorbox ..." in an .sty file and use it in .tex file. I want to leave the .tex file clean.
– Itamar Barbosa de Lima
2 days ago
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
I focus here on the box, which I almost entirely stole from this nice answer.
documentclass{article}
usepackage{lipsum}
usepackage[most]{tcolorbox}
newtcolorbox{WeMissChristian}[1]{enhanced,
before skip=2mm,after skip=3mm,
boxrule=0.4pt,left=5mm,right=2mm,top=1mm,bottom=1mm,
colback=yellow!50,
colframe=yellow!20!black,
sharp corners,rounded corners=southeast,arc is angular,arc=3mm,
#1}
begin{document}
begin{WeMissChristian}
subsubsection*{Abstract}
lipsum[1]
paragraph{key words:} hibernation, black forest, ducks
end{WeMissChristian}
end{document}
Those of you who think an abstract needs to be typeset in a dedicated environment: please don't jump at me, I'm just a marmot. ;-)
I focus here on the box, which I almost entirely stole from this nice answer.
documentclass{article}
usepackage{lipsum}
usepackage[most]{tcolorbox}
newtcolorbox{WeMissChristian}[1]{enhanced,
before skip=2mm,after skip=3mm,
boxrule=0.4pt,left=5mm,right=2mm,top=1mm,bottom=1mm,
colback=yellow!50,
colframe=yellow!20!black,
sharp corners,rounded corners=southeast,arc is angular,arc=3mm,
#1}
begin{document}
begin{WeMissChristian}
subsubsection*{Abstract}
lipsum[1]
paragraph{key words:} hibernation, black forest, ducks
end{WeMissChristian}
end{document}
Those of you who think an abstract needs to be typeset in a dedicated environment: please don't jump at me, I'm just a marmot. ;-)
answered Dec 4 at 0:31
marmot
82.3k492175
82.3k492175
That's right!!! Thank you very much "marmot".
– Itamar Barbosa de Lima
Dec 4 at 0:50
How to create this "newtcolorbox ..." in an .sty file and use it in .tex file. I want to leave the .tex file clean.
– Itamar Barbosa de Lima
2 days ago
add a comment |
That's right!!! Thank you very much "marmot".
– Itamar Barbosa de Lima
Dec 4 at 0:50
How to create this "newtcolorbox ..." in an .sty file and use it in .tex file. I want to leave the .tex file clean.
– Itamar Barbosa de Lima
2 days ago
That's right!!! Thank you very much "marmot".
– Itamar Barbosa de Lima
Dec 4 at 0:50
That's right!!! Thank you very much "marmot".
– Itamar Barbosa de Lima
Dec 4 at 0:50
How to create this "newtcolorbox ..." in an .sty file and use it in .tex file. I want to leave the .tex file clean.
– Itamar Barbosa de Lima
2 days ago
How to create this "newtcolorbox ..." in an .sty file and use it in .tex file. I want to leave the .tex file clean.
– Itamar Barbosa de Lima
2 days ago
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f463064%2fhow-to-create-an-article-summary-template%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
Welcome to TeX.SX! Have your tried
begin{abstract}....end{abstract}
? If this doesn't help then please edit your question to give a minimal working example showing what you have tired because, at a minimum, it will help to know what document class you are using. A MWE should compile and be as small as possible to demonstrate your problem.– Andrew
Dec 3 at 23:57
Please have a look at section 4.8 Corners of the tcolorbox manual.
– marmot
Dec 3 at 23:58
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:12
I want that detail from the bottom right corner, that cut into a box.
– Itamar Barbosa de Lima
Dec 4 at 0:13