diff --git a/cryptide_project/src/Script/LatexScript.tsx b/cryptide_project/src/Script/LatexScript.tsx index cca2c12..da13e59 100644 --- a/cryptide_project/src/Script/LatexScript.tsx +++ b/cryptide_project/src/Script/LatexScript.tsx @@ -50,7 +50,7 @@ function generateLatexCode(personsNet : PersonNetwork, choosenPerson : Person, c const x = (position.x / 9).toFixed(2); // Arrondir à 2 décimales const y = (position.y / 9).toFixed(2); - latexCode += ` \\node[draw, circle split, align=center] (${person.getId()}) at (${x},${y}) { ${person.getName()} \\\\ ${person.getAge()} \\nodepart{lower}`; + latexCode += ` \\node[draw, circle split, align=center] (${person.getId()}) at (${x},${y}) { ${person.getName()} ${person.getAge()} \\nodepart{lower}`; latexCode += `${ColorToString(person.getColor(), "fr")} \\\\` person.getSports().forEach((sport) => { latexCode += ` \\${SportToString(sport, 'fr')}{}` }); latexCode += "};\n"; diff --git a/cryptide_project/src/server/db/socialgraph.db b/cryptide_project/src/server/db/socialgraph.db index fda2b9c..cfc4f11 100644 Binary files a/cryptide_project/src/server/db/socialgraph.db and b/cryptide_project/src/server/db/socialgraph.db differ