How to do blind endnotes The Next CEO of Stack Overflowunnumbered endnotes referenced by page and extractMake chapter* same as unnumbered chapter (using memoir) ?How to reset endnotes counter at parts and chaptersIs it possible for the printed output to show the endnote boxes?endnote inside author tagChapter name appearing in the endnotesunnumbered endnotes referenced by page and extractmemoir endnote: remove Notes chapters, reset endnote numbering for each chapterHeadings in endnoteMemoir class endnotes reverse order of idtextinnotes and printpageinnotesEndnotes in figures are weird
Horror film about a man brought out of cryogenic suspension without a soul, around 1990
An elegant way to define a sequence
Can tesla valve concept work for electrons?
Simplify trigonometric expression using trigonometric identities
Calculate the Mean mean of two numbers
Mathematica command that allows it to read my intentions
Is it correct to say moon starry nights?
Why did the Drakh emissary look so blurred in S04:E11 "Lines of Communication"?
What is Decreasing Arithmetic progression?
How do I secure a TV wall mount?
About implicitly convert type 'int' to 'char', why it is different between `s[i] += s[j]` and `s[i] = s[i]+s[j] `
Avoiding the "not like other girls" trope?
Issue with New version of Metamask: Remix cannot detect the Metamask address
Noise during hard braking
Car headlights in a world without electricity
How can I force the size of an int for debugging purposes?
What is the difference between 'contrib' and 'non-free' packages repositories?
Calculating discount not working
What did the word "leisure" mean in late 18th Century usage?
How can the PCs determine if an item is a phylactery?
Incomplete cube
"Eavesdropping" vs "Listen in on"
Is it possible to create a QR code using text?
Is it reasonable to ask other researchers to send me their previous grant applications?
How to do blind endnotes
The Next CEO of Stack Overflowunnumbered endnotes referenced by page and extractMake chapter* same as unnumbered chapter (using memoir) ?How to reset endnotes counter at parts and chaptersIs it possible for the printed output to show the endnote boxes?endnote inside author tagChapter name appearing in the endnotesunnumbered endnotes referenced by page and extractmemoir endnote: remove Notes chapters, reset endnote numbering for each chapterHeadings in endnoteMemoir class endnotes reverse order of idtextinnotes and printpageinnotesEndnotes in figures are weird
A "blind endnote" consists of the page number to which the endnote refers, some text that precedes where the endnote number would be in the text, and the text of the endnote. In the text itself, there is no number for the endnote. This structure is used for all the endnotes (in this case, in a book using memoir documentclass). This has become a popular endnote style for books targeted at the general public rather than academics.
The text looks like this (assume the text is on page 3):
This is the text with an endnote that will appear in the endnotes, but no endnote number.
The endnote looks like this:
3 "no endnote number": This is the text of the endnote."
The right side of the endnote text is ragged. The left side is left justified, with the left margin for the text even with the start of the footnote text (in the example, even with the opening quotation mark).
I started with unnumbered endnotes referenced by page and extract
which gets me close to my desired outcome. I have played with enotez and other packages, but I get farther rather than closer to the desired outcome. I have three problems I can't solve:
I can't replace the endnote number (in the endnotes) with the page number (it tried to redefine
@makeenmarkaspageref, but that did not work). There should not be a period after the page number.I can't get the headings in the endnotes for chapters where I have eliminated the chapter number (i.e., the Preface and the Conclusion). I understand I need additional code to address the * version of chapter headings, but the combinations I tried did not get the desired result.
When a chapter does not have endnotes (unlikely, but possible), I want that chapter heading omitted from the endnotes. In the example, the heading for the second chapter would not be in the endnotes.
I have reached the limits of my current abilities. My MWE is as follows:
documentclassmemoir
usepackageendnotes
usepackageetoolbox
usepackageebgaramond
makeatletter
defendnote@ifnextchar[@xendnotestepcounterendnote%
protected@xdef@theenmarktheendnote%
labelen:@theenmark%
%@endnotemark
@endnotetext
def@makeenmarkpagerefen:@theenmark
renewcommandenotesizenormalsize
renewcommandenoteformat%
raggedright
leftskip=1.8em
makebox[0pt][r]theenmark. rule0ptdimexprhtstrutbox%
apptocmd@makechapterhead addtoendnotesprotectsubsection* textscMakeLowercasethechapter: #1indent
makeatother
begindocument
tableofcontents
chapter*Preface
addcontentslinetocchapterPreface
This is a sentence in the preface.endnotetextbf``in the preface'': This is the preface endnote. I have made each of the endnotes long so that the text will wrap.
chapterFirst Chapter
This is a sentence in the first chapter.endnotetextbf``the first chapter'': This is the first chapter endnote. I have made each of the endnotes long so that the text will wrap.
chapterSecond Chapter
This is a sentence in the second chapter; it does not have an endnote.
chapterThird Chapter
This is a sentence in the third chapter.endnotetextbf``the third chapter'': This is the third chapter endnote. I have made each of the endnotes long so that the text will wrap.
chapter*Conclusion
addcontentslinetocchapterConclusion
This is a sentence in the conclusion.endnotetextbf``in the conclusion'': This is the conclusion endnote. I have made each of the endnotes long so that the text will wrap.
clearpage
theendnotes
enddocument
The MWE gets me the following (which does not have the Preface or Conclusion headings in the endnotes and does not have the page numbers instead of the endnote numbers):
sectioning memoir endnotes
add a comment |
A "blind endnote" consists of the page number to which the endnote refers, some text that precedes where the endnote number would be in the text, and the text of the endnote. In the text itself, there is no number for the endnote. This structure is used for all the endnotes (in this case, in a book using memoir documentclass). This has become a popular endnote style for books targeted at the general public rather than academics.
The text looks like this (assume the text is on page 3):
This is the text with an endnote that will appear in the endnotes, but no endnote number.
The endnote looks like this:
3 "no endnote number": This is the text of the endnote."
The right side of the endnote text is ragged. The left side is left justified, with the left margin for the text even with the start of the footnote text (in the example, even with the opening quotation mark).
I started with unnumbered endnotes referenced by page and extract
which gets me close to my desired outcome. I have played with enotez and other packages, but I get farther rather than closer to the desired outcome. I have three problems I can't solve:
I can't replace the endnote number (in the endnotes) with the page number (it tried to redefine
@makeenmarkaspageref, but that did not work). There should not be a period after the page number.I can't get the headings in the endnotes for chapters where I have eliminated the chapter number (i.e., the Preface and the Conclusion). I understand I need additional code to address the * version of chapter headings, but the combinations I tried did not get the desired result.
When a chapter does not have endnotes (unlikely, but possible), I want that chapter heading omitted from the endnotes. In the example, the heading for the second chapter would not be in the endnotes.
I have reached the limits of my current abilities. My MWE is as follows:
documentclassmemoir
usepackageendnotes
usepackageetoolbox
usepackageebgaramond
makeatletter
defendnote@ifnextchar[@xendnotestepcounterendnote%
protected@xdef@theenmarktheendnote%
labelen:@theenmark%
%@endnotemark
@endnotetext
def@makeenmarkpagerefen:@theenmark
renewcommandenotesizenormalsize
renewcommandenoteformat%
raggedright
leftskip=1.8em
makebox[0pt][r]theenmark. rule0ptdimexprhtstrutbox%
apptocmd@makechapterhead addtoendnotesprotectsubsection* textscMakeLowercasethechapter: #1indent
makeatother
begindocument
tableofcontents
chapter*Preface
addcontentslinetocchapterPreface
This is a sentence in the preface.endnotetextbf``in the preface'': This is the preface endnote. I have made each of the endnotes long so that the text will wrap.
chapterFirst Chapter
This is a sentence in the first chapter.endnotetextbf``the first chapter'': This is the first chapter endnote. I have made each of the endnotes long so that the text will wrap.
chapterSecond Chapter
This is a sentence in the second chapter; it does not have an endnote.
chapterThird Chapter
This is a sentence in the third chapter.endnotetextbf``the third chapter'': This is the third chapter endnote. I have made each of the endnotes long so that the text will wrap.
chapter*Conclusion
addcontentslinetocchapterConclusion
This is a sentence in the conclusion.endnotetextbf``in the conclusion'': This is the conclusion endnote. I have made each of the endnotes long so that the text will wrap.
clearpage
theendnotes
enddocument
The MWE gets me the following (which does not have the Preface or Conclusion headings in the endnotes and does not have the page numbers instead of the endnote numbers):
sectioning memoir endnotes
add a comment |
A "blind endnote" consists of the page number to which the endnote refers, some text that precedes where the endnote number would be in the text, and the text of the endnote. In the text itself, there is no number for the endnote. This structure is used for all the endnotes (in this case, in a book using memoir documentclass). This has become a popular endnote style for books targeted at the general public rather than academics.
The text looks like this (assume the text is on page 3):
This is the text with an endnote that will appear in the endnotes, but no endnote number.
The endnote looks like this:
3 "no endnote number": This is the text of the endnote."
The right side of the endnote text is ragged. The left side is left justified, with the left margin for the text even with the start of the footnote text (in the example, even with the opening quotation mark).
I started with unnumbered endnotes referenced by page and extract
which gets me close to my desired outcome. I have played with enotez and other packages, but I get farther rather than closer to the desired outcome. I have three problems I can't solve:
I can't replace the endnote number (in the endnotes) with the page number (it tried to redefine
@makeenmarkaspageref, but that did not work). There should not be a period after the page number.I can't get the headings in the endnotes for chapters where I have eliminated the chapter number (i.e., the Preface and the Conclusion). I understand I need additional code to address the * version of chapter headings, but the combinations I tried did not get the desired result.
When a chapter does not have endnotes (unlikely, but possible), I want that chapter heading omitted from the endnotes. In the example, the heading for the second chapter would not be in the endnotes.
I have reached the limits of my current abilities. My MWE is as follows:
documentclassmemoir
usepackageendnotes
usepackageetoolbox
usepackageebgaramond
makeatletter
defendnote@ifnextchar[@xendnotestepcounterendnote%
protected@xdef@theenmarktheendnote%
labelen:@theenmark%
%@endnotemark
@endnotetext
def@makeenmarkpagerefen:@theenmark
renewcommandenotesizenormalsize
renewcommandenoteformat%
raggedright
leftskip=1.8em
makebox[0pt][r]theenmark. rule0ptdimexprhtstrutbox%
apptocmd@makechapterhead addtoendnotesprotectsubsection* textscMakeLowercasethechapter: #1indent
makeatother
begindocument
tableofcontents
chapter*Preface
addcontentslinetocchapterPreface
This is a sentence in the preface.endnotetextbf``in the preface'': This is the preface endnote. I have made each of the endnotes long so that the text will wrap.
chapterFirst Chapter
This is a sentence in the first chapter.endnotetextbf``the first chapter'': This is the first chapter endnote. I have made each of the endnotes long so that the text will wrap.
chapterSecond Chapter
This is a sentence in the second chapter; it does not have an endnote.
chapterThird Chapter
This is a sentence in the third chapter.endnotetextbf``the third chapter'': This is the third chapter endnote. I have made each of the endnotes long so that the text will wrap.
chapter*Conclusion
addcontentslinetocchapterConclusion
This is a sentence in the conclusion.endnotetextbf``in the conclusion'': This is the conclusion endnote. I have made each of the endnotes long so that the text will wrap.
clearpage
theendnotes
enddocument
The MWE gets me the following (which does not have the Preface or Conclusion headings in the endnotes and does not have the page numbers instead of the endnote numbers):
sectioning memoir endnotes
A "blind endnote" consists of the page number to which the endnote refers, some text that precedes where the endnote number would be in the text, and the text of the endnote. In the text itself, there is no number for the endnote. This structure is used for all the endnotes (in this case, in a book using memoir documentclass). This has become a popular endnote style for books targeted at the general public rather than academics.
The text looks like this (assume the text is on page 3):
This is the text with an endnote that will appear in the endnotes, but no endnote number.
The endnote looks like this:
3 "no endnote number": This is the text of the endnote."
The right side of the endnote text is ragged. The left side is left justified, with the left margin for the text even with the start of the footnote text (in the example, even with the opening quotation mark).
I started with unnumbered endnotes referenced by page and extract
which gets me close to my desired outcome. I have played with enotez and other packages, but I get farther rather than closer to the desired outcome. I have three problems I can't solve:
I can't replace the endnote number (in the endnotes) with the page number (it tried to redefine
@makeenmarkaspageref, but that did not work). There should not be a period after the page number.I can't get the headings in the endnotes for chapters where I have eliminated the chapter number (i.e., the Preface and the Conclusion). I understand I need additional code to address the * version of chapter headings, but the combinations I tried did not get the desired result.
When a chapter does not have endnotes (unlikely, but possible), I want that chapter heading omitted from the endnotes. In the example, the heading for the second chapter would not be in the endnotes.
I have reached the limits of my current abilities. My MWE is as follows:
documentclassmemoir
usepackageendnotes
usepackageetoolbox
usepackageebgaramond
makeatletter
defendnote@ifnextchar[@xendnotestepcounterendnote%
protected@xdef@theenmarktheendnote%
labelen:@theenmark%
%@endnotemark
@endnotetext
def@makeenmarkpagerefen:@theenmark
renewcommandenotesizenormalsize
renewcommandenoteformat%
raggedright
leftskip=1.8em
makebox[0pt][r]theenmark. rule0ptdimexprhtstrutbox%
apptocmd@makechapterhead addtoendnotesprotectsubsection* textscMakeLowercasethechapter: #1indent
makeatother
begindocument
tableofcontents
chapter*Preface
addcontentslinetocchapterPreface
This is a sentence in the preface.endnotetextbf``in the preface'': This is the preface endnote. I have made each of the endnotes long so that the text will wrap.
chapterFirst Chapter
This is a sentence in the first chapter.endnotetextbf``the first chapter'': This is the first chapter endnote. I have made each of the endnotes long so that the text will wrap.
chapterSecond Chapter
This is a sentence in the second chapter; it does not have an endnote.
chapterThird Chapter
This is a sentence in the third chapter.endnotetextbf``the third chapter'': This is the third chapter endnote. I have made each of the endnotes long so that the text will wrap.
chapter*Conclusion
addcontentslinetocchapterConclusion
This is a sentence in the conclusion.endnotetextbf``in the conclusion'': This is the conclusion endnote. I have made each of the endnotes long so that the text will wrap.
clearpage
theendnotes
enddocument
The MWE gets me the following (which does not have the Preface or Conclusion headings in the endnotes and does not have the page numbers instead of the endnote numbers):
sectioning memoir endnotes
sectioning memoir endnotes
asked 8 mins ago
kgradykgrady
304
304
add a comment |
add a comment |
0
active
oldest
votes
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');
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%2f482650%2fhow-to-do-blind-endnotes%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');
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%2f482650%2fhow-to-do-blind-endnotes%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
