Email-style reply layout: Vertical line in left margin, except for reply environmentHow to use background image in LaTeX?How to format an email conversation?Making Book With Several Distinct StylesHow do I add a background image to just a parbox?
How can ping know if my host is down
Circuit Analysis: Obtaining Close Loop OP - AMP Transfer function
Is it allowed to activate the ability of multiple planeswalkers in a single turn?
US tourist/student visa
What does "Scientists rise up against statistical significance" mean? (Comment in Nature)
Is this toilet slogan correct usage of the English language?
Does an advisor owe his/her student anything? Will an advisor keep a PhD student only out of pity?
The IT department bottlenecks progress, how should I handle this?
15% tax on $7.5k earnings. Is that right?
Microchip documentation does not label CAN buss pins on micro controller pinout diagram
Why should universal income be universal?
How to draw a matrix with arrows in limited space
What is going on with gets(stdin) on the site coderbyte?
Giving feedback to someone without sounding prejudiced
Has any country ever had 2 former presidents in jail simultaneously?
I found an audio circuit and I built it just fine, but I find it a bit too quiet. How do I amplify the output so that it is a bit louder?
A Trivial Diagnosis
What (the heck) is a Super Worm Equinox Moon?
Is there a RAID 0 Equivalent for RAM?
What is the difference between lands and mana?
How does electrical safety system work on ISS?
Why do ¬, ∀ and ∃ have the same precedence?
Does Doodling or Improvising on the Piano Have Any Benefits?
Permission on Database
Email-style reply layout: Vertical line in left margin, except for reply environment
How to use background image in LaTeX?How to format an email conversation?Making Book With Several Distinct StylesHow do I add a background image to just a parbox?
I have a long LaTeX document, with nested enumerations and sections. It is important that I keep the numbering, structures as they are, but I want to insert replies that are visually different from the original text. I also would like to achieve this without excessive fiddling in the original code, but instead simply introduce a new reply
command or environment.
To be easily understood by people it would be great if the reply layout would imitate email reply layout, i.e., add a vertical line (or a ">") on the left margin to all original content, but keep it blank whenever the reply
is used.
I was able to achieve the opposite with mdframed
, but I cannot simply switch this around as this would break the orignal text's lists and sectioning.
documentclassarticle
newcommandresponse[1]
beginmdframed[ linewidth=2pt,
topline=false,
rightline=false,
bottomline=false
,linecolor=black, innerleftmargin =0cm, leftmargin=-2pt, innerrightmargin=0cm]
mdseries
#1
endmdframed
usepackagemdframed
begindocument
Some text, with pictures, lists, sections
beginenumerate
item Some text, with pictures, lists, sections
responseanswer1
item Some text, with pictures, lists, sections
responseanswer2
endenumerate
Some text, with pictures, lists, sections
responsethis is my answer
Some text, with pictures, lists, sections
sectionsection
subsectionsubsection1
Some text, with pictures, lists, sections
subsectionsubsection2
Some text, with pictures, lists, sections
subsectionsubsection3
Some text, with pictures, lists, sections
responseI also have an answer here
enddocument
marginpar layout
|
show 3 more comments
I have a long LaTeX document, with nested enumerations and sections. It is important that I keep the numbering, structures as they are, but I want to insert replies that are visually different from the original text. I also would like to achieve this without excessive fiddling in the original code, but instead simply introduce a new reply
command or environment.
To be easily understood by people it would be great if the reply layout would imitate email reply layout, i.e., add a vertical line (or a ">") on the left margin to all original content, but keep it blank whenever the reply
is used.
I was able to achieve the opposite with mdframed
, but I cannot simply switch this around as this would break the orignal text's lists and sectioning.
documentclassarticle
newcommandresponse[1]
beginmdframed[ linewidth=2pt,
topline=false,
rightline=false,
bottomline=false
,linecolor=black, innerleftmargin =0cm, leftmargin=-2pt, innerrightmargin=0cm]
mdseries
#1
endmdframed
usepackagemdframed
begindocument
Some text, with pictures, lists, sections
beginenumerate
item Some text, with pictures, lists, sections
responseanswer1
item Some text, with pictures, lists, sections
responseanswer2
endenumerate
Some text, with pictures, lists, sections
responsethis is my answer
Some text, with pictures, lists, sections
sectionsection
subsectionsubsection1
Some text, with pictures, lists, sections
subsectionsubsection2
Some text, with pictures, lists, sections
subsectionsubsection3
Some text, with pictures, lists, sections
responseI also have an answer here
enddocument
marginpar layout
1
Maybe related: tex.stackexchange.com/questions/68251/…
– Steven B. Segletes
yesterday
2
Not a solution, but if you are looking into this I would try to usetcolorbox
instead ofmdframed
.tcolorbox
is actively maintained and has an awesome manual whilemdframed
development seems to have stalled a while ago.
– moewe
yesterday
@Steven B. Segletes, Certainly related, but different, because it does not allow me to insert replies wherever I want. I can't writeembed text beginenumerate item item1 response
.
– sheß
yesterday
2
@sheß Could you clarify? One can indeed put enumerations inside theembed
. So are you looking to suspend the embed to provide a response and then continue the enumeration where it left off?
– Steven B. Segletes
yesterday
1
What if you just draw a line on the left margin (using a suitably prepared background image perhaps), and use your definedresponse
environment to draw a box with a white border on the left to cover up the pre-drawn line?
– Willie Wong
12 hours ago
|
show 3 more comments
I have a long LaTeX document, with nested enumerations and sections. It is important that I keep the numbering, structures as they are, but I want to insert replies that are visually different from the original text. I also would like to achieve this without excessive fiddling in the original code, but instead simply introduce a new reply
command or environment.
To be easily understood by people it would be great if the reply layout would imitate email reply layout, i.e., add a vertical line (or a ">") on the left margin to all original content, but keep it blank whenever the reply
is used.
I was able to achieve the opposite with mdframed
, but I cannot simply switch this around as this would break the orignal text's lists and sectioning.
documentclassarticle
newcommandresponse[1]
beginmdframed[ linewidth=2pt,
topline=false,
rightline=false,
bottomline=false
,linecolor=black, innerleftmargin =0cm, leftmargin=-2pt, innerrightmargin=0cm]
mdseries
#1
endmdframed
usepackagemdframed
begindocument
Some text, with pictures, lists, sections
beginenumerate
item Some text, with pictures, lists, sections
responseanswer1
item Some text, with pictures, lists, sections
responseanswer2
endenumerate
Some text, with pictures, lists, sections
responsethis is my answer
Some text, with pictures, lists, sections
sectionsection
subsectionsubsection1
Some text, with pictures, lists, sections
subsectionsubsection2
Some text, with pictures, lists, sections
subsectionsubsection3
Some text, with pictures, lists, sections
responseI also have an answer here
enddocument
marginpar layout
I have a long LaTeX document, with nested enumerations and sections. It is important that I keep the numbering, structures as they are, but I want to insert replies that are visually different from the original text. I also would like to achieve this without excessive fiddling in the original code, but instead simply introduce a new reply
command or environment.
To be easily understood by people it would be great if the reply layout would imitate email reply layout, i.e., add a vertical line (or a ">") on the left margin to all original content, but keep it blank whenever the reply
is used.
I was able to achieve the opposite with mdframed
, but I cannot simply switch this around as this would break the orignal text's lists and sectioning.
documentclassarticle
newcommandresponse[1]
beginmdframed[ linewidth=2pt,
topline=false,
rightline=false,
bottomline=false
,linecolor=black, innerleftmargin =0cm, leftmargin=-2pt, innerrightmargin=0cm]
mdseries
#1
endmdframed
usepackagemdframed
begindocument
Some text, with pictures, lists, sections
beginenumerate
item Some text, with pictures, lists, sections
responseanswer1
item Some text, with pictures, lists, sections
responseanswer2
endenumerate
Some text, with pictures, lists, sections
responsethis is my answer
Some text, with pictures, lists, sections
sectionsection
subsectionsubsection1
Some text, with pictures, lists, sections
subsectionsubsection2
Some text, with pictures, lists, sections
subsectionsubsection3
Some text, with pictures, lists, sections
responseI also have an answer here
enddocument
marginpar layout
marginpar layout
edited 3 mins ago
sheß
asked yesterday
sheßsheß
2,21311435
2,21311435
1
Maybe related: tex.stackexchange.com/questions/68251/…
– Steven B. Segletes
yesterday
2
Not a solution, but if you are looking into this I would try to usetcolorbox
instead ofmdframed
.tcolorbox
is actively maintained and has an awesome manual whilemdframed
development seems to have stalled a while ago.
– moewe
yesterday
@Steven B. Segletes, Certainly related, but different, because it does not allow me to insert replies wherever I want. I can't writeembed text beginenumerate item item1 response
.
– sheß
yesterday
2
@sheß Could you clarify? One can indeed put enumerations inside theembed
. So are you looking to suspend the embed to provide a response and then continue the enumeration where it left off?
– Steven B. Segletes
yesterday
1
What if you just draw a line on the left margin (using a suitably prepared background image perhaps), and use your definedresponse
environment to draw a box with a white border on the left to cover up the pre-drawn line?
– Willie Wong
12 hours ago
|
show 3 more comments
1
Maybe related: tex.stackexchange.com/questions/68251/…
– Steven B. Segletes
yesterday
2
Not a solution, but if you are looking into this I would try to usetcolorbox
instead ofmdframed
.tcolorbox
is actively maintained and has an awesome manual whilemdframed
development seems to have stalled a while ago.
– moewe
yesterday
@Steven B. Segletes, Certainly related, but different, because it does not allow me to insert replies wherever I want. I can't writeembed text beginenumerate item item1 response
.
– sheß
yesterday
2
@sheß Could you clarify? One can indeed put enumerations inside theembed
. So are you looking to suspend the embed to provide a response and then continue the enumeration where it left off?
– Steven B. Segletes
yesterday
1
What if you just draw a line on the left margin (using a suitably prepared background image perhaps), and use your definedresponse
environment to draw a box with a white border on the left to cover up the pre-drawn line?
– Willie Wong
12 hours ago
1
1
Maybe related: tex.stackexchange.com/questions/68251/…
– Steven B. Segletes
yesterday
Maybe related: tex.stackexchange.com/questions/68251/…
– Steven B. Segletes
yesterday
2
2
Not a solution, but if you are looking into this I would try to use
tcolorbox
instead of mdframed
. tcolorbox
is actively maintained and has an awesome manual while mdframed
development seems to have stalled a while ago.– moewe
yesterday
Not a solution, but if you are looking into this I would try to use
tcolorbox
instead of mdframed
. tcolorbox
is actively maintained and has an awesome manual while mdframed
development seems to have stalled a while ago.– moewe
yesterday
@Steven B. Segletes, Certainly related, but different, because it does not allow me to insert replies wherever I want. I can't write
embed text beginenumerate item item1 response
.– sheß
yesterday
@Steven B. Segletes, Certainly related, but different, because it does not allow me to insert replies wherever I want. I can't write
embed text beginenumerate item item1 response
.– sheß
yesterday
2
2
@sheß Could you clarify? One can indeed put enumerations inside the
embed
. So are you looking to suspend the embed to provide a response and then continue the enumeration where it left off?– Steven B. Segletes
yesterday
@sheß Could you clarify? One can indeed put enumerations inside the
embed
. So are you looking to suspend the embed to provide a response and then continue the enumeration where it left off?– Steven B. Segletes
yesterday
1
1
What if you just draw a line on the left margin (using a suitably prepared background image perhaps), and use your defined
response
environment to draw a box with a white border on the left to cover up the pre-drawn line?– Willie Wong
12 hours ago
What if you just draw a line on the left margin (using a suitably prepared background image perhaps), and use your defined
response
environment to draw a box with a white border on the left to cover up the pre-drawn line?– Willie Wong
12 hours ago
|
show 3 more comments
0
active
oldest
votes
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%2f480526%2femail-style-reply-layout-vertical-line-in-left-margin-except-for-reply-environ%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f480526%2femail-style-reply-layout-vertical-line-in-left-margin-except-for-reply-environ%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
Maybe related: tex.stackexchange.com/questions/68251/…
– Steven B. Segletes
yesterday
2
Not a solution, but if you are looking into this I would try to use
tcolorbox
instead ofmdframed
.tcolorbox
is actively maintained and has an awesome manual whilemdframed
development seems to have stalled a while ago.– moewe
yesterday
@Steven B. Segletes, Certainly related, but different, because it does not allow me to insert replies wherever I want. I can't write
embed text beginenumerate item item1 response
.– sheß
yesterday
2
@sheß Could you clarify? One can indeed put enumerations inside the
embed
. So are you looking to suspend the embed to provide a response and then continue the enumeration where it left off?– Steven B. Segletes
yesterday
1
What if you just draw a line on the left margin (using a suitably prepared background image perhaps), and use your defined
response
environment to draw a box with a white border on the left to cover up the pre-drawn line?– Willie Wong
12 hours ago