How to typeset a code in LaTeX for the following image
I want to typeset the following image in LaTeX. Is it possible?

formatting
add a comment |
I want to typeset the following image in LaTeX. Is it possible?

formatting
5
Of course it is possible to do:). 1) "Bla Bla ..." is the exact text that we have to add or do you mean another thing? 2) What have you tried so far? Could you add a MWE, please?
– manooooh
12 hours ago
Sir, I don't have any idea how to do this. That is why I asked.
– Sachchidanand Prasad
7 hours ago
@SachchidanandPrasad You have an alternative with my code below (1 answer).
– Sebastiano
7 hours ago
1
@Sebastiano Thanks for the help.
– Sachchidanand Prasad
7 hours ago
@SachchidanandPrasad I have deleted my answer because is the bad than the two best now answers.
– Sebastiano
3 hours ago
add a comment |
I want to typeset the following image in LaTeX. Is it possible?

formatting
I want to typeset the following image in LaTeX. Is it possible?

formatting
formatting
edited 8 hours ago
Sebastiano
10.8k42163
10.8k42163
asked 12 hours ago
Sachchidanand PrasadSachchidanand Prasad
1335
1335
5
Of course it is possible to do:). 1) "Bla Bla ..." is the exact text that we have to add or do you mean another thing? 2) What have you tried so far? Could you add a MWE, please?
– manooooh
12 hours ago
Sir, I don't have any idea how to do this. That is why I asked.
– Sachchidanand Prasad
7 hours ago
@SachchidanandPrasad You have an alternative with my code below (1 answer).
– Sebastiano
7 hours ago
1
@Sebastiano Thanks for the help.
– Sachchidanand Prasad
7 hours ago
@SachchidanandPrasad I have deleted my answer because is the bad than the two best now answers.
– Sebastiano
3 hours ago
add a comment |
5
Of course it is possible to do:). 1) "Bla Bla ..." is the exact text that we have to add or do you mean another thing? 2) What have you tried so far? Could you add a MWE, please?
– manooooh
12 hours ago
Sir, I don't have any idea how to do this. That is why I asked.
– Sachchidanand Prasad
7 hours ago
@SachchidanandPrasad You have an alternative with my code below (1 answer).
– Sebastiano
7 hours ago
1
@Sebastiano Thanks for the help.
– Sachchidanand Prasad
7 hours ago
@SachchidanandPrasad I have deleted my answer because is the bad than the two best now answers.
– Sebastiano
3 hours ago
5
5
Of course it is possible to do
:). 1) "Bla Bla ..." is the exact text that we have to add or do you mean another thing? 2) What have you tried so far? Could you add a MWE, please?– manooooh
12 hours ago
Of course it is possible to do
:). 1) "Bla Bla ..." is the exact text that we have to add or do you mean another thing? 2) What have you tried so far? Could you add a MWE, please?– manooooh
12 hours ago
Sir, I don't have any idea how to do this. That is why I asked.
– Sachchidanand Prasad
7 hours ago
Sir, I don't have any idea how to do this. That is why I asked.
– Sachchidanand Prasad
7 hours ago
@SachchidanandPrasad You have an alternative with my code below (1 answer).
– Sebastiano
7 hours ago
@SachchidanandPrasad You have an alternative with my code below (1 answer).
– Sebastiano
7 hours ago
1
1
@Sebastiano Thanks for the help.
– Sachchidanand Prasad
7 hours ago
@Sebastiano Thanks for the help.
– Sachchidanand Prasad
7 hours ago
@SachchidanandPrasad I have deleted my answer because is the bad than the two best now answers.
– Sebastiano
3 hours ago
@SachchidanandPrasad I have deleted my answer because is the bad than the two best now answers.
– Sebastiano
3 hours ago
add a comment |
2 Answers
2
active
oldest
votes
Maybe you're thinking to something like this:
documentclass{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{lipsum} % for mock text
newenvironment{step}[2]
{%
$% start math mode
sbox0{rotatebox[origin=c]{90}{quad#1quad}}%
vcenter{hbox{copy0}}%
mkern3mu
begin{pmatrix}
mkern3mu
vphantom{vcenter{hbox{copy0}}}%
begin{minipage}{#2}
}
{end{minipage}mkern3muend{pmatrix}$}
begin{document}
begin{center}
begin{step}{Step 1}{8cm}
lipsum[1][1-5]
end{step}
end{center}
begin{center}
begin{step}{Step 2}{10cm}
lipsum[2]
end{step}
end{center}
end{document}

Is there a correlation with this link for the question:-)? tex.stackexchange.com/questions/227292/…
– Sebastiano
3 hours ago
add a comment |
With a tcolorbox:
documentclass{book}
usepackage{lipsum}
usepackage{xcolor}
%usepackage{showframe}
usepackage[most]{tcolorbox}
newtcolorbox{mybox}[2]{%
enhanced,
boxsep=4pt,
opacityback=0,
frame hidden,% from https://tex.stackexchange.com/a/247509/101651
left skip=.7cm,
% copied from https://tex.stackexchange.com/a/431760/101651
overlay unbroken and first ={%
node[rotate=90,
anchor=south,
font=Large,
inner sep=0pt,
yshift=.3cm,
]
at (frame.west) {#2};
draw[rounded corners=10, thick] ([xshift=12pt]frame.north west) -- (frame.north west) -- (frame.south west) -- ([xshift=12pt]frame.south west);
draw[rounded corners=10, thick] ([xshift=-12pt]frame.north east) -- (frame.north east) -- (frame.south east) -- ([xshift=-12pt]frame.south east);
}
}
begin{document}
begin{mybox}{STEP 1}
Bla bla bla
end{mybox}
begin{mybox}{STEP 2}
lipsum[2]
end{mybox}
end{document}

Ohh I like how the braces bend in "Step 1" <3.
– manooooh
5 hours ago
1
@manooooh It's the same of step 2 :)
– CarLaTeX
5 hours ago
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%2f478717%2fhow-to-typeset-a-code-in-latex-for-the-following-image%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Maybe you're thinking to something like this:
documentclass{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{lipsum} % for mock text
newenvironment{step}[2]
{%
$% start math mode
sbox0{rotatebox[origin=c]{90}{quad#1quad}}%
vcenter{hbox{copy0}}%
mkern3mu
begin{pmatrix}
mkern3mu
vphantom{vcenter{hbox{copy0}}}%
begin{minipage}{#2}
}
{end{minipage}mkern3muend{pmatrix}$}
begin{document}
begin{center}
begin{step}{Step 1}{8cm}
lipsum[1][1-5]
end{step}
end{center}
begin{center}
begin{step}{Step 2}{10cm}
lipsum[2]
end{step}
end{center}
end{document}

Is there a correlation with this link for the question:-)? tex.stackexchange.com/questions/227292/…
– Sebastiano
3 hours ago
add a comment |
Maybe you're thinking to something like this:
documentclass{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{lipsum} % for mock text
newenvironment{step}[2]
{%
$% start math mode
sbox0{rotatebox[origin=c]{90}{quad#1quad}}%
vcenter{hbox{copy0}}%
mkern3mu
begin{pmatrix}
mkern3mu
vphantom{vcenter{hbox{copy0}}}%
begin{minipage}{#2}
}
{end{minipage}mkern3muend{pmatrix}$}
begin{document}
begin{center}
begin{step}{Step 1}{8cm}
lipsum[1][1-5]
end{step}
end{center}
begin{center}
begin{step}{Step 2}{10cm}
lipsum[2]
end{step}
end{center}
end{document}

Is there a correlation with this link for the question:-)? tex.stackexchange.com/questions/227292/…
– Sebastiano
3 hours ago
add a comment |
Maybe you're thinking to something like this:
documentclass{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{lipsum} % for mock text
newenvironment{step}[2]
{%
$% start math mode
sbox0{rotatebox[origin=c]{90}{quad#1quad}}%
vcenter{hbox{copy0}}%
mkern3mu
begin{pmatrix}
mkern3mu
vphantom{vcenter{hbox{copy0}}}%
begin{minipage}{#2}
}
{end{minipage}mkern3muend{pmatrix}$}
begin{document}
begin{center}
begin{step}{Step 1}{8cm}
lipsum[1][1-5]
end{step}
end{center}
begin{center}
begin{step}{Step 2}{10cm}
lipsum[2]
end{step}
end{center}
end{document}

Maybe you're thinking to something like this:
documentclass{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{lipsum} % for mock text
newenvironment{step}[2]
{%
$% start math mode
sbox0{rotatebox[origin=c]{90}{quad#1quad}}%
vcenter{hbox{copy0}}%
mkern3mu
begin{pmatrix}
mkern3mu
vphantom{vcenter{hbox{copy0}}}%
begin{minipage}{#2}
}
{end{minipage}mkern3muend{pmatrix}$}
begin{document}
begin{center}
begin{step}{Step 1}{8cm}
lipsum[1][1-5]
end{step}
end{center}
begin{center}
begin{step}{Step 2}{10cm}
lipsum[2]
end{step}
end{center}
end{document}

answered 7 hours ago
egregegreg
725k8819193224
725k8819193224
Is there a correlation with this link for the question:-)? tex.stackexchange.com/questions/227292/…
– Sebastiano
3 hours ago
add a comment |
Is there a correlation with this link for the question:-)? tex.stackexchange.com/questions/227292/…
– Sebastiano
3 hours ago
Is there a correlation with this link for the question
:-)? tex.stackexchange.com/questions/227292/…– Sebastiano
3 hours ago
Is there a correlation with this link for the question
:-)? tex.stackexchange.com/questions/227292/…– Sebastiano
3 hours ago
add a comment |
With a tcolorbox:
documentclass{book}
usepackage{lipsum}
usepackage{xcolor}
%usepackage{showframe}
usepackage[most]{tcolorbox}
newtcolorbox{mybox}[2]{%
enhanced,
boxsep=4pt,
opacityback=0,
frame hidden,% from https://tex.stackexchange.com/a/247509/101651
left skip=.7cm,
% copied from https://tex.stackexchange.com/a/431760/101651
overlay unbroken and first ={%
node[rotate=90,
anchor=south,
font=Large,
inner sep=0pt,
yshift=.3cm,
]
at (frame.west) {#2};
draw[rounded corners=10, thick] ([xshift=12pt]frame.north west) -- (frame.north west) -- (frame.south west) -- ([xshift=12pt]frame.south west);
draw[rounded corners=10, thick] ([xshift=-12pt]frame.north east) -- (frame.north east) -- (frame.south east) -- ([xshift=-12pt]frame.south east);
}
}
begin{document}
begin{mybox}{STEP 1}
Bla bla bla
end{mybox}
begin{mybox}{STEP 2}
lipsum[2]
end{mybox}
end{document}

Ohh I like how the braces bend in "Step 1" <3.
– manooooh
5 hours ago
1
@manooooh It's the same of step 2 :)
– CarLaTeX
5 hours ago
add a comment |
With a tcolorbox:
documentclass{book}
usepackage{lipsum}
usepackage{xcolor}
%usepackage{showframe}
usepackage[most]{tcolorbox}
newtcolorbox{mybox}[2]{%
enhanced,
boxsep=4pt,
opacityback=0,
frame hidden,% from https://tex.stackexchange.com/a/247509/101651
left skip=.7cm,
% copied from https://tex.stackexchange.com/a/431760/101651
overlay unbroken and first ={%
node[rotate=90,
anchor=south,
font=Large,
inner sep=0pt,
yshift=.3cm,
]
at (frame.west) {#2};
draw[rounded corners=10, thick] ([xshift=12pt]frame.north west) -- (frame.north west) -- (frame.south west) -- ([xshift=12pt]frame.south west);
draw[rounded corners=10, thick] ([xshift=-12pt]frame.north east) -- (frame.north east) -- (frame.south east) -- ([xshift=-12pt]frame.south east);
}
}
begin{document}
begin{mybox}{STEP 1}
Bla bla bla
end{mybox}
begin{mybox}{STEP 2}
lipsum[2]
end{mybox}
end{document}

Ohh I like how the braces bend in "Step 1" <3.
– manooooh
5 hours ago
1
@manooooh It's the same of step 2 :)
– CarLaTeX
5 hours ago
add a comment |
With a tcolorbox:
documentclass{book}
usepackage{lipsum}
usepackage{xcolor}
%usepackage{showframe}
usepackage[most]{tcolorbox}
newtcolorbox{mybox}[2]{%
enhanced,
boxsep=4pt,
opacityback=0,
frame hidden,% from https://tex.stackexchange.com/a/247509/101651
left skip=.7cm,
% copied from https://tex.stackexchange.com/a/431760/101651
overlay unbroken and first ={%
node[rotate=90,
anchor=south,
font=Large,
inner sep=0pt,
yshift=.3cm,
]
at (frame.west) {#2};
draw[rounded corners=10, thick] ([xshift=12pt]frame.north west) -- (frame.north west) -- (frame.south west) -- ([xshift=12pt]frame.south west);
draw[rounded corners=10, thick] ([xshift=-12pt]frame.north east) -- (frame.north east) -- (frame.south east) -- ([xshift=-12pt]frame.south east);
}
}
begin{document}
begin{mybox}{STEP 1}
Bla bla bla
end{mybox}
begin{mybox}{STEP 2}
lipsum[2]
end{mybox}
end{document}

With a tcolorbox:
documentclass{book}
usepackage{lipsum}
usepackage{xcolor}
%usepackage{showframe}
usepackage[most]{tcolorbox}
newtcolorbox{mybox}[2]{%
enhanced,
boxsep=4pt,
opacityback=0,
frame hidden,% from https://tex.stackexchange.com/a/247509/101651
left skip=.7cm,
% copied from https://tex.stackexchange.com/a/431760/101651
overlay unbroken and first ={%
node[rotate=90,
anchor=south,
font=Large,
inner sep=0pt,
yshift=.3cm,
]
at (frame.west) {#2};
draw[rounded corners=10, thick] ([xshift=12pt]frame.north west) -- (frame.north west) -- (frame.south west) -- ([xshift=12pt]frame.south west);
draw[rounded corners=10, thick] ([xshift=-12pt]frame.north east) -- (frame.north east) -- (frame.south east) -- ([xshift=-12pt]frame.south east);
}
}
begin{document}
begin{mybox}{STEP 1}
Bla bla bla
end{mybox}
begin{mybox}{STEP 2}
lipsum[2]
end{mybox}
end{document}

answered 5 hours ago
CarLaTeXCarLaTeX
33.1k551136
33.1k551136
Ohh I like how the braces bend in "Step 1" <3.
– manooooh
5 hours ago
1
@manooooh It's the same of step 2 :)
– CarLaTeX
5 hours ago
add a comment |
Ohh I like how the braces bend in "Step 1" <3.
– manooooh
5 hours ago
1
@manooooh It's the same of step 2 :)
– CarLaTeX
5 hours ago
Ohh I like how the braces bend in "Step 1" <3.
– manooooh
5 hours ago
Ohh I like how the braces bend in "Step 1" <3.
– manooooh
5 hours ago
1
1
@manooooh It's the same of step 2 :)
– CarLaTeX
5 hours ago
@manooooh It's the same of step 2 :)
– CarLaTeX
5 hours 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.
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%2f478717%2fhow-to-typeset-a-code-in-latex-for-the-following-image%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
5
Of course it is possible to do
:). 1) "Bla Bla ..." is the exact text that we have to add or do you mean another thing? 2) What have you tried so far? Could you add a MWE, please?– manooooh
12 hours ago
Sir, I don't have any idea how to do this. That is why I asked.
– Sachchidanand Prasad
7 hours ago
@SachchidanandPrasad You have an alternative with my code below (1 answer).
– Sebastiano
7 hours ago
1
@Sebastiano Thanks for the help.
– Sachchidanand Prasad
7 hours ago
@SachchidanandPrasad I have deleted my answer because is the bad than the two best now answers.
– Sebastiano
3 hours ago