Creating a note section
I'm wondering how I can create a note section like in the picture with two lines. I would love if I can use it as a command in LaTeX like note{some text}.

Thanks in advance.
footnotes
New contributor
user3874252 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I'm wondering how I can create a note section like in the picture with two lines. I would love if I can use it as a command in LaTeX like note{some text}.

Thanks in advance.
footnotes
New contributor
user3874252 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2
Could post what you've tried?
– Bernard
5 hours ago
What does your question have to do with biblatex or marginnote?
– Bernard
5 hours ago
So far I have tried using ` begin{lstlisting} Note: Some text end{lstlisting} `
– user3874252
5 hours ago
1
Using what, exactly?
– Bernard
5 hours ago
The lstlisting package. But that package is more for larger amount of code and have it formatted to display a gray background.
– user3874252
5 hours ago
add a comment |
I'm wondering how I can create a note section like in the picture with two lines. I would love if I can use it as a command in LaTeX like note{some text}.

Thanks in advance.
footnotes
New contributor
user3874252 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I'm wondering how I can create a note section like in the picture with two lines. I would love if I can use it as a command in LaTeX like note{some text}.

Thanks in advance.
footnotes
footnotes
New contributor
user3874252 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user3874252 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 3 hours ago
Christian Hupfer
150k15199394
150k15199394
New contributor
user3874252 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 5 hours ago
user3874252user3874252
334
334
New contributor
user3874252 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user3874252 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
user3874252 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2
Could post what you've tried?
– Bernard
5 hours ago
What does your question have to do with biblatex or marginnote?
– Bernard
5 hours ago
So far I have tried using ` begin{lstlisting} Note: Some text end{lstlisting} `
– user3874252
5 hours ago
1
Using what, exactly?
– Bernard
5 hours ago
The lstlisting package. But that package is more for larger amount of code and have it formatted to display a gray background.
– user3874252
5 hours ago
add a comment |
2
Could post what you've tried?
– Bernard
5 hours ago
What does your question have to do with biblatex or marginnote?
– Bernard
5 hours ago
So far I have tried using ` begin{lstlisting} Note: Some text end{lstlisting} `
– user3874252
5 hours ago
1
Using what, exactly?
– Bernard
5 hours ago
The lstlisting package. But that package is more for larger amount of code and have it formatted to display a gray background.
– user3874252
5 hours ago
2
2
Could post what you've tried?
– Bernard
5 hours ago
Could post what you've tried?
– Bernard
5 hours ago
What does your question have to do with biblatex or marginnote?
– Bernard
5 hours ago
What does your question have to do with biblatex or marginnote?
– Bernard
5 hours ago
So far I have tried using ` begin{lstlisting} Note: Some text end{lstlisting} `
– user3874252
5 hours ago
So far I have tried using ` begin{lstlisting} Note: Some text end{lstlisting} `
– user3874252
5 hours ago
1
1
Using what, exactly?
– Bernard
5 hours ago
Using what, exactly?
– Bernard
5 hours ago
The lstlisting package. But that package is more for larger amount of code and have it formatted to display a gray background.
– user3874252
5 hours ago
The lstlisting package. But that package is more for larger amount of code and have it formatted to display a gray background.
– user3874252
5 hours ago
add a comment |
4 Answers
4
active
oldest
votes
Is this something that you were looking for ?

Then you can use the new command notte derived from the environment quote:
documentclass{article}
usepackage{lipsum}
newlength{Lnote}
newcommand{notte}[1]
{addtolength{leftmargini}{4em}
settowidth{Lnote}{textbf{Note:~}}
begin{quote}
rule{dimexprtextwidth-2leftmargini}{1pt}\
mbox{}hspace{-Lnote}textbf{Note:~}%
#1\[-0.5ex]
rule{dimexprtextwidth-2leftmargini}{1pt}
end{quote}
addtolength{leftmargini}{-4em}}
begin{document}
lipsum[3]
notte{To create a note section like in the picture, use the command texttt{notte}.}
lipsum[4]
notte{Another note}
end{document}
1
Very good and I have appreciated your work.
– Sebastiano
4 hours ago
1
@Sebastiano Thanks. However, I was wondering how to set the left and right margins differently--leftmarginicontrols the left margin within a quote very much as its right margin too... and there apparently seems to be norightmargini!
– Partha D.
4 hours ago
add a comment |
An inevitable tcolorbox solution, providing a lot of configuration possibilities.
The default shift of the Note: is set to 1.5cm, but this can be changed by the option nodeshift=...

documentclass{article}
usepackage{blindtext}
usepackage[most]{tcolorbox}
makeatletter
NewDocumentCommand{mynote}{+O{}+m}{%
begingroup
tcbset{%
noteshift/.store in=mynote@shift,
noteshift=1.5cm
}
begin{tcolorbox}[nobeforeafter,
enhanced,
sharp corners,
toprule=1pt,
bottomrule=1pt,
leftrule=0pt,
rightrule=0pt,
colback=yellow!20,
#1,
left skip=mynote@shift,
right skip=mynote@shift,
overlay={node[right] (mynotenode) at ([xshift=-mynote@shift]frame.west) {textbf{Note:}} ;},
]
#2
end{tcolorbox}
endgroup
}
makeatother
begin{document}
blindtext
mynote{Brontosaurs are thin at one end, thick in the middle and thin again at the other end}
% Exaggerated example
mynote[noteshift=4cm,colback=green!40]{Brontosaurs are thin at one end, thick in the middle and thin again at the other end}
end{document}
add a comment |
A solution with tabularx, makecell and linegoal:
documentclass{article}
usepackage{array}
usepackage{booktabs}
usepackage[svgnames, table]{xcolor}
usepackage{tabularx, makecell, linegoal}
usepackage{lipsum}% only for example text
newcommand{mynote}[1]{medskippartextbf{small Note}quadsetlength{extrarowheight}{2pt}begin{tabularx}{linegoal}{X}
Xhline{1pt}
rowcolor{WhiteSmoke!80!Lavender}#1 \
Xhline{1pt}
end{tabularx}}
begin{document}
sffamily
lipsum[2]
mynote{Internal pullup resistors are enabled on the MSP430F20xx to support ltextsuperscript{2}C communication}
end{document}

add a comment |
I would suggest you try footnote. There should be an understanding in the text, as to the note points to which text (like references). Here is a sample code:
documentclass{article}
begin{document}
Hello World
This is text with a note.footnote{This is the note text.
Here it is at the bottom of the page.}
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
});
}
});
user3874252 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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%2f474177%2fcreating-a-note-section%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this something that you were looking for ?

Then you can use the new command notte derived from the environment quote:
documentclass{article}
usepackage{lipsum}
newlength{Lnote}
newcommand{notte}[1]
{addtolength{leftmargini}{4em}
settowidth{Lnote}{textbf{Note:~}}
begin{quote}
rule{dimexprtextwidth-2leftmargini}{1pt}\
mbox{}hspace{-Lnote}textbf{Note:~}%
#1\[-0.5ex]
rule{dimexprtextwidth-2leftmargini}{1pt}
end{quote}
addtolength{leftmargini}{-4em}}
begin{document}
lipsum[3]
notte{To create a note section like in the picture, use the command texttt{notte}.}
lipsum[4]
notte{Another note}
end{document}
1
Very good and I have appreciated your work.
– Sebastiano
4 hours ago
1
@Sebastiano Thanks. However, I was wondering how to set the left and right margins differently--leftmarginicontrols the left margin within a quote very much as its right margin too... and there apparently seems to be norightmargini!
– Partha D.
4 hours ago
add a comment |
Is this something that you were looking for ?

Then you can use the new command notte derived from the environment quote:
documentclass{article}
usepackage{lipsum}
newlength{Lnote}
newcommand{notte}[1]
{addtolength{leftmargini}{4em}
settowidth{Lnote}{textbf{Note:~}}
begin{quote}
rule{dimexprtextwidth-2leftmargini}{1pt}\
mbox{}hspace{-Lnote}textbf{Note:~}%
#1\[-0.5ex]
rule{dimexprtextwidth-2leftmargini}{1pt}
end{quote}
addtolength{leftmargini}{-4em}}
begin{document}
lipsum[3]
notte{To create a note section like in the picture, use the command texttt{notte}.}
lipsum[4]
notte{Another note}
end{document}
1
Very good and I have appreciated your work.
– Sebastiano
4 hours ago
1
@Sebastiano Thanks. However, I was wondering how to set the left and right margins differently--leftmarginicontrols the left margin within a quote very much as its right margin too... and there apparently seems to be norightmargini!
– Partha D.
4 hours ago
add a comment |
Is this something that you were looking for ?

Then you can use the new command notte derived from the environment quote:
documentclass{article}
usepackage{lipsum}
newlength{Lnote}
newcommand{notte}[1]
{addtolength{leftmargini}{4em}
settowidth{Lnote}{textbf{Note:~}}
begin{quote}
rule{dimexprtextwidth-2leftmargini}{1pt}\
mbox{}hspace{-Lnote}textbf{Note:~}%
#1\[-0.5ex]
rule{dimexprtextwidth-2leftmargini}{1pt}
end{quote}
addtolength{leftmargini}{-4em}}
begin{document}
lipsum[3]
notte{To create a note section like in the picture, use the command texttt{notte}.}
lipsum[4]
notte{Another note}
end{document}
Is this something that you were looking for ?

Then you can use the new command notte derived from the environment quote:
documentclass{article}
usepackage{lipsum}
newlength{Lnote}
newcommand{notte}[1]
{addtolength{leftmargini}{4em}
settowidth{Lnote}{textbf{Note:~}}
begin{quote}
rule{dimexprtextwidth-2leftmargini}{1pt}\
mbox{}hspace{-Lnote}textbf{Note:~}%
#1\[-0.5ex]
rule{dimexprtextwidth-2leftmargini}{1pt}
end{quote}
addtolength{leftmargini}{-4em}}
begin{document}
lipsum[3]
notte{To create a note section like in the picture, use the command texttt{notte}.}
lipsum[4]
notte{Another note}
end{document}
answered 4 hours ago
Partha D.Partha D.
93017
93017
1
Very good and I have appreciated your work.
– Sebastiano
4 hours ago
1
@Sebastiano Thanks. However, I was wondering how to set the left and right margins differently--leftmarginicontrols the left margin within a quote very much as its right margin too... and there apparently seems to be norightmargini!
– Partha D.
4 hours ago
add a comment |
1
Very good and I have appreciated your work.
– Sebastiano
4 hours ago
1
@Sebastiano Thanks. However, I was wondering how to set the left and right margins differently--leftmarginicontrols the left margin within a quote very much as its right margin too... and there apparently seems to be norightmargini!
– Partha D.
4 hours ago
1
1
Very good and I have appreciated your work.
– Sebastiano
4 hours ago
Very good and I have appreciated your work.
– Sebastiano
4 hours ago
1
1
@Sebastiano Thanks. However, I was wondering how to set the left and right margins differently--
leftmargini controls the left margin within a quote very much as its right margin too... and there apparently seems to be no rightmargini !– Partha D.
4 hours ago
@Sebastiano Thanks. However, I was wondering how to set the left and right margins differently--
leftmargini controls the left margin within a quote very much as its right margin too... and there apparently seems to be no rightmargini !– Partha D.
4 hours ago
add a comment |
An inevitable tcolorbox solution, providing a lot of configuration possibilities.
The default shift of the Note: is set to 1.5cm, but this can be changed by the option nodeshift=...

documentclass{article}
usepackage{blindtext}
usepackage[most]{tcolorbox}
makeatletter
NewDocumentCommand{mynote}{+O{}+m}{%
begingroup
tcbset{%
noteshift/.store in=mynote@shift,
noteshift=1.5cm
}
begin{tcolorbox}[nobeforeafter,
enhanced,
sharp corners,
toprule=1pt,
bottomrule=1pt,
leftrule=0pt,
rightrule=0pt,
colback=yellow!20,
#1,
left skip=mynote@shift,
right skip=mynote@shift,
overlay={node[right] (mynotenode) at ([xshift=-mynote@shift]frame.west) {textbf{Note:}} ;},
]
#2
end{tcolorbox}
endgroup
}
makeatother
begin{document}
blindtext
mynote{Brontosaurs are thin at one end, thick in the middle and thin again at the other end}
% Exaggerated example
mynote[noteshift=4cm,colback=green!40]{Brontosaurs are thin at one end, thick in the middle and thin again at the other end}
end{document}
add a comment |
An inevitable tcolorbox solution, providing a lot of configuration possibilities.
The default shift of the Note: is set to 1.5cm, but this can be changed by the option nodeshift=...

documentclass{article}
usepackage{blindtext}
usepackage[most]{tcolorbox}
makeatletter
NewDocumentCommand{mynote}{+O{}+m}{%
begingroup
tcbset{%
noteshift/.store in=mynote@shift,
noteshift=1.5cm
}
begin{tcolorbox}[nobeforeafter,
enhanced,
sharp corners,
toprule=1pt,
bottomrule=1pt,
leftrule=0pt,
rightrule=0pt,
colback=yellow!20,
#1,
left skip=mynote@shift,
right skip=mynote@shift,
overlay={node[right] (mynotenode) at ([xshift=-mynote@shift]frame.west) {textbf{Note:}} ;},
]
#2
end{tcolorbox}
endgroup
}
makeatother
begin{document}
blindtext
mynote{Brontosaurs are thin at one end, thick in the middle and thin again at the other end}
% Exaggerated example
mynote[noteshift=4cm,colback=green!40]{Brontosaurs are thin at one end, thick in the middle and thin again at the other end}
end{document}
add a comment |
An inevitable tcolorbox solution, providing a lot of configuration possibilities.
The default shift of the Note: is set to 1.5cm, but this can be changed by the option nodeshift=...

documentclass{article}
usepackage{blindtext}
usepackage[most]{tcolorbox}
makeatletter
NewDocumentCommand{mynote}{+O{}+m}{%
begingroup
tcbset{%
noteshift/.store in=mynote@shift,
noteshift=1.5cm
}
begin{tcolorbox}[nobeforeafter,
enhanced,
sharp corners,
toprule=1pt,
bottomrule=1pt,
leftrule=0pt,
rightrule=0pt,
colback=yellow!20,
#1,
left skip=mynote@shift,
right skip=mynote@shift,
overlay={node[right] (mynotenode) at ([xshift=-mynote@shift]frame.west) {textbf{Note:}} ;},
]
#2
end{tcolorbox}
endgroup
}
makeatother
begin{document}
blindtext
mynote{Brontosaurs are thin at one end, thick in the middle and thin again at the other end}
% Exaggerated example
mynote[noteshift=4cm,colback=green!40]{Brontosaurs are thin at one end, thick in the middle and thin again at the other end}
end{document}
An inevitable tcolorbox solution, providing a lot of configuration possibilities.
The default shift of the Note: is set to 1.5cm, but this can be changed by the option nodeshift=...

documentclass{article}
usepackage{blindtext}
usepackage[most]{tcolorbox}
makeatletter
NewDocumentCommand{mynote}{+O{}+m}{%
begingroup
tcbset{%
noteshift/.store in=mynote@shift,
noteshift=1.5cm
}
begin{tcolorbox}[nobeforeafter,
enhanced,
sharp corners,
toprule=1pt,
bottomrule=1pt,
leftrule=0pt,
rightrule=0pt,
colback=yellow!20,
#1,
left skip=mynote@shift,
right skip=mynote@shift,
overlay={node[right] (mynotenode) at ([xshift=-mynote@shift]frame.west) {textbf{Note:}} ;},
]
#2
end{tcolorbox}
endgroup
}
makeatother
begin{document}
blindtext
mynote{Brontosaurs are thin at one end, thick in the middle and thin again at the other end}
% Exaggerated example
mynote[noteshift=4cm,colback=green!40]{Brontosaurs are thin at one end, thick in the middle and thin again at the other end}
end{document}
edited 3 hours ago
answered 3 hours ago
Christian HupferChristian Hupfer
150k15199394
150k15199394
add a comment |
add a comment |
A solution with tabularx, makecell and linegoal:
documentclass{article}
usepackage{array}
usepackage{booktabs}
usepackage[svgnames, table]{xcolor}
usepackage{tabularx, makecell, linegoal}
usepackage{lipsum}% only for example text
newcommand{mynote}[1]{medskippartextbf{small Note}quadsetlength{extrarowheight}{2pt}begin{tabularx}{linegoal}{X}
Xhline{1pt}
rowcolor{WhiteSmoke!80!Lavender}#1 \
Xhline{1pt}
end{tabularx}}
begin{document}
sffamily
lipsum[2]
mynote{Internal pullup resistors are enabled on the MSP430F20xx to support ltextsuperscript{2}C communication}
end{document}

add a comment |
A solution with tabularx, makecell and linegoal:
documentclass{article}
usepackage{array}
usepackage{booktabs}
usepackage[svgnames, table]{xcolor}
usepackage{tabularx, makecell, linegoal}
usepackage{lipsum}% only for example text
newcommand{mynote}[1]{medskippartextbf{small Note}quadsetlength{extrarowheight}{2pt}begin{tabularx}{linegoal}{X}
Xhline{1pt}
rowcolor{WhiteSmoke!80!Lavender}#1 \
Xhline{1pt}
end{tabularx}}
begin{document}
sffamily
lipsum[2]
mynote{Internal pullup resistors are enabled on the MSP430F20xx to support ltextsuperscript{2}C communication}
end{document}

add a comment |
A solution with tabularx, makecell and linegoal:
documentclass{article}
usepackage{array}
usepackage{booktabs}
usepackage[svgnames, table]{xcolor}
usepackage{tabularx, makecell, linegoal}
usepackage{lipsum}% only for example text
newcommand{mynote}[1]{medskippartextbf{small Note}quadsetlength{extrarowheight}{2pt}begin{tabularx}{linegoal}{X}
Xhline{1pt}
rowcolor{WhiteSmoke!80!Lavender}#1 \
Xhline{1pt}
end{tabularx}}
begin{document}
sffamily
lipsum[2]
mynote{Internal pullup resistors are enabled on the MSP430F20xx to support ltextsuperscript{2}C communication}
end{document}

A solution with tabularx, makecell and linegoal:
documentclass{article}
usepackage{array}
usepackage{booktabs}
usepackage[svgnames, table]{xcolor}
usepackage{tabularx, makecell, linegoal}
usepackage{lipsum}% only for example text
newcommand{mynote}[1]{medskippartextbf{small Note}quadsetlength{extrarowheight}{2pt}begin{tabularx}{linegoal}{X}
Xhline{1pt}
rowcolor{WhiteSmoke!80!Lavender}#1 \
Xhline{1pt}
end{tabularx}}
begin{document}
sffamily
lipsum[2]
mynote{Internal pullup resistors are enabled on the MSP430F20xx to support ltextsuperscript{2}C communication}
end{document}

answered 4 hours ago
BernardBernard
169k773198
169k773198
add a comment |
add a comment |
I would suggest you try footnote. There should be an understanding in the text, as to the note points to which text (like references). Here is a sample code:
documentclass{article}
begin{document}
Hello World
This is text with a note.footnote{This is the note text.
Here it is at the bottom of the page.}
end{document}

add a comment |
I would suggest you try footnote. There should be an understanding in the text, as to the note points to which text (like references). Here is a sample code:
documentclass{article}
begin{document}
Hello World
This is text with a note.footnote{This is the note text.
Here it is at the bottom of the page.}
end{document}

add a comment |
I would suggest you try footnote. There should be an understanding in the text, as to the note points to which text (like references). Here is a sample code:
documentclass{article}
begin{document}
Hello World
This is text with a note.footnote{This is the note text.
Here it is at the bottom of the page.}
end{document}

I would suggest you try footnote. There should be an understanding in the text, as to the note points to which text (like references). Here is a sample code:
documentclass{article}
begin{document}
Hello World
This is text with a note.footnote{This is the note text.
Here it is at the bottom of the page.}
end{document}

answered 3 hours ago
subham sonisubham soni
3,87682981
3,87682981
add a comment |
add a comment |
user3874252 is a new contributor. Be nice, and check out our Code of Conduct.
user3874252 is a new contributor. Be nice, and check out our Code of Conduct.
user3874252 is a new contributor. Be nice, and check out our Code of Conduct.
user3874252 is a new contributor. Be nice, and check out our Code of Conduct.
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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%2f474177%2fcreating-a-note-section%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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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
2
Could post what you've tried?
– Bernard
5 hours ago
What does your question have to do with biblatex or marginnote?
– Bernard
5 hours ago
So far I have tried using ` begin{lstlisting} Note: Some text end{lstlisting} `
– user3874252
5 hours ago
1
Using what, exactly?
– Bernard
5 hours ago
The lstlisting package. But that package is more for larger amount of code and have it formatted to display a gray background.
– user3874252
5 hours ago