von langinart » Mo 20. Jan 2014, 14:16
Hallo ich habe ein kleines Problem. In meiner Bachelorarbeit habe ich eine Hauptbibliographie und eine Sekundärbibliograpfie. Ich nutzte dafür bis jetzt "type=other" und "nottype=other". Ich will jetzt aber eine dritte Bibliografie öffnen und dann aus "nottype=other" zwei Bibliografien im Stil von " type=article" und "type=phdthesis" machen. Das Prblem dabie ist, dass Latex mir folgendes mitteilt:
Type"phdthesis" not found on input line...
Die Sache ist die, dass vorher die phdthesis Einträge aber unter "nottype=other" gefunden wurden.
Hier ein Minimalbsp:
\documentclass[twoside]{scrreprt}
\renewcommand{\familydefault}{\rmdefault}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\pgfplotsset{compat=1.9}
\usepackage{float}
\usepackage{capt-of}
\usepackage{graphicx}
\usepackage{placeins}
\usepackage[babel, german=quotes]{csquotes}
\usepackage[natbib=true,backend=biber,firstinits=true,defernumbers,sorting=none]{biblatex}
\begin{filecontents}{test.bib}
@PHDTHESIS{Aviles,
author = {Aviles},
title = {Experiments on falling evaporation of a water-ethylene glycol mixture
on a surface with longitudinal grooves},
school = {TU Berlin},
year = {2007},
address = {Straße des 17. Juni 135 10623 Berlin},
timestamp = {2013.09.24}
}
\end{filecontents}
\addbibresource{test.bib}
\begin{document}
Text
\cite{Aviles}
\printbibheading
\printbibliography[prefixnumbers=C,type=phdthesis,heading=subbibliography,title={test}]
\end{document}
Hallo ich habe ein kleines Problem. In meiner Bachelorarbeit habe ich eine Hauptbibliographie und eine Sekundärbibliograpfie. Ich nutzte dafür bis jetzt "type=other" und "nottype=other". Ich will jetzt aber eine dritte Bibliografie öffnen und dann aus "nottype=other" zwei Bibliografien im Stil von " type=article" und "type=phdthesis" machen. Das Prblem dabie ist, dass Latex mir folgendes mitteilt:
[code] Type"phdthesis" not found on input line...
[/code]
Die Sache ist die, dass vorher die phdthesis Einträge aber unter "nottype=other" gefunden wurden.
Hier ein Minimalbsp:
[code]
\documentclass[twoside]{scrreprt}
\renewcommand{\familydefault}{\rmdefault}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\pgfplotsset{compat=1.9}
\usepackage{float}
\usepackage{capt-of}
\usepackage{graphicx}
\usepackage{placeins}
\usepackage[babel, german=quotes]{csquotes}
\usepackage[natbib=true,backend=biber,firstinits=true,defernumbers,sorting=none]{biblatex}
\begin{filecontents}{test.bib}
@PHDTHESIS{Aviles,
author = {Aviles},
title = {Experiments on falling evaporation of a water-ethylene glycol mixture
on a surface with longitudinal grooves},
school = {TU Berlin},
year = {2007},
address = {Straße des 17. Juni 135 10623 Berlin},
timestamp = {2013.09.24}
}
\end{filecontents}
\addbibresource{test.bib}
\begin{document}
Text
\cite{Aviles}
\printbibheading
\printbibliography[prefixnumbers=C,type=phdthesis,heading=subbibliography,title={test}]
\end{document}
[/code]