I would like to present footcites as follow:
Author. Title of the article. Year of the article. [ref]
or
Ibid. [ref] (for the second times of the same cite)
For the first presentation, I use a new Cite command defined from customized \footcite command.
Here's some code for testing purposes:
\begin{filecontents}{mybib.bib}
@article{Aggarwal2004b,
author = {Aggarwal, B. B. and Takada, Y. and Oommen, O. V.},
journal = {Expert Opin Investig Drugs},
month = oct,
number = {10},
pages = {1327--1338},
publisher = {Informa Pharma Science},
title = {{From chemoprevention to chemotherapy: common targets and common goals}},
volume = {13},
year = {2004}
}
\end{filecontents}
\documentclass{report}
\usepackage[autolang=hyphen,backend=biber,style=numeric]{biblatex}
\usepackage[bookmarks,colorlinks=true]{hyperref}
\DeclareCiteCommand{\footpartcite}[\mkbibfootnote]
{\usebibmacro{prenote}}
{\usebibmacro{citeindex}%
\printnames{labelname}%
\setunit{\labelnamepunct}
\printfield[citetitle]{title}%
\newunit
\printfield{year}
{\adddot}
\mkbibbrackets{\usebibmacro{cite}}}
{\addsemicolon\space}
{\usebibmacro{postnote}}
\DeclareMultiCiteCommand{\footpartcites}[\mkbibfootnote]{\footpartcite} {\addsemicolon\space}
\bibliography{mybib}
\begin{document}
Test~\footpartcite{Aggarwal2004b}. \\
Test~\footpartcite{Aggarwal2004b}. \\
\printbibliography
\end{document}
But, this doesn't replace the footcite by "Ibid. [ref]" if the footcite is already in the document.
The result is:
The result should be like this:
1 Aggarwal, Takada, and Oommen. “From chemoprevention to chemotherapy: common targets and common goals”. 2004. [ref].
2 Ibid. [ref].
Is there any solution to replace the second footcite by Ibid...?


\AND\NOT\iffirstonpageI do get "ibid" for subsequent citations even if they are the first on the page. You will not get "ibid" if you do\cite{wilde}\cite{cicero}\cite{wilde}, as "ibid" essentially means: "The exact citation before." Maybe you want something like\ifciteseeninstead of\ifciteibid? But then the "ibid" string is highly inappropriate. – moewe Oct 18 '14 at 10:38\ifciteibid\AND\NOT\iffirstonpageby\ifciteseenI have no "ibid" and the next citation is a full citation. What it's wrong ? – asl Oct 18 '14 at 14:29citetracker=contextin order for the citetracker to work (analogous toibidtracker=constrictwhich you now will not need anymore as you don't use\ifciteibid). – moewe Oct 18 '14 at 14:45