awacke1 commited on
Commit
c8ee83b
·
verified ·
1 Parent(s): 5d74c00

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +103 -1
index.html CHANGED
@@ -219,6 +219,40 @@ Tiling heuristics and evaluation metrics for treemaps with a target node aspect
219
  background-color: #bdc3c7;
220
  }
221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
  </style>
223
  </head>
224
  <body>
@@ -247,6 +281,8 @@ Tiling heuristics and evaluation metrics for treemaps with a target node aspect
247
  </div>
248
  </div>
249
 
 
 
250
 
251
  <!-- D3.js Library for data visualization -->
252
  <script src="https://d3js.org/d3.v7.min.js"></script>
@@ -259,10 +295,76 @@ Tiling heuristics and evaluation metrics for treemaps with a target node aspect
259
  const tooltip = document.getElementById('tooltip');
260
  const contextMenu = document.getElementById('context-menu');
261
  const deleteModal = document.getElementById('delete-modal');
 
262
 
263
  let currentFileTree = null; // To store the current data structure for modification
264
  let nodeToDelete = null; // To store the node targeted for deletion
265
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  /**
267
  * Processes the selected files and initiates the treemap rendering.
268
  */
@@ -466,4 +568,4 @@ Tiling heuristics and evaluation metrics for treemaps with a target node aspect
466
  </script>
467
 
468
  </body>
469
- </html>
 
219
  background-color: #bdc3c7;
220
  }
221
 
222
+ /* References Section Styling */
223
+ #references {
224
+ max-width: 800px;
225
+ margin: 2rem auto;
226
+ text-align: left;
227
+ }
228
+
229
+ #references h2 {
230
+ color: #2c3e50;
231
+ font-size: 1.5rem;
232
+ margin-bottom: 1rem;
233
+ }
234
+
235
+ #references ul {
236
+ list-style-type: none;
237
+ padding: 0;
238
+ }
239
+
240
+ #references li {
241
+ margin-bottom: 1rem;
242
+ color: #555;
243
+ }
244
+
245
+ #references a {
246
+ color: #3498db;
247
+ text-decoration: none;
248
+ transition: color 0.2s ease;
249
+ }
250
+
251
+ #references a:hover {
252
+ color: #2980b9;
253
+ text-decoration: underline;
254
+ }
255
+
256
  </style>
257
  </head>
258
  <body>
 
281
  </div>
282
  </div>
283
 
284
+ <!-- References Section -->
285
+ <div id="references"></div>
286
 
287
  <!-- D3.js Library for data visualization -->
288
  <script src="https://d3js.org/d3.v7.min.js"></script>
 
295
  const tooltip = document.getElementById('tooltip');
296
  const contextMenu = document.getElementById('context-menu');
297
  const deleteModal = document.getElementById('delete-modal');
298
+ const referencesContainer = document.getElementById('references');
299
 
300
  let currentFileTree = null; // To store the current data structure for modification
301
  let nodeToDelete = null; // To store the node targeted for deletion
302
 
303
+ // References data
304
+ const references = [
305
+ {
306
+ title: "A heuristic extending the Squarified treemapping algorithm",
307
+ links: [
308
+ { text: "Abstract", url: "https://arxiv.org/abs/1609.00754" },
309
+ { text: "PDF", url: "https://arxiv.org/pdf/1609.00754" }
310
+ ]
311
+ },
312
+ {
313
+ title: "Squarified Treemaps",
314
+ links: [{ text: "PDF", url: "https://vanwijk.win.tue.nl/stm.pdf" }]
315
+ },
316
+ {
317
+ title: "Treemaps with Bounded Aspect Ratio",
318
+ links: [
319
+ { text: "Abstract", url: "https://arxiv.org/abs/1012.1749" },
320
+ { text: "PDF", url: "https://arxiv.org/pdf/1012.1749" }
321
+ ]
322
+ },
323
+ {
324
+ title: "Interactive Visualisation of Hierarchical Quantitative Data: an Evaluation",
325
+ links: [
326
+ { text: "Abstract", url: "https://www.arxiv.org/abs/1908.01277v1" },
327
+ { text: "PDF", url: "https://www.arxiv.org/pdf/1908.01277v1" }
328
+ ]
329
+ },
330
+ {
331
+ title: "Treemapping - Wikipedia",
332
+ links: [{ text: "Article", url: "https://en.wikipedia.org/wiki/Treemapping" }]
333
+ },
334
+ {
335
+ title: "A Novel Algorithm for Real-time Procedural Generation of Building Floor Plans",
336
+ links: [{ text: "HTML", url: "https://ar5iv.labs.arxiv.org/html/1211.5842" }]
337
+ },
338
+ {
339
+ title: "Fat Polygonal Partitions with Applications to Visualization and Embeddings",
340
+ links: [
341
+ { text: "Abstract", url: "https://arxiv.org/abs/1009.1866" },
342
+ { text: "PDF", url: "https://arxiv.org/pdf/1009.1866" }
343
+ ]
344
+ },
345
+ {
346
+ title: "Tiling heuristics and evaluation metrics for treemaps with a target node aspect ratio",
347
+ links: [{ text: "PDF", url: "https://www.diva-portal.org/smash/get/diva2:1129639/FULLTEXT01.pdf" }]
348
+ }
349
+ ];
350
+
351
+ // Render references
352
+ function renderReferences() {
353
+ referencesContainer.innerHTML = `
354
+ <h2>References</h2>
355
+ <ul>
356
+ ${references.map(ref => `
357
+ <li>
358
+ ${ref.title}:
359
+ ${ref.links.map(link => `<a href="${link.url}" target="_blank">${link.text}</a>`).join(' | ')}
360
+ </li>
361
+ `).join('')}
362
+ </ul>
363
+ `;
364
+ }
365
+
366
+ renderReferences();
367
+
368
  /**
369
  * Processes the selected files and initiates the treemap rendering.
370
  */
 
568
  </script>
569
 
570
  </body>
571
+ </html>