I use the following coding for biblatex with verbose-ibid, sorry I still do not know how to include a file:
\usepackage[style=verbose-ibid,firstinits=true,sorting=nty,sortcites=true,useprefix=false,maxnames=6,backend=biber]{biblatex} % originally the style was verbose-ibid
\renewcommand*{\mkbibnamelast}[1]{\textsc{#1}}
\renewcommand*{\newunitpunct}{\addcomma\space}%put commas instead of periods after some elements of the title
%\usepackage{biblatex}%remove �in� in journal articles
\renewbibmacro{in:}{%
\ifentrytype{article}{}{%
\printtext{\bibstring{in}\intitlepunct}}}
\renewcommand*{\labelnamepunct}{\addcomma\space}
\renewcommand*{\nametitledelim}{\addcomma\space}
\renewcommand*{\bibfont}{\small}
\renewbibmacro*{publisher+location+date}{%
\printtext[parens]{% ADDED
\printlist{location}%
\iflistundef{publisher}
{\setunit*{\addcomma\space}}
{\setunit*{\addcolon\space}}%
\printlist{publisher}%
\setunit*{\addcomma\space}%
\usebibmacro{date}%
}\nopunct% ADDED
\newunit}
%for citing short forms
\renewbibmacro*{cite:short}{%
\printnames{labelname}%
\setunit*{\nametitledelim}%
% If article:
\ifentrytype{article}{%
\usebibmacro{journal}%
\setunit{\addspace}%
\printfield{volume}}{%
% If incollection:
\ifentrytype{incollection}{%
\usebibmacro{in:}%
\printtext[booktitle]{\printfield[titlecase]{booktitle}}}{%
% Else:
\printtext[bibhyperlink]{\printfield[citetitle]{labeltitle}}}}}
\printshorthands
\printbibliography
I try to use shorthands for some of the books usually quoted in a shorthand form. This is the example for it:
@book{Eide.1994,
author = {Eide, T. and Hagg, T. and {Holton Pierce} and R. and Török, L.},
year = {1994},
title = {Fontes Historiae Nubiorum},
number = {I},
publisher = {University of Bergen, Department of Classics},
location = {Bergen},
shorthand = {FHN}
My problems are:
This title is repeated in the shorthand and in the bibliography. I wanted only in the shorthand.
I would like not to waste many pages. I would like something like:
Bibliography title at the top of the page. Then shorthands immediately after the title and after shorthands are finished, the normal bibliography.


