Unterteiltes Literaturverzeichnis in moderncv

Fragen und Probleme, die nicht den obigen Kategorien zugeordnet werden können


Patrick1990
Forum-Century
Forum-Century
Beiträge: 208
Registriert: Mo 18. Feb 2013, 07:56
Wohnort: Ilmenau

Unterteiltes Literaturverzeichnis in moderncv

Beitrag von Patrick1990 »

Hallo,

ich würde gern das moderncv-Paket nutzen und dort ein untergliedertes Literaturverzeichnis einbringen. Ich hab jetzt schon länger probiert, aber so richtig will es nicht.

Ich möchte am Linken Rand die Überschrift des Unterverzeichnisses stehen haben und rechts die zugehörige Literatur. Gern von 1 bis x durchnummeriert.

Könnt ihr mir da helfen?



Hier der Link zu einem Overleaf-Minimalprojekt:
https://www.overleaf.com/1793765816srkghxtrbsby

Ansonsten hier ein Minimalbeispiel:
\begin{filecontents}{\jobname-bib.bib}
    @online{texwelt,
        author                  = {Die TeXwelt Gemeinschaft},
        title                   = {Fragen und Antworten},
        url                     = {www.texwelt.de/wissen}
    }
    @online{texwelt:biblatex,
        author                  = {\texttt{biblatex}-Nutzer},
        title                   = {topic \texttt{biblatex}},
        url                     = {www.texwelt.de/wissen/topic/biblatex}
    }
    @book{knuth:ct:a,
        author                  = {Knuth, Donald E.},
        title                   = {The \TeX book},
        date                    = 1984,
        maintitle               = {Computers \& Typesetting},
        volume                  = {A},
        publisher               = {Addison-Wesley},
         langid                 = {english},
        keywords                = {sekundaer},
        annotation              = {Viel Interessantes zu den
        Grundlagen}
    }
    @report{norm,
        author                  = {{NA 009-00-09 AA - Beschreibung
    und Identifizierung von Dokumenten}},
        title                   = {Information and documentation
        -- Guidelines for bibliographic references and citations to information resources},
        institution             = {Internationale Organisation für Normung},
        keywords                = {Norm},
        year                    = {2013}
    }
@manual{biblatex:Doku,
    author                    = {Lehman, Philipp and Kime, Philip and Boruvka, Audrey and Wright, Joseph},
    title                     = {The Biblatex Package},
    date                      = {2014-06-24},
    version                   = {2.9a}
}
\end{filecontents}


\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{casual} 
\moderncvcolor{blue} 
\usepackage{lipsum}
\usepackage[scale=0.75]{geometry} 

\firstname{John}
\familyname{Smith}


\usepackage[backend=biber,defernumbers=false]{biblatex}
\addbibresource{\jobname-bib.bib}

\begin{document}


\makecvtitle 

\section{Education}

\cventry{2011--2012}{Masters of Commerce}{The University of California}{Berkeley}{\textit{GPA -- 8.0}}{First Class Honours}

\section{Literature}

\nocite{*}
\cvitem{Normen und Standards}{\printbibliography[heading=subbibliography,nottype=online,notkeyword=Norm,notkeyword=sekundaer, title=none]}
\cvitem{Online}{\printbibliography[type=online, heading=subbibliography, title={Aus dem Netz}]}


\end{document}