grg commited on
Commit
891eeb1
1 Parent(s): b845998

Adding bibtex

Browse files
Files changed (1) hide show
  1. templates/index.html +27 -0
templates/index.html CHANGED
@@ -59,6 +59,21 @@
59
  table th:last-child {
60
  border-top-right-radius: 10px;
61
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  </style>
63
  </head>
64
  <body>
@@ -68,6 +83,17 @@
68
  <!-- Render the table HTML here -->
69
  {{ table_html|safe }}
70
  </div>
 
 
 
 
 
 
 
 
 
 
 
71
  </div>
72
 
73
  <!-- Include jQuery -->
@@ -96,6 +122,7 @@
96
  }
97
  });
98
  });
 
99
  </script>
100
  </body>
101
  </html>
 
59
  table th:last-child {
60
  border-top-right-radius: 10px;
61
  }
62
+ .citation-section {
63
+ margin-top: 5px;
64
+ text-align: center;
65
+ }
66
+ .citation-box {
67
+ background-color: #f8f9fa;
68
+ border: 1px solid #dee2e6;
69
+ border-radius: 8px;
70
+ padding: 10px;
71
+ margin-top: 5px;
72
+ font-size: 15px;
73
+ text-align: left;
74
+ font-family: 'Courier New', Courier, monospace;
75
+ white-space: pre;
76
+ }
77
  </style>
78
  </head>
79
  <body>
 
83
  <!-- Render the table HTML here -->
84
  {{ table_html|safe }}
85
  </div>
86
+ <div class="citation-section">
87
+ <p>If you found this useful, please cite our paper:</p>
88
+ <div class="citation-box" id="citation-text">
89
+ @article{kovavc2024stick,
90
+ title={Stick to your Role! Stability of Personal Values Expressed in Large Language Models},
91
+ author={Kova{\v{c}}, Grgur and Portelas, R{\'e}my and Sawayama, Masataka and Dominey, Peter Ford and Oudeyer, Pierre-Yves},
92
+ journal={arXiv preprint arXiv:2402.14846},
93
+ year={2024}
94
+ }
95
+ </div>
96
+ </div>
97
  </div>
98
 
99
  <!-- Include jQuery -->
 
122
  }
123
  });
124
  });
125
+
126
  </script>
127
  </body>
128
  </html>