<name form="short"> <name-part name="family" font-variant="small-caps"/> </name> Small caps not applied to family name. https://github.com/pkp/citeproc-php/blob/2ef5a62e15093ea44cc02762e4fee6dd53c4624a/src/Rendering/Name/Name.php#L577 ``` // replace $text = $data->family; // by list($family) = $this->renderNameParts($data); $text = $family; ```
Small caps not applied to family name.
citeproc-php/src/Rendering/Name/Name.php
Line 577 in 2ef5a62