Ich bin nun zwar schon etwas geübter im Umgang mit LaTeX, doch will mir folgendes Problem einfach nicht gelingen:
Bei uns am Institut ist es üblich, dass die Bibliographie nach Literatur, resp. Quellen unterschieden wird. Das hab ich mit dem \cite Befehl auch wunderbar hingekriegt. Nun möchte ich aber das selbe noch mit dem \cites Befehl hinkriegen, was dann überhaupt nicht klappen will. Hat da vielleicht jemand von euch eine Idee wie ich das hin bekomme?
Hier ein Minimalbeispiel:
\documentclass[a4paper, 12pt]{article} \usepackage{typearea} \usepackage[ngerman]{babel} \usepackage[utf8]{inputenc} \usepackage{graphicx} \usepackage{wrapfig} \usepackage[style=historische-zeitschrift,sortcites,backend=bibtex]{biblatex} \usepackage[right]{eurosym} \usepackage{calc} \usepackage{caption} \usepackage[bottom]{footmisc} \usepackage{units} \usepackage{setspace} %\usepackage{romannum} \newenvironment{altDescription}[1] {\begin{list}{} {\renewcommand\makelabel[1]{\textrm{##1:}\hfil} \settowidth\labelwidth{\makelabel{#1}} \setlength\leftmargin{\labelwidth+\labelsep}}} {\end{list}} \usepackage[pdftex]{hyperref} \usepackage{hypcap} \newcommand{\RM}[1]{\MakeUppercase{\romannumeral #1{.}}} \bibliography{bib/umbrail} \defbibheading{bibliography}{\section{Bibliographie}} \DeclareBibliographyCategory{literatur} \DeclareBibliographyCategory{quelle-unprint} \DeclareBibliographyCategory{quelle-print} \DeclareBibliographyCategory{quelle-abb} \defbibheading{quelle-abb}{\subsection{Abbildungen}} \defbibheading{literatur}{\subsection{Literatur}} \defbibheading{quelle-unprint}{\subsection{ungedruckte Quellen}} \defbibheading{quelle-print}{\subsection{gedruckte Quellen}} \newcommand{\citeliteratur}[2][]{\cite[#1]{#2}\addtocategory{literatur}{#2}} \newcommand{\citesliteratur}[2][]{\cites[#1]{#2}\addtocategory{literatur}{#2}} \newcommand{\citequellep}[2][]{\cite[#1]{#2}\addtocategory{quelle-print}{#2}} \newcommand{\citequelleup}[2][]{\cite[#1]{#2}\addtocategory{quelle-unprint}{#2}} \newcommand{\citeabb}[2][]{\cite[#1]{#2}\addtocategory{quelle-abb}{#2}} \urlstyle{same} % =============== % BibLaTeX custom style for history % =============== \DeclareNameAlias{default}{last-first} %\DeclareNameAlias{sortname}{last-first} %\DeclareNameFormat{sortname}{% % \usebibmacro{name:last-first}{#1}{#3}{#5}{#7}% % \usebibmacro{name:andothers}} % =============== % end of BibLaTeX custom style for history % =============== \begin{document} \tableofcontents \thispagestyle{empty} \clearpage \setstretch{1.5} \section{Einführung} Ein kurzer Beispieltext\footnote{\citesliteratur[S. 1]{hls.wk} [S. 311.]{bio.sprech} [S. 3]{po.all}} Noch mehr Beispieltext\footnote{\citeliteratur[S. 70.]{po.all}} \renewcommand{\labelnamepunct}{\addcolon\space} \printbibheading \bibbycategory \end{document} \begin{filecontents*}{123.bib} %% This BibTeX bibliography file was created using BibDesk. %% http://bibdesk.sourceforge.net/ %% Created for Sandro Portmann at 2015-08-24 10:48:18 +0200 %% Saved with string encoding Unicode (UTF-8) @book{po.all, Address = {Basel}, Author = {Mario Podzorski}, Date-Added = {2015-08-22 13:30:42 +0000}, Date-Modified = {2015-08-24 08:48:17 +0000}, Shorttitle = {Kriegsalltag}, Title = {Kriegsalltag und Kriegserfahrungen von Schweizer Soldaten am Umbrail und im M{\"u}nstertal im ersten Weltkrieg}, Year = {2015}} @book{bio.sprech, Address = {Z{\"u}rich}, Author = {Daniel Sprecher}, Date-Added = {2014-11-25 09:47:44 +0000}, Date-Modified = {2014-11-25 09:48:27 +0000}, Shorttitle = {Generalstabschef}, Title = {Generalstabschef Theophil Sprecher von Berneck. Seine milit{\"a}risch-politische Leistung unter Ber{\"u}cksichtigung der Neutralit{\"a}t}, Year = {2000}} @article{hls.wk, Author = {Hans Rudolf Fuhrer and Mauro Cerutti and Marc Perrenoud and Markus B{\"u}rgi and}, Date-Added = {2014-11-25 09:43:54 +0000}, Date-Modified = {2014-11-25 09:45:58 +0000}, Journal = {Historisches Lexikon der Schweiz (online)}, Pages = {zuletzt gepr{\"u}ft: 25.11.2014}, Shorttitle = {Weltkrieg}, Title = {Weltkrieg, Erster}, Url = {http://www.hls-dhs-dss.ch/textes/d/D8926.php}, Year = {2006}, Bdsk-Url-1 = {http://www.hls-dhs-dss.ch/textes/d/D23942.php}} \end{filecontents*}
Beste Grüsse und schonmal besten Dank für eure Hilfe.