[mlz] suppressing output in bibliography
How can I suppress a type of items (legislation specifically) from showing up in bibliography, as MLZ does to "classic" automatically?
I've been using the following code in twlaw:
but never tested it. Realized just now that it wouldn't work. MLZ gives me the following error message if a statute is cited:
I've been using the following code in twlaw:
<layout locale="zh" suffix="。">
<choose>
<if type="legislation"/>
<else-if match="any" type="treaty" variable="jurisdiction">
<text macro="jurisdiction-filter-zh"/>
</else-if>
<else>
<text macro="tw-secondary-first"/>
</else>
</choose>
</layout>
but never tested it. Realized just now that it wouldn't work. MLZ gives me the following error message if a statute is cited:
[CSL STYLE ERROR: reference with no printed form.]
-
fbennettYes, there isn't a way to do this currently. You need to remove unwanted items at the final stage.
-
mlwangAh, so, understood. Thanks.