I'm creating my thesis in LaTeX and it's the first time I use it. As a template I'm using that of Tufte.
I have a bibliography and I would also like to create a sitography separate from the bibliography (on another page).
This is a piece of my code:
\documentclass{tufte-book}
\begin{document}
Lorem ipsum \cite{ColinWare_InformationVisualization}, \cite{BenShneiderman_TheEyesHaveIt}, \cite{UsabilityFirst}.
\backmatter
\bibliography{./bib/bibliography}
\bibliographystyle{plainnat}
\bibliographystyle{plainnat}
\end{document}
and bibliography.bib is:
@book{ColinWare_InformationVisualization,
author = {Colin Ware},
title = {Information visualization: perception for design},
year = {2012},
publisher = {Morgan Kaufmann},
edition = {Third},
isbn = {978-0123814647}
}
@report{BenShneiderman_TheEyesHaveIt,
author = {Ben Shneiderman},
title = {The eyes have it: a task by data type taxonomy for information visualizations},
year = {1996}
}
@misc{UsabilityFirst,
title = {{Usability first} Scientifi visualization definition},
howpublished = {\url{http://www.usabilityfirst.com/glossary/scientific-visualization/}}
}
I want to separate misc elements to report and book elements.
report and book elements should be in a section called Bibliography, misc elements should be in a section called Sitography.
\usepackage[backend=biber, style=numeric, defernumbers]{biblatex}
\begin{document}
\backmatter
%\bibliography{./bibliografia/bibliography}
%\bibliography{./bibliografia/sitography}
\printbibliography[nottype=online, heading=subbibliography, title=Bibliography]
\printbibliography[type=online, heading=subbibliography, title=Sitography]
\bibliographystyle{plainnat}
Errors:
We are almost there. Here's what I got:
Why in brackets there are no numbers but the letter o?
Why is the title not formatted as if it were the title of a chapter?
Thene elements of type booklet, misc and online are not printed..
@misc{GleamArt,
ALTauthor = {Wouter Van den Broeck, Corrado Gioannini, Bruno Gonçalves, Marco Quaggiotto, Vittoria Colizza, Alessandro Vespignani},
title = {The GLEAMviz computational tool, a publicly available software to explore realistic epidemic spreading scenarios at the global scale},
date = {2011},
OPTurl = {https://bmcinfectdis.biomedcentral.com/articles/10.1186/1471-2334-11-37}
}
@online{UsabilityFirst,
ALTauthor = {},
title = {Usability first: scientific visualization definition},
date = {2011},
url = {http://www.usabilityfirst.com/glossary/scientific-visualization/}
}



biblatex. See https://tex.stackexchange.com/q/20246/35864 for a survey of the different options you have. – moewe Jul 02 '18 at 07:04multibibcould help, see https://groups.google.com/forum/#!topic/comp.text.tex/oAtOpHsPF1w – samcarter_is_at_topanswers.xyz Jul 02 '18 at 08:18listingsand its definitions, the colour definitions) and we don't have (your\includefiles) and include a few example.bibentries and citations. – moewe Jul 02 '18 at 13:01