I'm writing thesis using tuned report class, biblatex and biber for bibliography.
bib file entries are generated by ScienceDirect export citation feature and style is czech-iso.
For referring to some figure, graph or table I'd like to get this layout:
Image
Caption
From: 1st Author et.al.: Title [#].
and in bibliography
[#] 1st AUTHOR, 2nd AUTHOR, 3rd AUTHOR, Title,...
For that purpose I use
\documentclass[a4paper,11pt%,draft%
]{report}
\usepackage[french,english,czech]{babel}
\usepackage[utf8]{inputenc}
\usepackage{url}
\usepackage{float}
\usepackage{lipsum}
\usepackage[
backend=biber,
babel=other,
sortlocale=cs_CZ,
style=iso-numeric,
autocite=superscript
]{biblatex}
\newcommand\foo[1]{\footnotesize{From: \Citeauthor{#1}: \citetitle{#1} \cite{#1}}}
\addbibresource{citace.bib}
\begin{document}
\lipsum[1]
\begin{figure}[H]
image
\caption{Text}
\foo{Yoshizawa:1993}
\end{figure}
\lipsum[2]
\printbibliography
\end{document}
but it returns:
1st AUTHOR, 2nd AUTHOR,... : "Title" [#]
How can I shorten the \citeauthor output without any effect to otput of \printbibliography?
maxcitenamesandmaxbibnames? – Marco Daniel Dec 9 '11 at 9:21