Skip to content

Commit 5e5c36f

Browse files
authored
Fix citation author name issue (microsoft#19597)
Use `name` rather than `given-names` to set author name. ### Motivation and Context The old CITATION.cff uses `given-names` to set author names, which won't be rendered properly with some bibtex style of LaTeX: <img width="680" alt="image" src="https://github.com/microsoft/onnxruntime/assets/22856433/c509400e-5b16-4400-8950-550b05186369"> The problem is that **the `"ONNX Runtime developers"` is regarded as a human name**. How to fix: by using `name` to set author name, the generated Bibtex entry will use `{}` to enclose the `"ONNX Runtime developers"`. Then it is displayed literally: <img width="742" alt="image" src="https://github.com/microsoft/onnxruntime/assets/22856433/94083c9f-0daa-4c51-92e1-c966b88d09d2">
1 parent 76a2a48 commit 5e5c36f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

CITATION.cff

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ title: ONNX Runtime
33
message: "Please use this information to cite ONNX Runtime in
44
research or other publications."
55
authors:
6-
- affiliation: Microsoft Corporation
7-
given-names: ONNX Runtime developers
6+
- name: ONNX Runtime developers
87
date-released: 2018-11-29
98
url: "https://onnxruntime.ai"
109
repository-code: "https://github.com/microsoft/onnxruntime"

0 commit comments

Comments
 (0)