I am looking for a way to highlight references to my own previous publications using BibLaTeX (alphabetic cite and bibliography style), for example by using double brackets as citation marks in the text and in the bibliography. It should look the following way:
This is a paper published by myself [[MS15]] and that is a paper published
by someone else [AB14].
References:
[[MS15]] Moser, S., ...., Title, Year.
[AB14] Author X., ...., Title, Year.
I've a working solution using BibTex. Therefore I copied "alphadin.bst" to my LaTeX project folder and added some additional entries for custom bibtex types which are used for my own publications:
FUNCTION {output.mybibitem}
{ newline$
"\bibitem[{[" write$
label write$%
"]}]{" write$
cite$ write$
"}" write$
newline$
""
before.all 'output.state :=
}
FUNCTION {output.bibitem}
{ newline$
"\bibitem[" write$
label write$%
"]{" write$
cite$ write$
"}" write$
newline$
""
before.all 'output.state :=
}
[...]
FUNCTION {article}
{ output.bibitem
article.common
}
FUNCTION {myarticle}
{ output.mybibitem
article.common
}
This allows me to add custom entries to the Bibtex file (e.g. "myarticle"). They are printed with double brackets both in the cite mark and in the bibliography.
For various reasons I'd like to switch to BibLaTeX and Biber as the backend. Therefore my question: Is there a similar solution or even a much nicer way to accomplish this? I don't necessarily need extra types for "my" publications in the bibliography file. It would be also possible to use, for example, keywords and using the available standard types.
I don't like to have the local, modified copy of "alphadin.bst" of the current BibTex solution at all. So if I could "patch" BibLaTeX's behavior without having a completely redundant style file, it would be great.
Thank you very much in advance for any helpful solutions!
Kind regards,
Steffen

.bibentries suitable for testing and information about the style you'd be using etc. would be helpful. If you search, there have been a few questions along these lines. (Not doing exactly this but similarly tweaking self-authored sources etc.) – cfr Sep 09 '15 at 02:09biblatexoffers very good facilities for that now. So if you have akeywordthat you add to articles (co-)written by you that should be a walk in the park. – moewe Sep 09 '15 at 05:50