I want it only show as
[1] Dipl.-Ing.(FH)Grunewald, Tobias; Dipl.-Ing. Liers, Henri, Analyse spezieller Unfallszenarien
in footcite, and complete information in bibliography,so as
[1]Dipl.-Ing.(FH)Grunewald, Tobias; Dipl.-Ing. Liers, Henri, Analyse spezieller Unfallszenarien, Tech.rep. pp. 9, 25, 44, Technische Universität Dresden, October, 2012,
Now the problem is it only shows not correctly in footnote and in both footnote and bibliography there is no "[1]" before the citation info.
How can I change the code in order to show it correctly?
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage[a4paper, text={16.5cm, 25.2cm}, centering]{geometry}
\usepackage[sfdefault]{ClearSans}
\usepackage[utf8]{inputenc}
\usepackage{xcolor}
\usepackage{parskip}% Much better than:
% \setlength{\parskip}{1.2ex}
% \setlength{\parindent}{0em}
\usepackage{filecontents}
\usepackage[backend=bibtex,
style=numeric,
natbib=true,
]{biblatex}
\usepackage{hyperref}% Generally last package loaded
\hypersetup{
colorlinks,
linkcolor={black},
citecolor={blue!50!black},
}
\begin{filecontents}{mycitation.bib}
@TechReport{ASU,
Title = {Analyse spezieller Unfallszenarien},
Author = {{{\relax Dipl.-Ing.(FH)}Grunewald, Tobias; {\relax Dipl.-Ing.} Liers, Henri}},
Institution = {Technische Universität Dresden},
Note = {pp. 9, 25, 44},
Year = {October, 2012}
}
\end{filecontents}
% Define new \footcite like command with number and author
\DeclareCiteCommand{\partcite}
{\usebibmacro{prenote}}
{\usebibmacro{citeindex}%
\mkbibbrackets{\usebibmacro{cite}}%
\setunit{\addnbspace}
\printnames{labelname}%
\setunit{\labelnamepunct}
\printfield[citetitle]{title}}%
{\addsemicolon\space}
{\usebibmacro{postnote}}
\DeclareMultiCiteCommand{\partcites}{\partcite}{\addsemicolon\space}
\makeatletter
\newcommand\footnoteref[1]{\protected@xdef\@thefnmark{\ref{#1}}\@footnotemark}
\makeatother
\addbibresource{mycitation.bib}
\begin{document}
Here is test 1. \footnote{\label{ASU}\partcite{ASU}}
This is test 2. \footnoteref{ASU}
\printbibliography
\end{document}
\partciteas well as the bibliography. – moewe Dec 14 '16 at 08:09