Print list of non-cited bibliography entries without citation keysHow can I use BibTeX to cite a web...
Can the SpaceX Dragon 2 crew vehicle still use the draco and super draco thrusters to slow down when landing?
                
                    What is the purpose of easy combat scenarios that don't need resource expenditure?
                
                    Auto Insert date into Notepad
                
                    Why do members of Congress in committee hearings ask witnesses the same question multiple times?
                
                    ip vs ifconfig commands pros and cons
                
                    Eww, those bytes are gross
                
                    Meth dealer reference in Family Guy
                
                    How large should photos on my blog be?
                
                    4 Spheres all touching each other??
                
                    What is the wife of a henpecked husband called?
                
                    How to push a box with physics engine by another object?
                
                    Vacuum of space
                
                    Finding ratio of the area of triangles
                
                    Incompressible fluid definition
                
                    Why is this code uniquely decodable?
                
                    Do any poskim exempt 13-20-year-olds from Mussaf?
                
                    Why zero tolerance on nudity in space?
                
                    What to do when being responsible for data protection in your lab, yet advice is ignored?
                
                    Do my Windows system binaries contain sensitive information?
                
                    Can luacode be used in the preamble of a standalone-type document?
                
                    How should I state my MS degree in my CV when it was in practice a joint-program?
                
                    Are there instances of considering any Goddess as a female lover?
                
                    How to roast potatoes in the oven to make them crispy?
                
                    Dilemma of explaining to interviewer that he is the reason for declining second interview
Print list of non-cited bibliography entries without citation keys
How can I use BibTeX to cite a web page?Split cited and non-cited in biblatex-chicago bibliography with crossreferenceCustomized citation keys with biblatexPrint bibliography only when references are citedprint cited page range in bibliographyextract cited entries from bibliography with biberPrint biblatex bibliography without labelsHow to cite an epub or ebook with biblatex-dw?Utf8 character in citation keysPrint all bibliography entries except “dataonly” onesprint only cited entries after using nocite{*}Printing non-cited software in separate bibliography
I am using biblatex with the added feature of adding all cited references to their own category:
DeclareBibliographyCategory{cited}
AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
as shown here. Now consider this MWE:
documentclass{scrreprt}
usepackage[refsegment=chapter]{biblatex}
    DeclareBibliographyCategory{cited}%so we can access all non-cited as own category
    AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
begin{filecontents}{thebib.bib}
@misc{mathworks_constant_2018,
    type = {Documentation},
    title = {Constant volume pneumatic chamber based on ideal gas law},
    url = {https://uk.mathworks.com/help/physmod/simscape/ref/constantvolumepneumaticchamber.html},
    urldate = {2022-01-01},
    journal = {Mathworks Simulink Documentation},
    author = {{Mathworks}},
    year = {2018},
}
@online{WinNT,
  author = {MultiMedia LLC},
  title = {{MS Windows NT} Kernel Description},
  year = 1999,
  url = {http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm},
  urldate = {2010-09-30}
}
end{filecontents}
addbibresource{thebib.bib}
usepackage{cleveref}
begin{document}
    chapter{This is a chapter}
    autocite{mathworks_constant_2018}
    endrefsegment%anything after not in any segment -> not printed by bibbysegment
    nocite{*}%
    printbibheading%print big heading once
    defbibheading{subbibliography}{vspace*{1.5baselineskip}section*{Cref{refsegment:therefsectiontherefsegment}}}%
    bibbysegment[heading=subbibliography]%cycle through all segments and print
    defbibheading{notcited}{section*{Further Reading}}
    printbibliography[notcategory=cited, heading=notcited]
end{document}
with an example inspired in parts by this question.
The defbibheading with cleveref is a redefinition to allow clickable links. It is not part of the example, but I left it in so nothings breaks. I left hyperref out so they don't show. The result is:

Is there a way to remove citation keys – in this case [1] – from the Further Reading section?
Since no entries there are cited anywhere, we do not need citation keys there. It is just meant as a list for anyone who cares.
biblatex citing chapters biber
add a comment |
I am using biblatex with the added feature of adding all cited references to their own category:
DeclareBibliographyCategory{cited}
AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
as shown here. Now consider this MWE:
documentclass{scrreprt}
usepackage[refsegment=chapter]{biblatex}
    DeclareBibliographyCategory{cited}%so we can access all non-cited as own category
    AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
begin{filecontents}{thebib.bib}
@misc{mathworks_constant_2018,
    type = {Documentation},
    title = {Constant volume pneumatic chamber based on ideal gas law},
    url = {https://uk.mathworks.com/help/physmod/simscape/ref/constantvolumepneumaticchamber.html},
    urldate = {2022-01-01},
    journal = {Mathworks Simulink Documentation},
    author = {{Mathworks}},
    year = {2018},
}
@online{WinNT,
  author = {MultiMedia LLC},
  title = {{MS Windows NT} Kernel Description},
  year = 1999,
  url = {http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm},
  urldate = {2010-09-30}
}
end{filecontents}
addbibresource{thebib.bib}
usepackage{cleveref}
begin{document}
    chapter{This is a chapter}
    autocite{mathworks_constant_2018}
    endrefsegment%anything after not in any segment -> not printed by bibbysegment
    nocite{*}%
    printbibheading%print big heading once
    defbibheading{subbibliography}{vspace*{1.5baselineskip}section*{Cref{refsegment:therefsectiontherefsegment}}}%
    bibbysegment[heading=subbibliography]%cycle through all segments and print
    defbibheading{notcited}{section*{Further Reading}}
    printbibliography[notcategory=cited, heading=notcited]
end{document}
with an example inspired in parts by this question.
The defbibheading with cleveref is a redefinition to allow clickable links. It is not part of the example, but I left it in so nothings breaks. I left hyperref out so they don't show. The result is:

Is there a way to remove citation keys – in this case [1] – from the Further Reading section?
Since no entries there are cited anywhere, we do not need citation keys there. It is just meant as a list for anyone who cares.
biblatex citing chapters biber
add a comment |
I am using biblatex with the added feature of adding all cited references to their own category:
DeclareBibliographyCategory{cited}
AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
as shown here. Now consider this MWE:
documentclass{scrreprt}
usepackage[refsegment=chapter]{biblatex}
    DeclareBibliographyCategory{cited}%so we can access all non-cited as own category
    AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
begin{filecontents}{thebib.bib}
@misc{mathworks_constant_2018,
    type = {Documentation},
    title = {Constant volume pneumatic chamber based on ideal gas law},
    url = {https://uk.mathworks.com/help/physmod/simscape/ref/constantvolumepneumaticchamber.html},
    urldate = {2022-01-01},
    journal = {Mathworks Simulink Documentation},
    author = {{Mathworks}},
    year = {2018},
}
@online{WinNT,
  author = {MultiMedia LLC},
  title = {{MS Windows NT} Kernel Description},
  year = 1999,
  url = {http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm},
  urldate = {2010-09-30}
}
end{filecontents}
addbibresource{thebib.bib}
usepackage{cleveref}
begin{document}
    chapter{This is a chapter}
    autocite{mathworks_constant_2018}
    endrefsegment%anything after not in any segment -> not printed by bibbysegment
    nocite{*}%
    printbibheading%print big heading once
    defbibheading{subbibliography}{vspace*{1.5baselineskip}section*{Cref{refsegment:therefsectiontherefsegment}}}%
    bibbysegment[heading=subbibliography]%cycle through all segments and print
    defbibheading{notcited}{section*{Further Reading}}
    printbibliography[notcategory=cited, heading=notcited]
end{document}
with an example inspired in parts by this question.
The defbibheading with cleveref is a redefinition to allow clickable links. It is not part of the example, but I left it in so nothings breaks. I left hyperref out so they don't show. The result is:

Is there a way to remove citation keys – in this case [1] – from the Further Reading section?
Since no entries there are cited anywhere, we do not need citation keys there. It is just meant as a list for anyone who cares.
biblatex citing chapters biber
I am using biblatex with the added feature of adding all cited references to their own category:
DeclareBibliographyCategory{cited}
AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
as shown here. Now consider this MWE:
documentclass{scrreprt}
usepackage[refsegment=chapter]{biblatex}
    DeclareBibliographyCategory{cited}%so we can access all non-cited as own category
    AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
begin{filecontents}{thebib.bib}
@misc{mathworks_constant_2018,
    type = {Documentation},
    title = {Constant volume pneumatic chamber based on ideal gas law},
    url = {https://uk.mathworks.com/help/physmod/simscape/ref/constantvolumepneumaticchamber.html},
    urldate = {2022-01-01},
    journal = {Mathworks Simulink Documentation},
    author = {{Mathworks}},
    year = {2018},
}
@online{WinNT,
  author = {MultiMedia LLC},
  title = {{MS Windows NT} Kernel Description},
  year = 1999,
  url = {http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm},
  urldate = {2010-09-30}
}
end{filecontents}
addbibresource{thebib.bib}
usepackage{cleveref}
begin{document}
    chapter{This is a chapter}
    autocite{mathworks_constant_2018}
    endrefsegment%anything after not in any segment -> not printed by bibbysegment
    nocite{*}%
    printbibheading%print big heading once
    defbibheading{subbibliography}{vspace*{1.5baselineskip}section*{Cref{refsegment:therefsectiontherefsegment}}}%
    bibbysegment[heading=subbibliography]%cycle through all segments and print
    defbibheading{notcited}{section*{Further Reading}}
    printbibliography[notcategory=cited, heading=notcited]
end{document}
with an example inspired in parts by this question.
The defbibheading with cleveref is a redefinition to allow clickable links. It is not part of the example, but I left it in so nothings breaks. I left hyperref out so they don't show. The result is:

Is there a way to remove citation keys – in this case [1] – from the Further Reading section?
Since no entries there are cited anywhere, we do not need citation keys there. It is just meant as a list for anyone who cares.
biblatex citing chapters biber
biblatex citing chapters biber
edited 12 hours ago


JouleV
4,6691938
4,6691938
asked 12 hours ago
Hans LolloHans Lollo
1076
1076
add a comment |
add a comment |
                                1 Answer
                            1
                        
active
oldest
votes
You can define a new bibliography environment for the further reading section. I just copied the definition from authoryear.bbx as that gives a reasonably pleasant result. You will also want to use the option defernumbers to make sure that the numbering comes out as expected (you could also add the option omitnumbers to the printbibliography command of the further reading section, though that would not change the output here; there would only be a difference if further reading is followed by another numbered printbibliography with entries that have not appeared before).
documentclass{report}
usepackage[refsegment=chapter, defernumbers=true]{biblatex}
usepackage{cleveref}
DeclareBibliographyCategory{cited}
AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
defbibheading{subbibliography}{%
  section*{Cref{refsegment:therefsectiontherefsegment}}}
defbibheading{notcited}{section*{Further Reading}}
defbibenvironment{bibnonum}
  {list
     {}
     {setlength{leftmargin}{bibhang}%
      setlength{itemindent}{-leftmargin}%
      setlength{itemsep}{bibitemsep}%
      setlength{parsep}{bibparsep}}}
  {endlist}
  {item}
begin{filecontents}{jobname.bib}
@misc{mathworks_constant_2018,
  type    = {Documentation},
  title   = {Constant volume pneumatic chamber based on ideal gas law},
  url     = {https://uk.mathworks.com/help/physmod/simscape/ref/constantvolumepneumaticchamber.html},
  urldate = {2022-01-01},
  journal = {Mathworks Simulink Documentation},
  author  = {{Mathworks}},
  year    = {2018},
}
@online{WinNT,
  author  = {MultiMedia LLC},
  title   = {{MS Windows NT} Kernel Description},
  year    = 1999,
  url     = {http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm},
  urldate = {2010-09-30}
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
  chapter{This is a chapter}
  autocite{mathworks_constant_2018}
  endrefsegment
  nocite{*}
  printbibheading
  bibbysegment[heading=subbibliography]
  printbibliography[notcategory=cited, env=bibnonum, heading=notcited]
end{document}

I had to use report instead of scrreprt because of https://github.com/plk/biblatex/issues/857 to make the MWE work for me. I also removed the vspace*{1.5baselineskip}% for the MWE as I wanted to avoid the excessive space it introduces with the standard class.
 
 
 
 
 
 
 
 This is very nice, thank you. The indentation for the second line is very nice and important for legibility. I do not have to use- defernumbers, because I am not on a numeric style for the real document. Thank you for the tip. Further, I could run- scrreprtsuccessfully. Note that I am using- refsegment=chapter, not- refsection=chapter. Removing- vspaceis a good touch I had overlooked but now adopted.
 
 – Hans Lollo
 5 hours ago
 
 
 
 
 
 
 
 1
 
 
 
 
 
 @HansLollo For non-- numericstyles the- defernumbersis indeed not relevant or necessary. You are probably using an older version of- biblatexor KOMA script if you don't get the undesirable behaviour (so my advise is: Don't update your system right now!), it is structurally the same issue for the- refsegmentand- refsectionoption.
 
 – moewe
 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%2f477523%2fprint-list-of-non-cited-bibliography-entries-without-citation-keys%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
You can define a new bibliography environment for the further reading section. I just copied the definition from authoryear.bbx as that gives a reasonably pleasant result. You will also want to use the option defernumbers to make sure that the numbering comes out as expected (you could also add the option omitnumbers to the printbibliography command of the further reading section, though that would not change the output here; there would only be a difference if further reading is followed by another numbered printbibliography with entries that have not appeared before).
documentclass{report}
usepackage[refsegment=chapter, defernumbers=true]{biblatex}
usepackage{cleveref}
DeclareBibliographyCategory{cited}
AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
defbibheading{subbibliography}{%
  section*{Cref{refsegment:therefsectiontherefsegment}}}
defbibheading{notcited}{section*{Further Reading}}
defbibenvironment{bibnonum}
  {list
     {}
     {setlength{leftmargin}{bibhang}%
      setlength{itemindent}{-leftmargin}%
      setlength{itemsep}{bibitemsep}%
      setlength{parsep}{bibparsep}}}
  {endlist}
  {item}
begin{filecontents}{jobname.bib}
@misc{mathworks_constant_2018,
  type    = {Documentation},
  title   = {Constant volume pneumatic chamber based on ideal gas law},
  url     = {https://uk.mathworks.com/help/physmod/simscape/ref/constantvolumepneumaticchamber.html},
  urldate = {2022-01-01},
  journal = {Mathworks Simulink Documentation},
  author  = {{Mathworks}},
  year    = {2018},
}
@online{WinNT,
  author  = {MultiMedia LLC},
  title   = {{MS Windows NT} Kernel Description},
  year    = 1999,
  url     = {http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm},
  urldate = {2010-09-30}
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
  chapter{This is a chapter}
  autocite{mathworks_constant_2018}
  endrefsegment
  nocite{*}
  printbibheading
  bibbysegment[heading=subbibliography]
  printbibliography[notcategory=cited, env=bibnonum, heading=notcited]
end{document}

I had to use report instead of scrreprt because of https://github.com/plk/biblatex/issues/857 to make the MWE work for me. I also removed the vspace*{1.5baselineskip}% for the MWE as I wanted to avoid the excessive space it introduces with the standard class.
 
 
 
 
 
 
 
 This is very nice, thank you. The indentation for the second line is very nice and important for legibility. I do not have to use- defernumbers, because I am not on a numeric style for the real document. Thank you for the tip. Further, I could run- scrreprtsuccessfully. Note that I am using- refsegment=chapter, not- refsection=chapter. Removing- vspaceis a good touch I had overlooked but now adopted.
 
 – Hans Lollo
 5 hours ago
 
 
 
 
 
 
 
 1
 
 
 
 
 
 @HansLollo For non-- numericstyles the- defernumbersis indeed not relevant or necessary. You are probably using an older version of- biblatexor KOMA script if you don't get the undesirable behaviour (so my advise is: Don't update your system right now!), it is structurally the same issue for the- refsegmentand- refsectionoption.
 
 – moewe
 5 hours ago
 
 
 
add a comment |
You can define a new bibliography environment for the further reading section. I just copied the definition from authoryear.bbx as that gives a reasonably pleasant result. You will also want to use the option defernumbers to make sure that the numbering comes out as expected (you could also add the option omitnumbers to the printbibliography command of the further reading section, though that would not change the output here; there would only be a difference if further reading is followed by another numbered printbibliography with entries that have not appeared before).
documentclass{report}
usepackage[refsegment=chapter, defernumbers=true]{biblatex}
usepackage{cleveref}
DeclareBibliographyCategory{cited}
AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
defbibheading{subbibliography}{%
  section*{Cref{refsegment:therefsectiontherefsegment}}}
defbibheading{notcited}{section*{Further Reading}}
defbibenvironment{bibnonum}
  {list
     {}
     {setlength{leftmargin}{bibhang}%
      setlength{itemindent}{-leftmargin}%
      setlength{itemsep}{bibitemsep}%
      setlength{parsep}{bibparsep}}}
  {endlist}
  {item}
begin{filecontents}{jobname.bib}
@misc{mathworks_constant_2018,
  type    = {Documentation},
  title   = {Constant volume pneumatic chamber based on ideal gas law},
  url     = {https://uk.mathworks.com/help/physmod/simscape/ref/constantvolumepneumaticchamber.html},
  urldate = {2022-01-01},
  journal = {Mathworks Simulink Documentation},
  author  = {{Mathworks}},
  year    = {2018},
}
@online{WinNT,
  author  = {MultiMedia LLC},
  title   = {{MS Windows NT} Kernel Description},
  year    = 1999,
  url     = {http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm},
  urldate = {2010-09-30}
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
  chapter{This is a chapter}
  autocite{mathworks_constant_2018}
  endrefsegment
  nocite{*}
  printbibheading
  bibbysegment[heading=subbibliography]
  printbibliography[notcategory=cited, env=bibnonum, heading=notcited]
end{document}

I had to use report instead of scrreprt because of https://github.com/plk/biblatex/issues/857 to make the MWE work for me. I also removed the vspace*{1.5baselineskip}% for the MWE as I wanted to avoid the excessive space it introduces with the standard class.
 
 
 
 
 
 
 
 This is very nice, thank you. The indentation for the second line is very nice and important for legibility. I do not have to use- defernumbers, because I am not on a numeric style for the real document. Thank you for the tip. Further, I could run- scrreprtsuccessfully. Note that I am using- refsegment=chapter, not- refsection=chapter. Removing- vspaceis a good touch I had overlooked but now adopted.
 
 – Hans Lollo
 5 hours ago
 
 
 
 
 
 
 
 1
 
 
 
 
 
 @HansLollo For non-- numericstyles the- defernumbersis indeed not relevant or necessary. You are probably using an older version of- biblatexor KOMA script if you don't get the undesirable behaviour (so my advise is: Don't update your system right now!), it is structurally the same issue for the- refsegmentand- refsectionoption.
 
 – moewe
 5 hours ago
 
 
 
add a comment |
You can define a new bibliography environment for the further reading section. I just copied the definition from authoryear.bbx as that gives a reasonably pleasant result. You will also want to use the option defernumbers to make sure that the numbering comes out as expected (you could also add the option omitnumbers to the printbibliography command of the further reading section, though that would not change the output here; there would only be a difference if further reading is followed by another numbered printbibliography with entries that have not appeared before).
documentclass{report}
usepackage[refsegment=chapter, defernumbers=true]{biblatex}
usepackage{cleveref}
DeclareBibliographyCategory{cited}
AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
defbibheading{subbibliography}{%
  section*{Cref{refsegment:therefsectiontherefsegment}}}
defbibheading{notcited}{section*{Further Reading}}
defbibenvironment{bibnonum}
  {list
     {}
     {setlength{leftmargin}{bibhang}%
      setlength{itemindent}{-leftmargin}%
      setlength{itemsep}{bibitemsep}%
      setlength{parsep}{bibparsep}}}
  {endlist}
  {item}
begin{filecontents}{jobname.bib}
@misc{mathworks_constant_2018,
  type    = {Documentation},
  title   = {Constant volume pneumatic chamber based on ideal gas law},
  url     = {https://uk.mathworks.com/help/physmod/simscape/ref/constantvolumepneumaticchamber.html},
  urldate = {2022-01-01},
  journal = {Mathworks Simulink Documentation},
  author  = {{Mathworks}},
  year    = {2018},
}
@online{WinNT,
  author  = {MultiMedia LLC},
  title   = {{MS Windows NT} Kernel Description},
  year    = 1999,
  url     = {http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm},
  urldate = {2010-09-30}
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
  chapter{This is a chapter}
  autocite{mathworks_constant_2018}
  endrefsegment
  nocite{*}
  printbibheading
  bibbysegment[heading=subbibliography]
  printbibliography[notcategory=cited, env=bibnonum, heading=notcited]
end{document}

I had to use report instead of scrreprt because of https://github.com/plk/biblatex/issues/857 to make the MWE work for me. I also removed the vspace*{1.5baselineskip}% for the MWE as I wanted to avoid the excessive space it introduces with the standard class.
You can define a new bibliography environment for the further reading section. I just copied the definition from authoryear.bbx as that gives a reasonably pleasant result. You will also want to use the option defernumbers to make sure that the numbering comes out as expected (you could also add the option omitnumbers to the printbibliography command of the further reading section, though that would not change the output here; there would only be a difference if further reading is followed by another numbered printbibliography with entries that have not appeared before).
documentclass{report}
usepackage[refsegment=chapter, defernumbers=true]{biblatex}
usepackage{cleveref}
DeclareBibliographyCategory{cited}
AtEveryCitekey{addtocategory{cited}{thefield{entrykey}}}
defbibheading{subbibliography}{%
  section*{Cref{refsegment:therefsectiontherefsegment}}}
defbibheading{notcited}{section*{Further Reading}}
defbibenvironment{bibnonum}
  {list
     {}
     {setlength{leftmargin}{bibhang}%
      setlength{itemindent}{-leftmargin}%
      setlength{itemsep}{bibitemsep}%
      setlength{parsep}{bibparsep}}}
  {endlist}
  {item}
begin{filecontents}{jobname.bib}
@misc{mathworks_constant_2018,
  type    = {Documentation},
  title   = {Constant volume pneumatic chamber based on ideal gas law},
  url     = {https://uk.mathworks.com/help/physmod/simscape/ref/constantvolumepneumaticchamber.html},
  urldate = {2022-01-01},
  journal = {Mathworks Simulink Documentation},
  author  = {{Mathworks}},
  year    = {2018},
}
@online{WinNT,
  author  = {MultiMedia LLC},
  title   = {{MS Windows NT} Kernel Description},
  year    = 1999,
  url     = {http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm},
  urldate = {2010-09-30}
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
  chapter{This is a chapter}
  autocite{mathworks_constant_2018}
  endrefsegment
  nocite{*}
  printbibheading
  bibbysegment[heading=subbibliography]
  printbibliography[notcategory=cited, env=bibnonum, heading=notcited]
end{document}

I had to use report instead of scrreprt because of https://github.com/plk/biblatex/issues/857 to make the MWE work for me. I also removed the vspace*{1.5baselineskip}% for the MWE as I wanted to avoid the excessive space it introduces with the standard class.
edited 6 hours ago
answered 11 hours ago
moewemoewe
92.4k10115350
92.4k10115350
 
 
 
 
 
 
 
 This is very nice, thank you. The indentation for the second line is very nice and important for legibility. I do not have to use- defernumbers, because I am not on a numeric style for the real document. Thank you for the tip. Further, I could run- scrreprtsuccessfully. Note that I am using- refsegment=chapter, not- refsection=chapter. Removing- vspaceis a good touch I had overlooked but now adopted.
 
 – Hans Lollo
 5 hours ago
 
 
 
 
 
 
 
 1
 
 
 
 
 
 @HansLollo For non-- numericstyles the- defernumbersis indeed not relevant or necessary. You are probably using an older version of- biblatexor KOMA script if you don't get the undesirable behaviour (so my advise is: Don't update your system right now!), it is structurally the same issue for the- refsegmentand- refsectionoption.
 
 – moewe
 5 hours ago
 
 
 
add a comment |
 
 
 
 
 
 
 
 This is very nice, thank you. The indentation for the second line is very nice and important for legibility. I do not have to use- defernumbers, because I am not on a numeric style for the real document. Thank you for the tip. Further, I could run- scrreprtsuccessfully. Note that I am using- refsegment=chapter, not- refsection=chapter. Removing- vspaceis a good touch I had overlooked but now adopted.
 
 – Hans Lollo
 5 hours ago
 
 
 
 
 
 
 
 1
 
 
 
 
 
 @HansLollo For non-- numericstyles the- defernumbersis indeed not relevant or necessary. You are probably using an older version of- biblatexor KOMA script if you don't get the undesirable behaviour (so my advise is: Don't update your system right now!), it is structurally the same issue for the- refsegmentand- refsectionoption.
 
 – moewe
 5 hours ago
 
 
 
This is very nice, thank you. The indentation for the second line is very nice and important for legibility. I do not have to use
defernumbers, because I am not on a numeric style for the real document. Thank you for the tip. Further, I could run scrreprt successfully. Note that I am using refsegment=chapter, not refsection=chapter. Removing vspace is a good touch I had overlooked but now adopted.– Hans Lollo
5 hours ago
This is very nice, thank you. The indentation for the second line is very nice and important for legibility. I do not have to use
defernumbers, because I am not on a numeric style for the real document. Thank you for the tip. Further, I could run scrreprt successfully. Note that I am using refsegment=chapter, not refsection=chapter. Removing vspace is a good touch I had overlooked but now adopted.– Hans Lollo
5 hours ago
1
1
@HansLollo For non-
numeric styles the defernumbers is indeed not relevant or necessary. You are probably using an older version of biblatex or KOMA script if you don't get the undesirable behaviour (so my advise is: Don't update your system right now!), it is structurally the same issue for the refsegment and refsection option.– moewe
5 hours ago
@HansLollo For non-
numeric styles the defernumbers is indeed not relevant or necessary. You are probably using an older version of biblatex or KOMA script if you don't get the undesirable behaviour (so my advise is: Don't update your system right now!), it is structurally the same issue for the refsegment and refsection option.– moewe
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%2f477523%2fprint-list-of-non-cited-bibliography-entries-without-citation-keys%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