diff --git a/main.tex b/main.tex index 16bfd87..a7a815b 100644 --- a/main.tex +++ b/main.tex @@ -2,9 +2,22 @@ % !TeX encoding = UTF-8 \documentclass[a4paper,twoside,twocolumn,11pt,ngerman,open=right]{scrbook} + % input all style definitions :-) \input{styles} +% Leseliste +% https://tex.stackexchange.com/questions/10104/two-bibliographies-with-two-different-styles-in-the-same-document/10106 +\defbibenvironment{nolabelbib} + {\list + {} + {\setlength{\leftmargin}{\bibhang}% + \setlength{\itemindent}{-\leftmargin}% + \setlength{\itemsep}{\bibitemsep}% + \setlength{\parsep}{\bibparsep}}} + {\endlist} + {\item} + \renewcommand{\topfraction}{.35} \renewcommand{\bottomfraction}{.45} \renewcommand{\dbltopfraction}{.50} @@ -14,7 +27,8 @@ \usepackage{multirow} -\addbibresource{quellen.bib} +\addbibresource[label=default]{quellen.bib} +\addbibresource[label=moretoread]{moretoread.bib} \setcounter{topnumber}{4} \setcounter{bottomnumber}{4} @@ -100,6 +114,7 @@ In diesem Dokument werden Icons aus der Reihe \glqq{}small-n-flat\grqq{} von Pao \clearpage \twocolumn +\begin{refsection}[default] \part{Grundlagen} \input{grundlagen.inc.tex} @@ -147,7 +162,14 @@ In diesem Dokument werden Icons aus der Reihe \glqq{}small-n-flat\grqq{} von Pao \listoffigures -\printbibliography[title={Literatur und Quellen}] +\printbibliography[title={Quellen}] +\end{refsection} + +\begin{refsection}[moretoread] + \nocite{*} + \printbibliography[title={Lesevorschläge}] +\end{refsection} + \listoffixmes diff --git a/moretoread.bib b/moretoread.bib new file mode 100644 index 0000000..097b8bd --- /dev/null +++ b/moretoread.bib @@ -0,0 +1,27 @@ +@online{yt:jordanfabrics, + title = {Jordan Fabrics}, + author = {YouTube}, + url = {https://www.youtube.com/channel/UCx44Zf6KYNL53ikyk7insIA}, + urldate = {202-01-26}, +} + +@online{yt:midnightquiltshow, + title = {Midnight Quilt Show}, + author = {YouTube}, + url = {https://www.youtube.com/channel/UCLjp-yIkiW1qAM-OX4StCCg}, + urldate = {202-01-26}, +} + +@online{yt:missourystar, + title = {Missouri Star Quilt Company}, + author = {YouTube}, + url = {https://www.youtube.com/channel/UCWnhR7raxVFDHmDXqCIzuAw}, + urldate = {202-01-26}, +} + +@online{yt:irenaswanson, + title = {Irena Swanson}, + author = {YouTube}, + url = {https://www.youtube.com/channel/UCeJQNp4f-_9MALkUwr-HNfg}, + urldate = {202-01-26}, +} diff --git a/styles.tex b/styles.tex index 5efcedc..c0af470 100644 --- a/styles.tex +++ b/styles.tex @@ -21,7 +21,6 @@ \usepackage[activate=true,tracking=true]{microtype} \usepackage[titles]{tocloft} \usepackage{fixme} -\usepackage[citestyle=numeric-comp]{biblatex} \usepackage{hologo} \usepackage{varioref} \usepackage{nameref} @@ -36,6 +35,8 @@ \usepackage{blindtext} \usepackage{balance} \usepackage{comment} +\usepackage[backend=biber,citestyle=numeric-comp]{biblatex} + \newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}} % linksbündig mit Breitenangabe \newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}} % zentriert mit Breitenangabe