I would like to use the \textcite style: "Author (year, pages)" in the \footcite as well. I could do \footnote{\textcite}, but I was wondering if it would be possible to change the \footcite to work in the \textcite format, or better, using \autocite (so I can switch between in-line and footnote).
EDIT
This a working example:
\documentclass[a4paper,12pt]{article}
\usepackage[hyperref=true,natbib=true,style=authortitle,
citestyle=authoryear,sorting=nyt,
autocite=footnote,
%autocite=inline,
%citestyle=authoryear-ibid, %% Eventually will use this
backend=biber]{biblatex}
\listfiles
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{Smith96,
author = {Amith, Adam},
year = {1996},
title = {Economy},
publisher = {My company}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
This is a textcite \textcite[96]{Smith96} and this is the textcite in a footnote\footnote{\textcite[128]{Smith96}}.
This is a footcite \footcite[300-320]{Smith96} and this an autocite \autocite[98-34]{Smith96}
\printbibliography
\end{document}
The result with standard autocite=inline:

The result with autocite=footnote:

I would like footnote and autocite in the same format as textcite: Author (year, pages)
Thank you!

\documentclass{...}and ending with\end{document}. Probably, though, you can just specify the relevant option when loadingbiblatex. Without seeing an example, though, it is difficult to say. – cfr Apr 18 '14 at 01:02