I have one entry in my bibfile which I made of type CUSTOMA (it could be any of customa to customf). I did this so that it does not show in the reference list created with \printbibliography[nottype=customa].
The whole bibliography is generated from:
\RequirePackage[
backend=biber,
style=apa,
]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
Later, I want to display this only entry with
printbibliography[type=customa]
It is always to be formatted as an article. Hence, my question: is it possible to define the style of CUSTOMA to be identical to the style of ARTICLE in a reference list?
I thought that
\DeclareBibliographyAlias{customA}{article}
would do the trick but the journal's name, the pages and volume do not show up...
@article, it probably is and@article. You can filter certain works using other methods than type filtering: keywords, categories etc. So you might want to rethink your approach here. – moewe Mar 09 '16 at 06:26customaentries are own publications which are printed in a sepatate list. – Johannes_B Mar 09 '16 at 07:26