debjitpaul commited on
Commit
f001c45
·
1 Parent(s): 939af28

Updated citation font with Markdown for app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -15
app.py CHANGED
@@ -435,21 +435,20 @@ def build_app() -> gr.Blocks:
435
  # -------------------------------------------------------------
436
  with gr.Tab("📜 Citation"):
437
  gr.Markdown("### Please cite:")
438
- gr.Code(
439
- value=(
440
- "@inproceedings{deepsynth2026,\n"
441
- " title = {A Benchmark for Deep Information Synthesis},\n"
442
- " author = {Paul, Debjit and Murphy, Daniel and Gritta, Milan and Cardenas, Ronald\n"
443
- " and Prokhorov, Victor and Bolliger, Lena Sophia and Toker, Aysim\n"
444
- " and Miles, Roy and Oncescu, Andreea-Maria and Sivakumar, Jasivan Alex\n"
445
- " and Borchert, Philipp and Elezi, Ismail and Zhang, Meiru\n"
446
- " and Lee, Ka Yiu and Zhang, Guchun and Wang, Jun and Lampouras, Gerasimos},\n"
447
- " booktitle = {International Conference on Learning Representations (ICLR)},\n"
448
- " year = {2026},\n"
449
- " url = {" + PAPER_URL + "}\n"
450
- "}"
451
- ),
452
- language="latex",
453
  )
454
 
455
  return app
 
435
  # -------------------------------------------------------------
436
  with gr.Tab("📜 Citation"):
437
  gr.Markdown("### Please cite:")
438
+ gr.Markdown(
439
+ "```bibtex\n"
440
+ "@inproceedings{deepsynth2026,\n"
441
+ " title = {A Benchmark for Deep Information Synthesis},\n"
442
+ " author = {Paul, Debjit and Murphy, Daniel and Gritta, Milan and Cardenas, Ronald\n"
443
+ " and Prokhorov, Victor and Bolliger, Lena Sophia and Toker, Aysim\n"
444
+ " and Miles, Roy and Oncescu, Andreea-Maria and Sivakumar, Jasivan Alex\n"
445
+ " and Borchert, Philipp and Elezi, Ismail and Zhang, Meiru\n"
446
+ " and Lee, Ka Yiu and Zhang, Guchun and Wang, Jun and Lampouras, Gerasimos},\n"
447
+ " booktitle = {International Conference on Learning Representations (ICLR)},\n"
448
+ " year = {2026},\n"
449
+ " url = {" + PAPER_URL + "}\n"
450
+ "}\n"
451
+ "```"
 
452
  )
453
 
454
  return app