I would like to cite ibid when the same citation is used in succession.
So, instead of it reading Apple is this [1]. This is a pear [1].
It would be Apple is this [1]. This is a pear [ibid].
However, I have not found how to do this with the numeric style. Using authoryear also just printed the whole reference. How can I get the numeric citations with ibid?
My code:
\documentclass[a4paper,oneside, 11pt, openany]{memoir}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{txfonts}
\usepackage[utf8]{inputenc}
\usepackage{wallpaper}
\usepackage{palatino}
\setlength{\parindent}{2.5em}
\usepackage[backend=biber, style= numeric-comp, ibidpage=true]{biblatex}
\addbibresource{biblio.bib}
\usepackage{rotating}
\usepackage[inner=2.5cm,outer=2.5cm, tmargin=2.5cm, bmargin=2.5cm]{geometry}
\setcounter{secnumdepth}{2}
\usepackage{titlesec}
\usepackage{color}
\titleformat{\chapter}[display]
Example text:
Coding capacity is considered to surpass that of the human genome \cite{Vipperla2012}. The specific taxa associated with a given species have the power to influence the host’s health \cite{Vipperla2012}.
memoirclass as all your citations come frombiblatex. BTW: you are much more likely to get help if you take the time to provide a fully compilable minimal example. In this case I'll have to provide a lot of extra time to test your example. – daleif Sep 06 '16 at 13:29numeric-compas base or would you be OK withnumericas well? – moewe Sep 06 '16 at 13:57numericwould be fine as well – user4476006 Sep 06 '16 at 13:58numeric-comp, but it may have rough edges. – moewe Sep 06 '16 at 14:01