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.5\baselineskip}\section*{\Cref{refsegment:\therefsection\therefsegment}}}%
\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.


defernumbers, because I am not on a numeric style for the real document. Thank you for the tip. Further, I could runscrreprtsuccessfully. Note that I am usingrefsegment=chapter, notrefsection=chapter. Removing\vspaceis a good touch I had overlooked but now adopted. – Alex Povel Mar 03 '19 at 16:19numericstyles thedefernumbersis indeed not relevant or necessary. You are probably using an older version ofbiblatexor 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 therefsegmentandrefsectionoption. – moewe Mar 03 '19 at 16:22