I encouter the following problem to which I simply can't find a solution.
I'm working on a homework, and I want to cite the slides the professor gave us.
So, if I type \cite[20]{presentationOne} I want [1, F. 20] as result and not [1, S. 20].
(F. for Folie, and S. for Seite, I'm from Germany).
I'm citing books as well, therefore simply changing it for all citations isn't a solution.
I use biblatex with biber backend.
Hope anyone got a clean solution for this. Otherwise I would have to mention in the foreword what I mean with those citations.
\cite[F.~20]{presentationOne}when citing the presentation. Do you want an automatic solution for certain entries? – lockstep Mar 8 at 13:39presentationyou can setup the formation of the optional key by\DeclareFieldFormat[presentation]{postnote}{F~#1}or some other modification related to the driver. – Marco Daniel Mar 8 at 14:34