How to create an article summary template?











up vote
1
down vote

favorite
1












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.



enter image description here










share|improve this question
























  • 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















up vote
1
down vote

favorite
1












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.



enter image description here










share|improve this question
























  • 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













up vote
1
down vote

favorite
1









up vote
1
down vote

favorite
1






1





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.



enter image description here










share|improve this question















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.



enter image description here







tikz-styles fancybox






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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


















  • 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
















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










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}


enter image description here



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. ;-)






share|improve this answer





















  • 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











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',
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%2f463064%2fhow-to-create-an-article-summary-template%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























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}


enter image description here



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. ;-)






share|improve this answer





















  • 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















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}


enter image description here



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. ;-)






share|improve this answer





















  • 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













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}


enter image description here



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. ;-)






share|improve this answer












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}


enter image description here



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. ;-)







share|improve this answer












share|improve this answer



share|improve this answer










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


















  • 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


















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.





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.




draft saved


draft discarded














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





















































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

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

ComboBox Display Member on multiple fields

Is it possible to collect Nectar points via Trainline?