mirror of
https://github.com/soconnor0919/personal-website.git
synced 2025-12-12 23:04:43 -05:00
Fix analytics naming and BibTeX syntax errors
The changes fix a missing comma in the BibTeX file and updates analytics
event names to better reflect user interactions ("View" -> "Click")
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
address = {Eindhoven, The Netherlands},
|
||||
abstract = {Human-robot interaction (HRI) research plays a pivotal role in shaping how robots communicate and collaborate with humans. However, conducting HRI studies can be challenging, particularly those employing the Wizard-of-Oz (WoZ) technique. WoZ user studies can have technical and methodological complexities that may render the results irreproducible. We propose to address these challenges with HRIStudio, a modular web-based platform designed to streamline the design, the execution, and the analysis of WoZ experiments. HRIStudio offers an intuitive interface for experiment creation, real-time control and monitoring during experimental runs, and comprehensive data logging and playback tools for analysis and reproducibility. By lowering technical barriers, promoting collaboration, and offering methodological guidelines, HRIStudio aims to make human-centered robotics research easier and empower researchers to develop scientifically rigorous user studies.},
|
||||
url = {https://soconnor.dev/api/publications/ROMAN25_0574_FI.pdf},
|
||||
paperUrl = {/api/publications/ROMAN25_0574_FI.pdf}
|
||||
paperUrl = {/api/publications/ROMAN25_0574_FI.pdf},
|
||||
slidesUrl = {/api/publications/ROMAN25_0574_SLIDES.pdf}
|
||||
}
|
||||
|
||||
|
||||
@@ -69,7 +69,7 @@ export function trackPdfView(
|
||||
pdfType: "paper" | "poster";
|
||||
},
|
||||
) {
|
||||
track("Publication PDF View", {
|
||||
track("Publication PDF Click", {
|
||||
title: data.publicationTitle,
|
||||
type: data.publicationType,
|
||||
year: data.publicationYear.toString(),
|
||||
@@ -96,12 +96,12 @@ export function trackDoiClick(
|
||||
}
|
||||
|
||||
/**
|
||||
* Track slides views specifically
|
||||
* Track slides clicks - user intent/engagement
|
||||
*/
|
||||
export function trackSlidesView(
|
||||
data: Omit<PublicationTrackingData, "linkType">,
|
||||
) {
|
||||
track("Publication Slides View", {
|
||||
track("Publication Slides Click", {
|
||||
title: data.publicationTitle,
|
||||
type: data.publicationType,
|
||||
year: data.publicationYear.toString(),
|
||||
|
||||
Reference in New Issue
Block a user