I'm currently trying to setup a document with the bibliography made with biblatex. I have used the template/example from this website khirevich.
Everything seems to be going fine, but in his template you either cite a reference with 1, [2] and so on, or with a superscript number, and then the reference as a footnote. I would like to have an inline reference, like: (Number, Author, year) or something like that. But not just the number, and not as a footnote.
My example code is currently this right now:
%%%%%%%%%%%%%%%
% \cite (citation number of normal size in square brackets, no cite info in footnote);
% \superfullcite (superscript citation number, full cite info in footnote);
% \sjcitep (superscript citation number, short cite info in footnote).
%%%%%%%%%%%%%%%
\documentclass[a4paper,12pt]{article}
\usepackage[danish]{babel}
\usepackage[utf8]{inputenc}
\usepackage[margin=1.4in]{geometry}
\usepackage{amsmath, amsthm, amssymb, amsbsy}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage[hyperref=true,
url=false,
isbn=false,
backref=true,
style=custom-numeric-comp,
maxcitenames=3,
maxbibnames=100,
backend=bibtex, % while checking on one of my (newest) systems, this option was needed to generate bibliography
block=none]{biblatex}
\usepackage{hyperref}
% back reference text preceding the page number ("see p.")
\DefineBibliographyStrings{english}{%
backrefpage = {se s.}, % for single page number
backrefpages = {se ss.} % for multiple page numbers
}
% the followings activate 'custom-english-ordinal-sscript.lbx'
% in order to print ordinal 'edition' suffixes as superscripts,
% and adjusts (reduces) spacing between suffix and following "ed."
\DeclareLanguageMapping{english}{custom-english-ordinal-sscript}
\DeclareFieldFormat{edition}%
{\ifinteger{#1}%
{\mkbibordedition{#1}\addthinspace{}ed.}%
{#1\isdot}}
% removes period at the very end of bibliographic record
\renewcommand{\finentrypunct}{}
% removes period after DOI and suppresses capitalization
% of the word following DOI ("See p. xx" -> "see p. xx")
\renewcommand{\newunitpunct}{\addspace\midsentence}
\DeclareFieldFormat{journaltitle}{\mkbibemph{#1},} % italic journal title with comma
\DeclareFieldFormat[inbook,thesis]{title}{\mkbibemph{#1}\addperiod} % italic title with period
\DeclareFieldFormat[article]{title}{#1} % title of journal article is printed as normal text
\DeclareFieldFormat[article]{volume}{\textbf{#1}\addcolon\space} % makes volume of journal bold and adds colon
%%%%%%%%%
% the command \sjcitep defined below prints footnote citation above punctuation
\newlength{\spc} % declare a variable to save spacing value
\newcommand{\sjcitep}[2][]{% new command with two arguments: optional (#1) and mandatory (#2)
\settowidth{\spc}{#1}% set value of \spc variable to the width of #1 argument
\addtolength{\spc}{-1.8\spc}% subtract from \spc about two (1.8) of its values making its magnitude negative
#1% print the optional argument
\hspace*{\spc}% print an additional negative spacing stored in \spc after #1
\supershortnotecite{#2}}% print (cite) the mandatory argument
%%%%%%%%%
\bibliography{example_ref_list} % includes file "example_ref_list.bib" with data on the cited references
\title{Title}
\author{Name}
\begin{document}
\maketitle
\section*{Aronova}
Text text
% prints author names as small caps
\renewcommand{\mkbibnamefirst}[1]{\textsc{#1}}
\renewcommand{\mkbibnamelast}[1]{\textsc{#1}}
\renewcommand{\mkbibnameprefix}[1]{\textsc{#1}}
\renewcommand{\mkbibnameaffix}[1]{\textsc{#1}}
\printbibliography
\end{document}
Sorry for all the comments, but I'm still trying to figure out using this :) So does anyone know what I have to to in order to get inline cites, and not just numbers or footnote references.
Thanks in advance.

biblatexs standard authoryear styles? Insteadcustom-numeric-compsimply useauthoryear(or one of its varieties). – Simifilm Sep 25 '13 at 13:22backend=bibtex. I would look into gettingbiberup and running as a matter of priority, then the rest of BibLaTeX should work exactly as advertised. – Sean Allred Sep 25 '13 at 14:04numeric's or\citeauthoretc.) or use a "proper" author year style (authoryearsprings to mind). – moewe Sep 25 '13 at 18:22