/* Hide all the years with no publications by the author */
div.year:not(.Collard) {
    display : none;
}

/* Hide all the publications not by the author in years in which they have publications */
div.year.Collard p[class]:not(.Collard) {
    display : none;
}

