{"id":48,"date":"2024-02-04T08:50:21","date_gmt":"2024-02-04T08:50:21","guid":{"rendered":"https:\/\/gaussresearchgroup.uma.es\/?page_id=48"},"modified":"2024-05-03T09:44:07","modified_gmt":"2024-05-03T09:44:07","slug":"publications","status":"publish","type":"page","link":"https:\/\/gaussresearchgroup.uma.es\/index.php\/publications\/","title":{"rendered":"Publications"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">Publications in the last ten years<\/h1>\n\n\n\n<html>\n<head>\n<title>JabRef references<\/title>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=UTF-8\">\n<script type=\"text\/javascript\">\n<!--\n\/\/ QuickSearch script for JabRef HTML export \n\/\/ Version: 3.0\n\/\/\n\/\/ Copyright (c) 2006-2011, Mark Schenk\n\/\/\n\/\/ This software is distributed under a Creative Commons Attribution 3.0 License\n\/\/ http:\/\/creativecommons.org\/licenses\/by\/3.0\/\n\/\/\n\/\/ Features:\n\/\/ - intuitive find-as-you-type searching\n\/\/    ~ case insensitive\n\/\/    ~ ignore diacritics (optional)\n\/\/\n\/\/ - search with\/without Regular Expressions\n\/\/ - match BibTeX key\n\/\/\n\n\/\/ Search settings\nvar searchAbstract = true;\t\/\/ search in abstract\nvar searchComment = true;\t\/\/ search in comment\n\nvar noSquiggles = true; \t\/\/ ignore diacritics when searching\nvar searchRegExp = false; \t\/\/ enable RegExp searches\n\n\nif (window.addEventListener) {\n\twindow.addEventListener(\"load\",initSearch,false); }\nelse if (window.attachEvent) {\n\twindow.attachEvent(\"onload\", initSearch); }\n\nfunction initSearch() {\n\t\/\/ check for quick search table and searchfield\n\tif (!document.getElementById('qs_table')||!document.getElementById('quicksearch')) { return; }\n\n\t\/\/ load all the rows and sort into arrays\n\tloadTableData();\n\t\n\t\/\/find the query field\n\tqsfield = document.getElementById('qs_field');\n\n\t\/\/ previous search term; used for speed optimisation\n\tprevSearch = '';\n\n\t\/\/find statistics location\n\tstats = document.getElementById('stat');\n\tsetStatistics(-1);\n\t\n\t\/\/ set up preferences\n\tinitPreferences();\n\n\t\/\/ shows the searchfield\n\tdocument.getElementById('quicksearch').style.display = 'block';\n\tdocument.getElementById('qs_field').onkeyup = quickSearch;\n}\n\nfunction loadTableData() {\n\t\/\/ find table and appropriate rows\n\tsearchTable = document.getElementById('qs_table');\n\tvar allRows = searchTable.getElementsByTagName('tbody')[0].getElementsByTagName('tr');\n\n\t\/\/ split all rows into entryRows and infoRows (e.g. abstract, comment, bibtex)\n\tentryRows = new Array(); infoRows = new Array(); absRows = new Array(); revRows = new Array();\n\n\t\/\/ get data from each row\n\tentryRowsData = new Array(); absRowsData = new Array(); revRowsData = new Array(); \n\t\n\tBibTeXKeys = new Array();\n\t\n\tfor (var i=0, k=0, j=0; i<allRows.length;i++) {\n\t\tif (allRows[i].className.match(\/entry\/)) {\n\t\t\tentryRows[j] = allRows[i];\n\t\t\tentryRowsData[j] = stripDiacritics(getTextContent(allRows[i]));\n\t\t\tallRows[i].id ? BibTeXKeys[j] = allRows[i].id : allRows[i].id = 'autokey_'+j;\n\t\t\tj ++;\n\t\t} else {\n\t\t\tinfoRows[k++] = allRows[i];\n\t\t\t\/\/ check for abstract\/comment\n\t\t\tif (allRows[i].className.match(\/abstract\/)) {\n\t\t\t\tabsRows.push(allRows[i]);\n\t\t\t\tabsRowsData[j-1] = stripDiacritics(getTextContent(allRows[i]));\n\t\t\t} else if (allRows[i].className.match(\/comment\/)) {\n\t\t\t\trevRows.push(allRows[i]);\n\t\t\t\trevRowsData[j-1] = stripDiacritics(getTextContent(allRows[i]));\n\t\t\t}\n\t\t}\n\t}\n\t\/\/number of entries and rows\n\tnumEntries = entryRows.length;\n\tnumInfo = infoRows.length;\n\tnumAbs = absRows.length;\n\tnumRev = revRows.length;\n}\n\nfunction quickSearch(){\n\t\n\ttInput = qsfield;\n\n\tif (tInput.value.length == 0) {\n\t\tshowAll();\n\t\tsetStatistics(-1);\n\t\tqsfield.className = '';\n\t\treturn;\n\t} else {\n\t\tt = stripDiacritics(tInput.value);\n\n\t\tif(!searchRegExp) { t = escapeRegExp(t); }\n\t\t\t\n\t\t\/\/ only search for valid RegExp\n\t\ttry {\n\t\t\ttextRegExp = new RegExp(t,\"i\");\n\t\t\tcloseAllInfo();\n\t\t\tqsfield.className = '';\n\t\t}\n\t\t\tcatch(err) {\n\t\t\tprevSearch = tInput.value;\n\t\t\tqsfield.className = 'invalidsearch';\n\t\t\treturn;\n\t\t}\n\t}\n\t\n\t\/\/ count number of hits\n\tvar hits = 0;\n\n\t\/\/ start looping through all entry rows\n\tfor (var i = 0; cRow = entryRows[i]; i++){\n\n\t\t\/\/ only show search the cells if it isn't already hidden OR if the search term is getting shorter, then search all\n\t\tif(cRow.className.indexOf('noshow')==-1 || tInput.value.length <= prevSearch.length){\n\t\t\tvar found = false; \n\n\t\t\tif (entryRowsData[i].search(textRegExp) != -1 || BibTeXKeys[i].search(textRegExp) != -1){ \n\t\t\t\tfound = true;\n\t\t\t} else {\n\t\t\t\tif(searchAbstract && absRowsData[i]!=undefined) {\n\t\t\t\t\tif (absRowsData[i].search(textRegExp) != -1){ found=true; } \n\t\t\t\t}\n\t\t\t\tif(searchComment && revRowsData[i]!=undefined) {\n\t\t\t\t\tif (revRowsData[i].search(textRegExp) != -1){ found=true; } \n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tif (found){\n\t\t\t\tcRow.className = 'entry show';\n\t\t\t\thits++;\n\t\t\t} else {\n\t\t\t\tcRow.className = 'entry noshow';\n\t\t\t}\n\t\t}\n\t}\n\n\t\/\/ update statistics\n\tsetStatistics(hits)\n\t\n\t\/\/ set previous search value\n\tprevSearch = tInput.value;\n}\n\n\n\/\/ Strip Diacritics from text\n\/\/ http:\/\/stackoverflow.com\/questions\/990904\/javascript-remove-accents-in-strings\n\n\/\/ String containing replacement characters for stripping accents \nvar stripstring = \n    'AAAAAAACEEEEIIII'+\n    'DNOOOOO.OUUUUY..'+\n    'aaaaaaaceeeeiiii'+\n    'dnooooo.ouuuuy.y'+\n    'AaAaAaCcCcCcCcDd'+\n    'DdEeEeEeEeEeGgGg'+\n    'GgGgHhHhIiIiIiIi'+\n    'IiIiJjKkkLlLlLlL'+\n    'lJlNnNnNnnNnOoOo'+\n    'OoOoRrRrRrSsSsSs'+\n    'SsTtTtTtUuUuUuUu'+\n    'UuUuWwYyYZzZzZz.';\n\nfunction stripDiacritics(str){\n\n    if(noSquiggles==false){\n        return str;\n    }\n\n    var answer='';\n    for(var i=0;i<str.length;i++){\n        var ch=str[i];\n        var chindex=ch.charCodeAt(0)-192;   \/\/ Index of character code in the strip string\n        if(chindex>=0 && chindex<stripstring.length){\n            \/\/ Character is within our table, so we can strip the accent...\n            var outch=stripstring.charAt(chindex);\n            \/\/ ...unless it was shown as a '.'\n            if(outch!='.')ch=outch;\n        }\n        answer+=ch;\n    }\n    return answer;\n}\n\n\/\/ http:\/\/stackoverflow.com\/questions\/3446170\/escape-string-for-use-in-javascript-regex\n\/\/ NOTE: must escape every \\ in the export code because of the JabRef Export...\nfunction escapeRegExp(str) {\n  return str.replace(\/[-\\[\\]\\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]\/g, \"\\\\$&\");\n}\n\nfunction toggleInfo(articleid,info) {\n\n\tvar entry = document.getElementById(articleid);\n\tvar abs = document.getElementById('abs_'+articleid);\n\tvar rev = document.getElementById('rev_'+articleid);\n\tvar bib = document.getElementById('bib_'+articleid);\n\t\n\tif (abs && info == 'abstract') {\n\t\tabs.className.indexOf('noshow') == -1?abs.className = 'abstract noshow':abs.className = 'abstract show';\n\t} else if (rev && info == 'comment') {\n\t\trev.className.indexOf('noshow') == -1?rev.className = 'comment noshow':rev.className = 'comment show';\n\t} else if (bib && info == 'bibtex') {\n\t\tbib.className.indexOf('noshow') == -1?bib.className = 'bibtex noshow':bib.className = 'bibtex show';\n\t} else { \n\t\treturn;\n\t}\n\n\t\/\/ check if one or the other is available\n\tvar revshow; var absshow; var bibshow;\n\t(abs && abs.className.indexOf('noshow') == -1)? absshow = true: absshow = false;\n\t(rev && rev.className.indexOf('noshow') == -1)? revshow = true: revshow = false;\t\n\t(bib && bib.className.indexOf('noshow') == -1)? bibshow = true: bibshow = false;\n\t\n\t\/\/ highlight original entry\n\tif(entry) {\n\t\tif (revshow || absshow || bibshow) {\n\t\tentry.className = 'entry highlight show';\n\t\t} else {\n\t\tentry.className = 'entry show';\n\t\t}\n\t}\n\t\n\t\/\/ When there's a combination of abstract\/comment\/bibtex showing, need to add class for correct styling\n\tif(absshow) {\n\t\t(revshow||bibshow)?abs.className = 'abstract nextshow':abs.className = 'abstract';\n\t} \n\tif (revshow) {\n\t\tbibshow?rev.className = 'comment nextshow': rev.className = 'comment';\n\t}\t\n\t\n}\n\nfunction setStatistics (hits) {\n\tif(hits < 0) { hits=numEntries; }\n\tif(stats) { stats.firstChild.data = hits + '\/' + numEntries}\n}\n\nfunction getTextContent(node) {\n\t\/\/ Function written by Arve Bersvendsen\n\t\/\/ http:\/\/www.virtuelvis.com\n\t\n\tif (node.nodeType == 3) {\n\treturn node.nodeValue;\n\t} \/\/ text node\n\tif (node.nodeType == 1 && node.className != \"infolinks\") { \/\/ element node\n\tvar text = [];\n\tfor (var chld = node.firstChild;chld;chld=chld.nextSibling) {\n\t\ttext.push(getTextContent(chld));\n\t}\n\treturn text.join(\"\");\n\t} return \"\"; \/\/ some other node, won't contain text nodes.\n}\n\nfunction showAll(){\n\tcloseAllInfo();\n\tfor (var i = 0; i < numEntries; i++){ entryRows[i].className = 'entry show'; }\n}\n\nfunction closeAllInfo(){\n\tfor (var i=0; i < numInfo; i++){\n\t\tif (infoRows[i].className.indexOf('noshow') ==-1) {\n\t\t\tinfoRows[i].className = infoRows[i].className + ' noshow';\n\t\t}\n\t}\n}\n\nfunction clearQS() {\n\tqsfield.value = '';\n\tshowAll();\n}\n\nfunction redoQS(){\n\tshowAll();\n\tquickSearch(qsfield);\n}\n\nfunction updateSetting(obj){\n\tvar option = obj.id;\n\tvar checked = obj.value;\n\n\tswitch(option)\n\t {\n\t case \"opt_searchAbs\":\n\t   searchAbstract=!searchAbstract;\n\t   redoQS();\n\t   break;\n\t case \"opt_searchComment\":\n\t   searchComment=!searchComment;\n\t   redoQS();\n\t   break;\n\t case \"opt_useRegExp\":\n\t   searchRegExp=!searchRegExp;\n\t   redoQS();\n\t   break;\n\t case \"opt_noAccents\":\n\t   noSquiggles=!noSquiggles;\n\t   loadTableData();\n\t   redoQS();\n\t   break;\n\t }\n}\n\nfunction initPreferences(){\n\tif(searchAbstract){document.getElementById(\"opt_searchAbs\").checked = true;}\n\tif(searchComment){document.getElementById(\"opt_searchComment\").checked = true;}\n\tif(noSquiggles){document.getElementById(\"opt_noAccents\").checked = true;}\n\tif(searchRegExp){document.getElementById(\"opt_useRegExp\").checked = true;}\n\t\n\tif(numAbs==0) {document.getElementById(\"opt_searchAbs\").parentNode.style.display = 'none';}\n\tif(numRev==0) {document.getElementById(\"opt_searchComment\").parentNode.style.display = 'none';}\t\n}\n\nfunction toggleSettings(){\n\tvar togglebutton = document.getElementById('showsettings');\n\tvar settings = document.getElementById('settings');\n\t\n\tif(settings.className == \"hidden\"){\n\t\tsettings.className = \"show\";\n\t\ttogglebutton.innerText = \"close settings\";\n\t\ttogglebutton.textContent = \"close settings\";\n\t}else{\n\t\tsettings.className = \"hidden\";\n\t\ttogglebutton.innerText = \"settings...\";\t\t\n\t\ttogglebutton.textContent = \"settings...\";\n\t}\n}\n\n-->\n<\/script>\n<style type=\"text\/css\">\n\/\/ body { background-color: white; font-family: Arial, sans-serif; font-size: 13px; line-height: 1.2; padding: 1em; color: #2E2E2E; width: \/\/ 50em; margin: auto auto; }\n\n\/\/ form#quicksearch { width: auto; border-style: solid; border-color: gray; border-width: 1px 0px; padding: 0.7em 0.5em; display:none; \/\/ position:relative; }\n\/\/ span#searchstat {padding-left: 1em;}\n\ndiv#settings { margin-top:0.7em; \/* border-bottom: 1px transparent solid; background-color: #efefef; border: 1px grey solid; *\/ }\ndiv#settings ul {margin: 0; padding: 0; }\ndiv#settings li {margin: 0; padding: 0 1em 0 0; display: inline; list-style: none; }\ndiv#settings li + li { border-left: 2px #efefef solid; padding-left: 0.5em;}\ndiv#settings input { margin-bottom: 0px;}\n\ndiv#settings.hidden {display:none;}\n\n#showsettings { border: 1px grey solid; padding: 0 0.5em; float:right; line-height: 1.6em; text-align: right; }\n#showsettings:hover { cursor: pointer; }\n\n.invalidsearch { background-color: red; }\ninput[type=\"button\"] { background-color: #efefef; border: 1px #2E2E2E solid;}\n\ntable { border: 1px gray none; width: 100%; empty-cells: show; border-spacing: 0em 0.1em; margin: 1em 0em; }\nth, td { border: none; padding: 0.5em; vertical-align: top; text-align: justify; }\n\ntd a { color: navy; text-decoration: none; }\ntd a:hover  { text-decoration: underline; }\n\ntr.noshow { display: none;}\ntr.highlight td { background-color: #EFEFEF; border-top: 2px #2E2E2E solid; font-weight: bold; }\ntr.abstract td, tr.comment td, tr.bibtex td { background-color: #EFEFEF; text-align: justify; border-bottom: 2px #2E2E2E solid; }\ntr.nextshow td { border-bottom-style: none; }\n\ntr.bibtex pre { width: 100%; overflow: auto; white-space: pre-wrap;}\np.infolinks { margin: 0.3em 0em 0em 0em; padding: 0px; }\n\n@media print {\n\tp.infolinks, #qs_settings, #quicksearch, t.bibtex { display: none !important; }\n\ttr { page-break-inside: avoid; }\n}\n<\/style>\n<\/head>\n<body>\n\n\n<table id=\"qs_table\" border=\"1\">\n<tbody>\n\n<tr id=\"bib_\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{,\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CabreraCasado[2023]copyright2023\" class=\"entry\">\n\t<td>Cabrera Casado Y, Gil Canto C, Martin Barquero D and Martin Gonz&aacute;lez C ([2023] copyright 2023), <i>&#8220;Simultaneous orthogonalization of inner products over arbitrary fields&#8221;<\/i>, In Non-associative algebras and related topics.  Vol. 427, pp. 213-230. Springer, Cham.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CabreraCasado[2023]copyright2023','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/978-3-031-32707-0%5C_%7B1%7D%7B4%7D\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/978-3-031-32707-0_14\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CabreraCasado[2023]copyright2023\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@incollection{CabreraCasado[2023]copyright2023,\n  author = {Cabrera Casado, Yolanda and Gil Canto, Crist&oacute;bal and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido},\n  title = {Simultaneous orthogonalization of inner products over arbitrary fields},\n  booktitle = {Non-associative algebras and related topics},\n  publisher = {Springer, Cham},\n  year = {[2023] &circledc; 2023},\n  volume = {427},\n  pages = {213--230},\n  url = {https:\/\/doi.org\/10.1007\/978-3-031-32707-0_14},\n  doi = {10.1007\/978-3-031-32707-0\\_{1}{4}}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CabreraCasado2023\" class=\"entry\">\n\t<td>Cabrera Casado Y, Barquero DM and Gonz&aacute;lez CM (2023), <i>&#8220;Two-dimensional perfect evolution algebras over domains&#8221;<\/i>, J. Algebraic Combin..  Vol. 58(2), pp. 569-587.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CabreraCasado2023','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s10801-022-01196-1\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s10801-022-01196-1\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CabreraCasado2023\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CabreraCasado2023,\n  author = {Cabrera Casado, Yolanda and Barquero, Dolores Martin and Gonz&aacute;lez, C&aacute;ndido Martin},\n  title = {Two-dimensional perfect evolution algebras over domains},\n  journal = {J. Algebraic Combin.},\n  year = {2023},\n  volume = {58},\n  number = {2},\n  pages = {569--587},\n  url = {https:\/\/doi.org\/10.1007\/s10801-022-01196-1},\n  doi = {10.1007\/s10801-022-01196-1}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"GilCanto2023a\" class=\"entry\">\n\t<td>Gil Canto C, Martin Barquero D, Martin Gonz&aacute;lez C and Ruiz Campos I (2023), <i>&#8220;On isomorphism conditions for algebra functors with applications to Leavitt path algebras&#8221;<\/i>, Mediterr. J. Math..  Vol. 20(5), pp. Paper No. 273, 19.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('GilCanto2023a','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-023-02475-2\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-023-02475-2\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_GilCanto2023a\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{GilCanto2023a,\n  author = {Gil Canto, Crist&oacute;bal and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and Ruiz Campos, Iv&aacute;n},\n  title = {On isomorphism conditions for algebra functors with applications to Leavitt path algebras},\n  journal = {Mediterr. J. Math.},\n  year = {2023},\n  volume = {20},\n  number = {5},\n  pages = {Paper No. 273, 19},\n  url = {https:\/\/doi.org\/10.1007\/s00009-023-02475-2},\n  doi = {10.1007\/s00009-023-02475-2}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CabreraCasado2023a\" class=\"entry\">\n\t<td>Cabrera Casado Y, Martin Barquero D, Martin Gonz&aacute;lez C and Tocino A (2023), <i>&#8220;Tensor product of evolution algebras&#8221;<\/i>, Mediterr. J. Math..  Vol. 20(1), pp. Paper No. 43, 31.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CabreraCasado2023a','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-022-02246-5\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-022-02246-5\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CabreraCasado2023a\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CabreraCasado2023a,\n  author = {Cabrera Casado, Yolanda and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and Tocino, Alicia},\n  title = {Tensor product of evolution algebras},\n  journal = {Mediterr. J. Math.},\n  year = {2023},\n  volume = {20},\n  number = {1},\n  pages = {Paper No. 43, 31},\n  url = {https:\/\/doi.org\/10.1007\/s00009-022-02246-5},\n  doi = {10.1007\/s00009-022-02246-5}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"GilCanto2022\" class=\"entry\">\n\t<td>Gil Canto C, Martin Barquero D and Martin Gonz&aacute;lez C (2022), <i>&#8220;Invariant ideals in Leavitt path algebras&#8221;<\/i>, Publ. Mat..  Vol. 66(2), pp. 541-569.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('GilCanto2022','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.5565\/publmat6622203\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.5565\/publmat6622203\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_GilCanto2022\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{GilCanto2022,\n  author = {Gil Canto, Crist&oacute;bal and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido},\n  title = {Invariant ideals in Leavitt path algebras},\n  journal = {Publ. Mat.},\n  year = {2022},\n  volume = {66},\n  number = {2},\n  pages = {541--569},\n  url = {https:\/\/doi.org\/10.5565\/publmat6622203},\n  doi = {10.5565\/publmat6622203}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"MartinBarquero2021\" class=\"entry\">\n\t<td>Martin Barquero D, Martin Gonz&aacute;lez C, S&aacute;nchez-Ortega J and Vandeyar M (2021), <i>&#8220;Ternary mappings of triangular algebras&#8221;<\/i>, Aequationes Math..  Vol. 95(5), pp. 841-865.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('MartinBarquero2021','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00010-021-00797-8\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00010-021-00797-8\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_MartinBarquero2021\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{MartinBarquero2021,\n  author = {Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and S&aacute;nchez-Ortega, Juana and Vandeyar, Morgan},\n  title = {Ternary mappings of triangular algebras},\n  journal = {Aequationes Math.},\n  year = {2021},\n  volume = {95},\n  number = {5},\n  pages = {841--865},\n  url = {https:\/\/doi.org\/10.1007\/s00010-021-00797-8},\n  doi = {10.1007\/s00010-021-00797-8}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CardosoGoncalves2021\" class=\"entry\">\n\t<td>Cardoso Gon&ccedil;alves MI, Gon&ccedil;alves D, Martin Barquero D, Gonz&aacute;lez CM and Molina MS (2021), <i>&#8220;Squares and associative representations of two-dimensional evolution algebras&#8221;<\/i>, J. Algebra Appl..  Vol. 20(6), pp. Paper No. 2150090, 38.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CardosoGoncalves2021','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1142\/S0219498821500900\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1142\/S0219498821500900\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CardosoGoncalves2021\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CardosoGoncalves2021,\n  author = {Cardoso Gon&ccedil;alves, Maria Inez and Gon&ccedil;alves, Daniel and Martin Barquero, Dolores and Gonz&aacute;lez, C&aacute;ndido Martin and Molina, Mercedes Siles},\n  title = {Squares and associative representations of two-dimensional evolution algebras},\n  journal = {J. Algebra Appl.},\n  year = {2021},\n  volume = {20},\n  number = {6},\n  pages = {Paper No. 2150090, 38},\n  url = {https:\/\/doi.org\/10.1142\/S0219498821500900},\n  doi = {10.1142\/S0219498821500900}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CabreraCasado2021\" class=\"entry\">\n\t<td>Cabrera Casado Y, Cardoso Gon&ccedil;alves MI, Gon&ccedil;alves D, Martin Barquero D and Martin Gonz&aacute;lez C (2021), <i>&#8220;Chains in evolution algebras&#8221;<\/i>, Linear Algebra Appl..  Vol. 622, pp. 104-149.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CabreraCasado2021','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.laa.2021.03.026\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.laa.2021.03.026\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CabreraCasado2021\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CabreraCasado2021,\n  author = {Cabrera Casado, Yolanda and Cardoso Gon&ccedil;alves, Maria Inez and Gon&ccedil;alves, Daniel and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido},\n  title = {Chains in evolution algebras},\n  journal = {Linear Algebra Appl.},\n  year = {2021},\n  volume = {622},\n  pages = {104--149},\n  url = {https:\/\/doi.org\/10.1016\/j.laa.2021.03.026},\n  doi = {10.1016\/j.laa.2021.03.026}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Buhphang2021\" class=\"entry\">\n\t<td>Buhphang AM, Das S, Gonz&aacute;lez CM and Molina MS (2021), <i>&#8220;Socle-injective semiprime rings, with some applications to Leavitt path algebras&#8221;<\/i>, Comm. Algebra.  Vol. 49(3), pp. 1128-1145.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Buhphang2021','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1080\/00927872.2020.1828444\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1080\/00927872.2020.1828444\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Buhphang2021\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Buhphang2021,\n  author = {Buhphang, Ardeline M. and Das, Soumitra and Gonz&aacute;lez, C&aacute;ndido Martin and Molina, Mercedes Siles},\n  title = {Socle-injective semiprime rings, with some applications to Leavitt path algebras},\n  journal = {Comm. Algebra},\n  year = {2021},\n  volume = {49},\n  number = {3},\n  pages = {1128--1145},\n  url = {https:\/\/doi.org\/10.1080\/00927872.2020.1828444},\n  doi = {10.1080\/00927872.2020.1828444}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Kanuni2019\" class=\"entry\">\n\t<td>Kanuni M, Martin Barquero D, Martin Gonz&aacute;lez C and Siles Molina M (2019), <i>&#8220;Classification of Leavitt path algebras with two vertices&#8221;<\/i>, Mosc. Math. J..  Vol. 19(3), pp. 523-548.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Kanuni2019','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.17323\/1609-4514-2019-19-3-523-548\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.17323\/1609-4514-2019-19-3-523-548\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Kanuni2019\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Kanuni2019,\n  author = {Kanuni, M&uuml;ge and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and Siles Molina, Mercedes},\n  title = {Classification of Leavitt path algebras with two vertices},\n  journal = {Mosc. Math. J.},\n  year = {2019},\n  volume = {19},\n  number = {3},\n  pages = {523--548},\n  url = {https:\/\/doi.org\/10.17323\/1609-4514-2019-19-3-523-548},\n  doi = {10.17323\/1609-4514-2019-19-3-523-548}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Clark2019\" class=\"entry\">\n\t<td>Clark LO, Martin Barquero D, Martin Gonz&aacute;lez C and Siles Molina M (2019), <i>&#8220;Using the Steinberg algebra model to determine the center of any Leavitt path algebra&#8221;<\/i>, Israel J. Math..  Vol. 230(1), pp. 23-44.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Clark2019','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s11856-018-1816-8\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s11856-018-1816-8\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Clark2019\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Clark2019,\n  author = {Clark, Lisa O. and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and Siles Molina, Mercedes},\n  title = {Using the Steinberg algebra model to determine the center of any Leavitt path algebra},\n  journal = {Israel J. Math.},\n  year = {2019},\n  volume = {230},\n  number = {1},\n  pages = {23--44},\n  url = {https:\/\/doi.org\/10.1007\/s11856-018-1816-8},\n  doi = {10.1007\/s11856-018-1816-8}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"AlbercaBjerregaard2018\" class=\"entry\">\n\t<td>Alberca Bjerregaard P, Martin Barquero D, Martin Gonz&aacute;lez C and Ndoye D (2018), <i>&#8220;Algebraic structure of the Lorentz and of the Poincar&eacute; Lie algebras&#8221;<\/i>, Tokyo J. Math..  Vol. 41(2), pp. 305-346.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('AlbercaBjerregaard2018','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.3836\/tjm\/1502179279\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.3836\/tjm\/1502179279\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_AlbercaBjerregaard2018\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{AlbercaBjerregaard2018,\n  author = {Alberca Bjerregaard, Pablo and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and Ndoye, Daouda},\n  title = {Algebraic structure of the Lorentz and of the Poincar&eacute; Lie algebras},\n  journal = {Tokyo J. Math.},\n  year = {2018},\n  volume = {41},\n  number = {2},\n  pages = {305--346},\n  url = {https:\/\/doi.org\/10.3836\/tjm\/1502179279},\n  doi = {10.3836\/tjm\/1502179279}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Calderon2018\" class=\"entry\">\n\t<td>Calder&oacute;n AJ, Draper C, Martin C and Ndoye D (2018), <i>&#8220;Orthogonal-gradings on H^*-algebras&#8221;<\/i>, Mediterr. J. Math..  Vol. 15(1), pp. Paper No. 16, 18.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Calderon2018','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-017-1059-7\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-017-1059-7\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Calderon2018\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Calderon2018,\n  author = {Calder&oacute;n, Antonio J. and Draper, Cristina and Martin, C&aacute;ndido and Ndoye, Daouda},\n  title = {Orthogonal-gradings on H^*-algebras},\n  journal = {Mediterr. J. Math.},\n  year = {2018},\n  volume = {15},\n  number = {1},\n  pages = {Paper No. 16, 18},\n  url = {https:\/\/doi.org\/10.1007\/s00009-017-1059-7},\n  doi = {10.1007\/s00009-017-1059-7}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CalderonMartin2018\" class=\"entry\">\n\t<td>Calder&oacute;n Martin AJ, Martin Gonz&aacute;lez C and Ndoye D (2018), <i>&#8220;On groupoid gradings&#8221;<\/i>, J. Geom. Phys..  Vol. 123, pp. 61-70.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CalderonMartin2018','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.geomphys.2017.08.015\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.geomphys.2017.08.015\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CalderonMartin2018\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CalderonMartin2018,\n  author = {Calder&oacute;n Martin, Antonio Jes&uacute;s and Martin Gonz&aacute;lez, C&aacute;ndido and Ndoye, Daouda},\n  title = {On groupoid gradings},\n  journal = {J. Geom. Phys.},\n  year = {2018},\n  volume = {123},\n  pages = {61--70},\n  url = {https:\/\/doi.org\/10.1016\/j.geomphys.2017.08.015},\n  doi = {10.1016\/j.geomphys.2017.08.015}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Clark2017\" class=\"entry\">\n\t<td>Clark LO, Martin Barquero D, Martin Gonz&aacute;lez C and Siles Molina M (2017), <i>&#8220;Using Steinberg algebras to study decomposability of Leavitt path algebras&#8221;<\/i>, Forum Math..  Vol. 29(6), pp. 1311-1324.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Clark2017','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1515\/forum-2016-0062\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1515\/forum-2016-0062\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Clark2017\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Clark2017,\n  author = {Clark, Lisa O. and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and Siles Molina, Mercedes},\n  title = {Using Steinberg algebras to study decomposability of Leavitt path algebras},\n  journal = {Forum Math.},\n  year = {2017},\n  volume = {29},\n  number = {6},\n  pages = {1311--1324},\n  url = {https:\/\/doi.org\/10.1515\/forum-2016-0062},\n  doi = {10.1515\/forum-2016-0062}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CorralesGarcia2017\" class=\"entry\">\n\t<td>Corrales Garc\\ia MG, Martin Barquero D, Martin Gonz&aacute;lez C, Siles Molina M and Solanilla Hern&aacute;ndez JF (2017), <i>&#8220;Centers of path algebras, Cohn and Leavitt path algebras&#8221;<\/i>, Bull. Malays. Math. Sci. Soc..  Vol. 40(4), pp. 1745-1767.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CorralesGarcia2017','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s40840-015-0214-1\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s40840-015-0214-1\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CorralesGarcia2017\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CorralesGarcia2017,\n  author = {Corrales Garc\\ia, Mar\\ia G. and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and Siles Molina, Mercedes and Solanilla Hern&aacute;ndez, Jos&eacute; F.},\n  title = {Centers of path algebras, Cohn and Leavitt path algebras},\n  journal = {Bull. Malays. Math. Sci. Soc.},\n  year = {2017},\n  volume = {40},\n  number = {4},\n  pages = {1745--1767},\n  url = {https:\/\/doi.org\/10.1007\/s40840-015-0214-1},\n  doi = {10.1007\/s40840-015-0214-1}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"AlbercaBjerregaard2017\" class=\"entry\">\n\t<td>Alberca Bjerregaard P, Martin Barquero D, Martin Gonz&aacute;lez C and Ndoye D (2017), <i>&#8220;Fine gradings on the Poincar&eacute; algebra&#8221;<\/i>, Math. Proc. R. Ir. Acad..  Vol. 117A(2), pp. 39-45.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('AlbercaBjerregaard2017','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.3318\/pria.2017.117.05\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.3318\/pria.2017.117.05\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_AlbercaBjerregaard2017\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{AlbercaBjerregaard2017,\n  author = {Alberca Bjerregaard, Pablo and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and Ndoye, Daouda},\n  title = {Fine gradings on the Poincar&eacute; algebra},\n  journal = {Math. Proc. R. Ir. Acad.},\n  year = {2017},\n  volume = {117A},\n  number = {2},\n  pages = {39--45},\n  url = {https:\/\/doi.org\/10.3318\/pria.2017.117.05},\n  doi = {10.3318\/pria.2017.117.05}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"MartinGonzalez2017\" class=\"entry\">\n\t<td>Martin Gonz&aacute;lez C, Repka J and S&aacute;nchez-Ortega J (2017), <i>&#8220;Automorphisms, &sigma;-biderivations and &sigma;-commuting maps of triangular algebras&#8221;<\/i>, Mediterr. J. Math..  Vol. 14(2), pp. Paper No. 68, 25.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('MartinGonzalez2017','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-016-0809-2\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-016-0809-2\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_MartinGonzalez2017\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{MartinGonzalez2017,\n  author = {Martin Gonz&aacute;lez, C&aacute;ndido and Repka, Joe and S&aacute;nchez-Ortega, Juana},\n  title = {Automorphisms, &sigma;-biderivations and &sigma;-commuting maps of triangular algebras},\n  journal = {Mediterr. J. Math.},\n  year = {2017},\n  volume = {14},\n  number = {2},\n  pages = {Paper No. 68, 25},\n  url = {https:\/\/doi.org\/10.1007\/s00009-016-0809-2},\n  doi = {10.1007\/s00009-016-0809-2}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"AlbercaBjerregaard2016\" class=\"entry\">\n\t<td>Alberca Bjerregaard P, Martin Barquero D, Martin Gonz&aacute;lez C and Ndoye D (2016), <i>&#8220;Basic and free simplicity of Lorentz type algebras&#8221;<\/i>, In Non-associative and non-commutative algebra and operator theory.  Vol. 160, pp. 201-209. Springer, Cham.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('AlbercaBjerregaard2016','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/978-3-319-32902-4%5C_%7B1%7D%7B5%7D\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/978-3-319-32902-4_15\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_AlbercaBjerregaard2016\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@incollection{AlbercaBjerregaard2016,\n  author = {Alberca Bjerregaard, Pablo and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and Ndoye, Daouda},\n  title = {Basic and free simplicity of Lorentz type algebras},\n  booktitle = {Non-associative and non-commutative algebra and operator theory},\n  publisher = {Springer, Cham},\n  year = {2016},\n  volume = {160},\n  pages = {201--209},\n  url = {https:\/\/doi.org\/10.1007\/978-3-319-32902-4_15},\n  doi = {10.1007\/978-3-319-32902-4\\_{1}{5}}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Cam2020\" class=\"entry\">\n\t<td>Cam V, Gil Canto C, Kanuni M and Molina MS (2020), <i>&#8220;Largest ideals in Leavitt path algebras&#8221;<\/i>, Mediterr. J. Math..  Vol. 17(2), pp. Paper No. 66, 21.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Cam2020','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-020-1486-8\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-020-1486-8\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Cam2020\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Cam2020,\n  author = {Cam, Vural and Gil Canto, Crist&oacute;bal and Kanuni, M&uuml;ge and Molina, Mercedes Siles},\n  title = {Largest ideals in Leavitt path algebras},\n  journal = {Mediterr. J. Math.},\n  year = {2020},\n  volume = {17},\n  number = {2},\n  pages = {Paper No. 66, 21},\n  url = {https:\/\/doi.org\/10.1007\/s00009-020-1486-8},\n  doi = {10.1007\/s00009-020-1486-8}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"GilCanto2020\" class=\"entry\">\n\t<td>Gil Canto C and Gon&ccedil;alves D (2020), <i>&#8220;Representations of relative Cohn path algebras&#8221;<\/i>, J. Pure Appl. Algebra.  Vol. 224(7), pp. 106310, 15.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('GilCanto2020','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.jpaa.2020.106310\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.jpaa.2020.106310\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_GilCanto2020\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{GilCanto2020,\n  author = {Gil Canto, Crist&oacute;bal and Gon&ccedil;alves, Daniel},\n  title = {Representations of relative Cohn path algebras},\n  journal = {J. Pure Appl. Algebra},\n  year = {2020},\n  volume = {224},\n  number = {7},\n  pages = {106310, 15},\n  url = {https:\/\/doi.org\/10.1016\/j.jpaa.2020.106310},\n  doi = {10.1016\/j.jpaa.2020.106310}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Abrams2018\" class=\"entry\">\n\t<td>Abrams G, Erickson S and Gil Canto C (2018), <i>&#8220;Leavitt path algebras of Cayley graphs C_n^j&#8221;<\/i>, Mediterr. J. Math..  Vol. 15(5), pp. Paper No. 197, 23.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Abrams2018','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-018-1246-1\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00009-018-1246-1\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Abrams2018\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Abrams2018,\n  author = {Abrams, Gene and Erickson, Stefan and Gil Canto, Crist&oacute;bal},\n  title = {Leavitt path algebras of Cayley graphs C_n^j},\n  journal = {Mediterr. J. Math.},\n  year = {2018},\n  volume = {15},\n  number = {5},\n  pages = {Paper No. 197, 23},\n  url = {https:\/\/doi.org\/10.1007\/s00009-018-1246-1},\n  doi = {10.1007\/s00009-018-1246-1}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"GilCanto2018\" class=\"entry\">\n\t<td>Gil Canto C and Nasr-Isfahani A (2018), <i>&#8220;The commutative core of a Leavitt path algebra&#8221;<\/i>, J. Algebra.  Vol. 511, pp. 227-248.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('GilCanto2018','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.jalgebra.2018.06.016\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.jalgebra.2018.06.016\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_GilCanto2018\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{GilCanto2018,\n  author = {Gil Canto, Crist&oacute;bal and Nasr-Isfahani, Alireza},\n  title = {The commutative core of a Leavitt path algebra},\n  journal = {J. Algebra},\n  year = {2018},\n  volume = {511},\n  pages = {227--248},\n  url = {https:\/\/doi.org\/10.1016\/j.jalgebra.2018.06.016},\n  doi = {10.1016\/j.jalgebra.2018.06.016}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Clark2017a\" class=\"entry\">\n\t<td>Clark LO, Gil Canto C and Nasr-Isfahani A (2017), <i>&#8220;The cycline subalgebra of a Kumjian-Pask algebra&#8221;<\/i>, Proc. Amer. Math. Soc..  Vol. 145(5), pp. 1969-1980.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Clark2017a','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1090\/proc\/13439\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1090\/proc\/13439\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Clark2017a\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Clark2017a,\n  author = {Clark, Lisa O. and Gil Canto, Crist&oacute;bal and Nasr-Isfahani, Alireza},\n  title = {The cycline subalgebra of a Kumjian-Pask algebra},\n  journal = {Proc. Amer. Math. Soc.},\n  year = {2017},\n  volume = {145},\n  number = {5},\n  pages = {1969--1980},\n  url = {https:\/\/doi.org\/10.1090\/proc\/13439},\n  doi = {10.1090\/proc\/13439}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CabreraCasado2023b\" class=\"entry\">\n\t<td>Cabrera Casado Y, Cadavid P and Reis T (2023), <i>&#8220;Derivations and loops of some evolution algebras&#8221;<\/i>, Rev. R. Acad. Cienc. Exactas Fis. Nat. Ser. A Mat. RACSAM.  Vol. 117(3), pp. Paper No. 119, 22.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CabreraCasado2023b','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s13398-023-01446-2\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s13398-023-01446-2\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CabreraCasado2023b\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CabreraCasado2023b,\n  author = {Cabrera Casado, Yolanda and Cadavid, Paula and Reis, Tiago},\n  title = {Derivations and loops of some evolution algebras},\n  journal = {Rev. R. Acad. Cienc. Exactas Fis. Nat. Ser. A Mat. RACSAM},\n  year = {2023},\n  volume = {117},\n  number = {3},\n  pages = {Paper No. 119, 22},\n  url = {https:\/\/doi.org\/10.1007\/s13398-023-01446-2},\n  doi = {10.1007\/s13398-023-01446-2}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Boudi2022\" class=\"entry\">\n\t<td>Boudi N, Cabrera Casado Y and Siles Molina M (2022), <i>&#8220;Natural families in evolution algebras&#8221;<\/i>, Publ. Mat..  Vol. 66(1), pp. 159-181.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Boudi2022','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.5565\/publmat6612206\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.5565\/publmat6612206\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Boudi2022\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Boudi2022,\n  author = {Boudi, Nadia and Cabrera Casado, Yolanda and Siles Molina, Mercedes},\n  title = {Natural families in evolution algebras},\n  journal = {Publ. Mat.},\n  year = {2022},\n  volume = {66},\n  number = {1},\n  pages = {159--181},\n  url = {https:\/\/doi.org\/10.5565\/publmat6612206},\n  doi = {10.5565\/publmat6612206}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CabreraCasado2021a\" class=\"entry\">\n\t<td>Cabrera Casado Y, Cadavid P, Rodi&ntilde;o Montoya ML and Rodriguez PM (2021), <i>&#8220;On the characterization of the space of derivations in evolution algebras&#8221;<\/i>, Ann. Mat. Pura Appl. (4).  Vol. 200(2), pp. 737-755.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CabreraCasado2021a','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s10231-020-01012-2\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s10231-020-01012-2\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CabreraCasado2021a\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CabreraCasado2021a,\n  author = {Cabrera Casado, Yolanda and Cadavid, Paula and Rodi&ntilde;o Montoya, Mary Luz and Rodriguez, Pablo M.},\n  title = {On the characterization of the space of derivations in evolution algebras},\n  journal = {Ann. Mat. Pura Appl. (4)},\n  year = {2021},\n  volume = {200},\n  number = {2},\n  pages = {737--755},\n  url = {https:\/\/doi.org\/10.1007\/s10231-020-01012-2},\n  doi = {10.1007\/s10231-020-01012-2}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Behn[2020]copyright2020\" class=\"entry\">\n\t<td>Behn A, Cabrera Casado Y and Siles Molina M ([2020] \\copyright 2020), <i>&#8220;Isomorphisms of four dimensional perfect non-simple evolution algebras&#8221;<\/i>, In Associative and non-associative algebras and applications.  Vol. 311, pp. 3-21. Springer, Cham.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Behn[2020]copyright2020','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/978-3-030-35256-1%5C_1\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/978-3-030-35256-1_1\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Behn[2020]copyright2020\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@incollection{Behn[2020]copyright2020,\n  author = {Behn, Antonio and Cabrera Casado, Yolanda and Siles Molina, Mercedes},\n  title = {Isomorphisms of four dimensional perfect non-simple evolution algebras},\n  booktitle = {Associative and non-associative algebras and applications},\n  publisher = {Springer, Cham},\n  year = {[2020] &circledc; 2020},\n  volume = {311},\n  pages = {3--21},\n  url = {https:\/\/doi.org\/10.1007\/978-3-030-35256-1_1},\n  doi = {10.1007\/978-3-030-35256-1\\_1}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CabreraCasado2019\" class=\"entry\">\n\t<td>Cabrera Casado Y, Kanuni M and Siles Molina M (2019), <i>&#8220;Basic ideals in evolution algebras&#8221;<\/i>, Linear Algebra Appl..  Vol. 570, pp. 148-180.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CabreraCasado2019','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.laa.2019.01.010\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.laa.2019.01.010\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CabreraCasado2019\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CabreraCasado2019,\n  author = {Cabrera Casado, Yolanda and Kanuni, M&uuml;ge and Siles Molina, Mercedes},\n  title = {Basic ideals in evolution algebras},\n  journal = {Linear Algebra Appl.},\n  year = {2019},\n  volume = {570},\n  pages = {148--180},\n  url = {https:\/\/doi.org\/10.1016\/j.laa.2019.01.010},\n  doi = {10.1016\/j.laa.2019.01.010}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CabreraCasado2017\" class=\"entry\">\n\t<td>Cabrera Casado Y, Siles Molina M and Velasco MV (2017), <i>&#8220;Classification of three-dimensional evolution algebras&#8221;<\/i>, Linear Algebra Appl..  Vol. 524, pp. 68-108.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CabreraCasado2017','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.laa.2017.02.015\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.laa.2017.02.015\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CabreraCasado2017\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CabreraCasado2017,\n  author = {Cabrera Casado, Yolanda and Siles Molina, Mercedes and Velasco, M. Victoria},\n  title = {Classification of three-dimensional evolution algebras},\n  journal = {Linear Algebra Appl.},\n  year = {2017},\n  volume = {524},\n  pages = {68--108},\n  url = {https:\/\/doi.org\/10.1016\/j.laa.2017.02.015},\n  doi = {10.1016\/j.laa.2017.02.015}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CabreraCasado2016\" class=\"entry\">\n\t<td>Cabrera Casado Y, Siles Molina M and Velasco MV (2016), <i>&#8220;Evolution algebras of arbitrary dimension and their decompositions&#8221;<\/i>, Linear Algebra Appl..  Vol. 495, pp. 122-162.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CabreraCasado2016','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.laa.2016.01.007\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.laa.2016.01.007\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CabreraCasado2016\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CabreraCasado2016,\n  author = {Cabrera Casado, Yolanda and Siles Molina, Mercedes and Velasco, M. Victoria},\n  title = {Evolution algebras of arbitrary dimension and their decompositions},\n  journal = {Linear Algebra Appl.},\n  year = {2016},\n  volume = {495},\n  pages = {122--162},\n  url = {https:\/\/doi.org\/10.1016\/j.laa.2016.01.007},\n  doi = {10.1016\/j.laa.2016.01.007}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Costoya2023\" class=\"entry\">\n\t<td>Costoya C, Mu&ntilde;oz V, Tocino A and Viruel A (2023), <i>&#8220;Automorphism groups of Cayley evolution algebras&#8221;<\/i>, Rev. R. Acad. Cienc. Exactas F\\is. Nat. Ser. A Mat. RACSAM.  Vol. 117(2), pp. Paper No. 82, 11.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Costoya2023','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s13398-023-01414-w\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s13398-023-01414-w\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Costoya2023\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Costoya2023,\n  author = {Costoya, Cristina and Mu&ntilde;oz, Vicente and Tocino, Alicia and Viruel, Antonio},\n  title = {Automorphism groups of Cayley evolution algebras},\n  journal = {Rev. R. Acad. Cienc. Exactas F\\is. Nat. Ser. A Mat. RACSAM},\n  year = {2023},\n  volume = {117},\n  number = {2},\n  pages = {Paper No. 82, 11},\n  url = {https:\/\/doi.org\/10.1007\/s13398-023-01414-w},\n  doi = {10.1007\/s13398-023-01414-w}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Costoya2022\" class=\"entry\">\n\t<td>Costoya C, Ligouras P, Tocino A and Viruel A (2022), <i>&#8220;Regular evolution algebras are universally finite&#8221;<\/i>, Proc. Amer. Math. Soc..  Vol. 150(3), pp. 919-925.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Costoya2022','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1090\/proc\/15648\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1090\/proc\/15648\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Costoya2022\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Costoya2022,\n  author = {Costoya, Cristina and Ligouras, Panagiote and Tocino, Alicia and Viruel, Antonio},\n  title = {Regular evolution algebras are universally finite},\n  journal = {Proc. Amer. Math. Soc.},\n  year = {2022},\n  volume = {150},\n  number = {3},\n  pages = {919--925},\n  url = {https:\/\/doi.org\/10.1090\/proc\/15648},\n  doi = {10.1090\/proc\/15648}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Arrondo2019\" class=\"entry\">\n\t<td>Arrondo E and Tocino A (2019), <i>&#8220;Cohomological characterization of universal bundles of G(1,n)&#8221;<\/i>, J. Algebra.  Vol. 540, pp. 206-233.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Arrondo2019','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.jalgebra.2019.08.025\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.jalgebra.2019.08.025\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Arrondo2019\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Arrondo2019,\n  author = {Arrondo, Enrique and Tocino, Alicia},\n  title = {Cohomological characterization of universal bundles of G(1,n)},\n  journal = {J. Algebra},\n  year = {2019},\n  volume = {540},\n  pages = {206--233},\n  url = {https:\/\/doi.org\/10.1016\/j.jalgebra.2019.08.025},\n  doi = {10.1016\/j.jalgebra.2019.08.025}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draisma2018\" class=\"entry\">\n\t<td>Draisma J, Ottaviani G and Tocino A (2018), <i>&#8220;Best rank-k approximations for tensors: generalizing Eckart-Young&#8221;<\/i>, Res. Math. Sci..  Vol. 5(2), pp. Paper No. 27, 13.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draisma2018','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s40687-018-0145-1\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s40687-018-0145-1\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draisma2018\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draisma2018,\n  author = {Draisma, Jan and Ottaviani, Giorgio and Tocino, Alicia},\n  title = {Best rank-k approximations for tensors: generalizing Eckart-Young},\n  journal = {Res. Math. Sci.},\n  year = {2018},\n  volume = {5},\n  number = {2},\n  pages = {Paper No. 27, 13},\n  url = {https:\/\/doi.org\/10.1007\/s40687-018-0145-1},\n  doi = {10.1007\/s40687-018-0145-1}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Ottaviani2018\" class=\"entry\">\n\t<td>Ottaviani G and Tocino A (2018), <i>&#8220;Best rank k approximation for binary forms&#8221;<\/i>, Collect. Math..  Vol. 69(1), pp. 163-171.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Ottaviani2018','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s13348-017-0206-6\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s13348-017-0206-6\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Ottaviani2018\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Ottaviani2018,\n  author = {Ottaviani, Giorgio and Tocino, Alicia},\n  title = {Best rank k approximation for binary forms},\n  journal = {Collect. Math.},\n  year = {2018},\n  volume = {69},\n  number = {1},\n  pages = {163--171},\n  url = {https:\/\/doi.org\/10.1007\/s13348-017-0206-6},\n  doi = {10.1007\/s13348-017-0206-6}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Tocino2016\" class=\"entry\">\n\t<td>Tocino A (2016), <i>&#8220;The hyperdeterminant vanishes on all but two Schur functors&#8221;<\/i>, J. Algebra.  Vol. 450, pp. 316-322.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Tocino2016','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.jalgebra.2015.11.018\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.jalgebra.2015.11.018\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Tocino2016\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Tocino2016,\n  author = {Tocino, Alicia},\n  title = {The hyperdeterminant vanishes on all but two Schur functors},\n  journal = {J. Algebra},\n  year = {2016},\n  volume = {450},\n  pages = {316--322},\n  url = {https:\/\/doi.org\/10.1016\/j.jalgebra.2015.11.018},\n  doi = {10.1016\/j.jalgebra.2015.11.018}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CabreraCasado2024\" class=\"entry\">\n\t<td>Cabrera Casado Y, Martin Barquero D, Martin Gonz&aacute;lez C and Tocino A (2024), <i>&#8220;On simple evolution algebras of dimension two and three. Constructing simple and semisimple evolution algebras&#8221;<\/i>, Linear Multilinear Algebra.  Vol. to appear\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CabreraCasado2024','bibtex')\">BibTeX<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CabreraCasado2024\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CabreraCasado2024,\n  author = {Cabrera Casado, Yolanda and Martin Barquero, Dolores and Martin Gonz&aacute;lez, C&aacute;ndido and Tocino, Alicia},\n  title = {On simple evolution algebras of dimension two and three. Constructing simple and semisimple evolution algebras},\n  journal = {Linear Multilinear Algebra},\n  year = {2024},\n  volume = {to appear}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Abdelwahab2024\" class=\"entry\">\n\t<td>Abdelwahab H, Fern\u00e1ndez Ouaridi A and Mart\u00edn Gonz\u00e1lez C (2024), <i>&#8220;Degenerations of Poisson algebras&#8221;<\/i>, Journal of Algebra and Its Applications.  Vol. to appear\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Abdelwahab2024','bibtex')\">BibTeX<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Abdelwahab2024\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Abdelwahab2024,\n  author = { Abdelwahab, Hani and Fern\u00e1ndez Ouaridi, Amir and Mart\u00edn Gonz\u00e1lez, C\u00e1ndido},\n  title = {Degenerations of Poisson algebras},\n  journal = {Journal of Algebra and Its Applications},\n  year = {2024},\n  volume = {to appear}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"FernandezOuaridi2024\" class=\"entry\">\n\t<td>Fern\u00e1ndez Ouaridi A, Kaigorodov I and Mart\u00edn Gonz\u00e1lez C (2024), <i>&#8220;Conservative algebras of 2-dimensional algebras, IV&#8221;<\/i>, Journal of Algebra and Its Applications.  Vol. to appear\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('FernandezOuaridi2024','bibtex')\">BibTeX<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_FernandezOuaridi2024\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{FernandezOuaridi2024,\n  author = {Fern\u00e1ndez Ouaridi, Amir and Kaigorodov, Ivan and Mart\u00edn Gonz\u00e1lez, C\u00e1ndido},\n  title = {Conservative algebras of 2-dimensional algebras, IV},\n  journal = {Journal of Algebra and Its Applications},\n  year = {2024},\n  volume = {to appear}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Bock2022\" class=\"entry\">\n\t<td>Bock W, Canto CG, Barquero DM, Gonz\u00e1lez CM, Campos IR and Sebandal A (2022), <i>&#8220;Algebraic entropy and a complete classification of path algebras over finite graphs by growth&#8221;<\/i>. \n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Bock2022','bibtex')\">BibTeX<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Bock2022\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@misc{Bock2022,\n  author = {Wolfgang Bock and Crist\u00f3bal Gil Canto and Dolores Mart\u00edn Barquero and C\u00e1ndido Mart\u00edn Gonz\u00e1lez and Iv\u00e1n Ruiz Campos and Alfilgen Sebandal},\n  title = {Algebraic entropy and a complete classification of path algebras over finite graphs by growth},\n  year = {2022}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Barquero2023\" class=\"entry\">\n\t<td>Barquero DM, Gonz\u00e1lez CM and Campos IR (2023), <i>&#8220;Algebraic characterisations of path algebras&#8221;<\/i>. \n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Barquero2023','bibtex')\">BibTeX<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Barquero2023\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@misc{Barquero2023,\n  author = {Dolores Mart\u00edn Barquero and C\u00e1ndido Mart\u00edn Gonz\u00e1lez and Iv\u00e1n Ruiz Campos},\n  title = {Algebraic characterisations of path algebras},\n  year = {2023}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper[2023]copyright2023\" class=\"entry\">\n\t<td>Draper C and Palomo FJ ([2023] \\copyright 2023), <i>&#8220;Reductive homogeneous spaces of the compact Lie group G_2&#8221;<\/i>, In Non-associative algebras and related topics.  Vol. 427, pp. 29-63. Springer, Cham.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper[2023]copyright2023','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/978-3-031-32707-0%5C_3\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/978-3-031-32707-0_3\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper[2023]copyright2023\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@incollection{Draper[2023]copyright2023,\n  author = {Draper, Cristina and Palomo, Francisco J.},\n  title = {Reductive homogeneous spaces of the compact Lie group G_2},\n  booktitle = {Non-associative algebras and related topics},\n  publisher = {Springer, Cham},\n  year = {[2023] &circledc; 2023},\n  volume = {427},\n  pages = {29--63},\n  url = {https:\/\/doi.org\/10.1007\/978-3-031-32707-0_3},\n  doi = {10.1007\/978-3-031-32707-0\\_3}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2022\" class=\"entry\">\n\t<td>Draper C and Meulewaeter J (2022), <i>&#8220;Inner ideals of real simple Lie algebras&#8221;<\/i>, Bull. Malays. Math. Sci. Soc..  Vol. 45(5), pp. 2313-2345.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2022','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s40840-022-01321-0\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s40840-022-01321-0\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2022\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2022,\n  author = {Draper, Cristina and Meulewaeter, Jeroen},\n  title = {Inner ideals of real simple Lie algebras},\n  journal = {Bull. Malays. Math. Sci. Soc.},\n  year = {2022},\n  volume = {45},\n  number = {5},\n  pages = {2313--2345},\n  url = {https:\/\/doi.org\/10.1007\/s40840-022-01321-0},\n  doi = {10.1007\/s40840-022-01321-0}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2022a\" class=\"entry\">\n\t<td>Draper C and Elduque A (2022), <i>&#8220;Real simple symplectic triple systems&#8221;<\/i>, Anal. Math. Phys..  Vol. 12(3), pp. Paper No. 69, 46.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2022a','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s13324-022-00677-7\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s13324-022-00677-7\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2022a\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2022a,\n  author = {Draper, Cristina and Elduque, Alberto},\n  title = {Real simple symplectic triple systems},\n  journal = {Anal. Math. Phys.},\n  year = {2022},\n  volume = {12},\n  number = {3},\n  pages = {Paper No. 69, 46},\n  url = {https:\/\/doi.org\/10.1007\/s13324-022-00677-7},\n  doi = {10.1007\/s13324-022-00677-7}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2021\" class=\"entry\">\n\t<td>Draper C (2021), <i>&#8220;Holonomy and 3-Sasakian homogeneous manifolds versus symplectic triple systems&#8221;<\/i>, Transform. Groups.  Vol. 26(4), pp. 1293-1314.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2021','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00031-020-09609-w\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00031-020-09609-w\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2021\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2021,\n  author = {Draper, C.},\n  title = {Holonomy and 3-Sasakian homogeneous manifolds versus symplectic triple systems},\n  journal = {Transform. Groups},\n  year = {2021},\n  volume = {26},\n  number = {4},\n  pages = {1293--1314},\n  url = {https:\/\/doi.org\/10.1007\/s00031-020-09609-w},\n  doi = {10.1007\/s00031-020-09609-w}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"DraperFontanals2020\" class=\"entry\">\n\t<td>Draper Fontanals C (2020), <i>&#8220;Homogeneous Einstein manifolds based on symplectic triple systems&#8221;<\/i>, Commun. Math..  Vol. 28(2), pp. 139-154.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('DraperFontanals2020','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.2478\/cm-2020-0016\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.2478\/cm-2020-0016\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_DraperFontanals2020\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{DraperFontanals2020,\n  author = {Draper Fontanals, Cristina},\n  title = {Homogeneous Einstein manifolds based on symplectic triple systems},\n  journal = {Commun. Math.},\n  year = {2020},\n  volume = {28},\n  number = {2},\n  pages = {139--154},\n  url = {https:\/\/doi.org\/10.2478\/cm-2020-0016},\n  doi = {10.2478\/cm-2020-0016}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2020\" class=\"entry\">\n\t<td>Draper C, Ortega M and Palomo FJ (2020), <i>&#8220;Affine connections on 3-Sasakian and manifolds&#8221;<\/i>, Math. Z..  Vol. 294(1-2), pp. 817-868.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2020','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00209-019-02304-x\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s00209-019-02304-x\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2020\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2020,\n  author = {Draper, Cristina and Ortega, Miguel and Palomo, Francisco J.},\n  title = {Affine connections on 3-Sasakian and manifolds},\n  journal = {Math. Z.},\n  year = {2020},\n  volume = {294},\n  number = {1-2},\n  pages = {817--868},\n  url = {https:\/\/doi.org\/10.1007\/s00209-019-02304-x},\n  doi = {10.1007\/s00209-019-02304-x}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"bib_Draper2020a\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2020a,\n  author = {Draper, Cristina and Ortega, Miguel and Palomo, Francisco J.},\n  title = {Correction to: Affine connections on 3-Sasakian homogeneous manifolds},\n  journal = {Math. Z.},\n  year = {2020},\n  volume = {294},\n  number = {1-2},\n  pages = {869},\n  url = {https:\/\/doi.org\/10.1007\/s00209-019-02360-3},\n  doi = {10.1007\/s00209-019-02360-3}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"DraperFontanals2018\" class=\"entry\">\n\t<td>Draper Fontanals C, Garv\\in A and Palomo FJ (2018), <i>&#8220;Einstein with skew-torsion connections on Berger spheres&#8221;<\/i>, J. Geom. Phys..  Vol. 134, pp. 133-141.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('DraperFontanals2018','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.geomphys.2018.08.006\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.geomphys.2018.08.006\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_DraperFontanals2018\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{DraperFontanals2018,\n  author = {Draper Fontanals, Cristina and Garv\\in, Antonio and Palomo, Francisco J.},\n  title = {Einstein with skew-torsion connections on Berger spheres},\n  journal = {J. Geom. Phys.},\n  year = {2018},\n  volume = {134},\n  pages = {133--141},\n  url = {https:\/\/doi.org\/10.1016\/j.geomphys.2018.08.006},\n  doi = {10.1016\/j.geomphys.2018.08.006}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper\" class=\"entry\">\n\t<td>Draper C and Guido V (), <i>&#8220;Gradings on the real form e_6,-14&#8221;<\/i> \n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper','bibtex')\">BibTeX<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper,\n  author = {Draper, Cristina and Guido, Valerio},\n  title = {Gradings on the real form e_6,-14}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"DraperFontanals2018a\" class=\"entry\">\n\t<td>Draper Fontanals C (2018), <i>&#8220;Notes on G_2: the Lie algebra and the Lie group&#8221;<\/i>, Differential Geom. Appl..  Vol. 57, pp. 23-74.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('DraperFontanals2018a','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.difgeo.2017.10.011\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.difgeo.2017.10.011\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_DraperFontanals2018a\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{DraperFontanals2018a,\n  author = {Draper Fontanals, Cristina},\n  title = {Notes on G_2: the Lie algebra and the Lie group},\n  journal = {Differential Geom. Appl.},\n  year = {2018},\n  volume = {57},\n  pages = {23--74},\n  url = {https:\/\/doi.org\/10.1016\/j.difgeo.2017.10.011},\n  doi = {10.1016\/j.difgeo.2017.10.011}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2017\" class=\"entry\">\n\t<td>Draper C, Elduque A and Kochetov M (2017), <i>&#8220;Gradings on modules over Lie algebras of E types&#8221;<\/i>, Algebr. Represent. Theory.  Vol. 20(5), pp. 1085-1107.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2017','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s10468-017-9675-2\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s10468-017-9675-2\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2017\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2017,\n  author = {Draper, Cristina and Elduque, Alberto and Kochetov, Mikhail},\n  title = {Gradings on modules over Lie algebras of E types},\n  journal = {Algebr. Represent. Theory},\n  year = {2017},\n  volume = {20},\n  number = {5},\n  pages = {1085--1107},\n  url = {https:\/\/doi.org\/10.1007\/s10468-017-9675-2},\n  doi = {10.1007\/s10468-017-9675-2}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2017a\" class=\"entry\">\n\t<td>Draper C and Elduque A (2017), <i>&#8220;Maximal finite abelian subgroups of E_8&#8221;<\/i>, Proc. Roy. Soc. Edinburgh Sect. A.  Vol. 147(5), pp. 993-1008.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2017a','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1017\/S0308210516000445\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1017\/S0308210516000445\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2017a\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2017a,\n  author = {Draper, Cristina and Elduque, Alberto},\n  title = {Maximal finite abelian subgroups of E_8},\n  journal = {Proc. Roy. Soc. Edinburgh Sect. A},\n  year = {2017},\n  volume = {147},\n  number = {5},\n  pages = {993--1008},\n  url = {https:\/\/doi.org\/10.1017\/S0308210516000445},\n  doi = {10.1017\/S0308210516000445}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"DraperFontanals2016\" class=\"entry\">\n\t<td>Draper Fontanals C and Guido V (2016), <i>&#8220;On the real forms of the exceptional Lie algebra  e_6 and their Satake diagrams&#8221;<\/i>, In Non-associative and non-commutative algebra and operator theory.  Vol. 160, pp. 211-226. Springer, Cham.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('DraperFontanals2016','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/978-3-319-32902-4%5C_%7B1%7D%7B6%7D\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/978-3-319-32902-4_16\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_DraperFontanals2016\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@incollection{DraperFontanals2016,\n  author = {Draper Fontanals, Cristina and Guido, Valerio},\n  title = {On the real forms of the exceptional Lie algebra  e_6 and their Satake diagrams},\n  booktitle = {Non-associative and non-commutative algebra and operator theory},\n  publisher = {Springer, Cham},\n  year = {2016},\n  volume = {160},\n  pages = {211--226},\n  url = {https:\/\/doi.org\/10.1007\/978-3-319-32902-4_16},\n  doi = {10.1007\/978-3-319-32902-4\\_{1}{6}}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2016\" class=\"entry\">\n\t<td>Draper C and Elduque A (2016), <i>&#8220;An overview of fine gradings on simple Lie algebras&#8221;<\/i>, Note Mat..  Vol. 36, pp. 15-34.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2016','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1285\/i15900932v36suppl1p15\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1285\/i15900932v36suppl1p15\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2016\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2016,\n  author = {Draper, Cristina and Elduque, Alberto},\n  title = {An overview of fine gradings on simple Lie algebras},\n  journal = {Note Mat.},\n  year = {2016},\n  volume = {36},\n  pages = {15--34},\n  url = {https:\/\/doi.org\/10.1285\/i15900932v36suppl1p15},\n  doi = {10.1285\/i15900932v36suppl1p15}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2016a\" class=\"entry\">\n\t<td>Draper C and Guido V (2016), <i>&#8220;Gradings on the real form e_6,-26&#8221;<\/i>, J. Math. Phys..  Vol. 57(10), pp. 101704, 18.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2016a','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1063\/1.4964789\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1063\/1.4964789\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2016a\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2016a,\n  author = {Draper, Cristina and Guido, Valerio},\n  title = {Gradings on the real form e_6,-26},\n  journal = {J. Math. Phys.},\n  year = {2016},\n  volume = {57},\n  number = {10},\n  pages = {101704, 18},\n  url = {https:\/\/doi.org\/10.1063\/1.4964789},\n  doi = {10.1063\/1.4964789}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2016b\" class=\"entry\">\n\t<td>Draper C, Garv\\in A and Palomo FJ (2016), <i>&#8220;Invariant affine connections on odd-dimensional spheres&#8221;<\/i>, Ann. Global Anal. Geom..  Vol. 49(3), pp. 213-251.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2016b','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s10455-015-9489-6\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1007\/s10455-015-9489-6\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2016b\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2016b,\n  author = {Draper, Cristina and Garv\\in, Antonio and Palomo, Francisco J.},\n  title = {Invariant affine connections on odd-dimensional spheres},\n  journal = {Ann. Global Anal. Geom.},\n  year = {2016},\n  volume = {49},\n  number = {3},\n  pages = {213--251},\n  url = {https:\/\/doi.org\/10.1007\/s10455-015-9489-6},\n  doi = {10.1007\/s10455-015-9489-6}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2016c\" class=\"entry\">\n\t<td>Draper C and Viruel A (2016), <i>&#8220;Fine gradings on e_6&#8221;<\/i>, Publ. Mat..  Vol. 60(1), pp. 113-170.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2016c','bibtex')\">BibTeX<\/a>] [<a href=\"http:\/\/projecteuclid.org\/euclid.pm\/1450818485\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2016c\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2016c,\n  author = {Draper, Cristina and Viruel, Antonio},\n  title = {Fine gradings on e_6},\n  journal = {Publ. Mat.},\n  year = {2016},\n  volume = {60},\n  number = {1},\n  pages = {113--170},\n  url = {http:\/\/projecteuclid.org\/euclid.pm\/1450818485}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"Draper2014\" class=\"entry\">\n\t<td>Draper C and Elduque A (2014), <i>&#8220;Fine gradings on the simple Lie algebras of type E&#8221;<\/i>, Note Mat..  Vol. 34(1), pp. 53-88.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('Draper2014','bibtex')\">BibTeX<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_Draper2014\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{Draper2014,\n  author = {Draper, Cristina and Elduque, Alberto},\n  title = {Fine gradings on the simple Lie algebras of type E},\n  journal = {Note Mat.},\n  year = {2014},\n  volume = {34},\n  number = {1},\n  pages = {53--88}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"ArandaOrna2014\" class=\"entry\">\n\t<td>Aranda Orna D, Draper Fontanals C and Guido V (2014), <i>&#8220;Weyl groups of some fine gradings on e_6&#8221;<\/i>, J. Algebra.  Vol. 417, pp. 353-390.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('ArandaOrna2014','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.jalgebra.2014.07.001\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.jalgebra.2014.07.001\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_ArandaOrna2014\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{ArandaOrna2014,\n  author = {Aranda Orna, Diego and Draper Fontanals, Cristina and Guido, Valerio},\n  title = {Weyl groups of some fine gradings on e_6},\n  journal = {J. Algebra},\n  year = {2014},\n  volume = {417},\n  pages = {353--390},\n  url = {https:\/\/doi.org\/10.1016\/j.jalgebra.2014.07.001},\n  doi = {10.1016\/j.jalgebra.2014.07.001}\n}\n<\/pre><\/td>\n<\/tr>\n<tr id=\"CalderonMartin2014\" class=\"entry\">\n\t<td>Calder&oacute;n Martin AJ, Draper Fontanals C, Martin Gonz&aacute;lez C and S&aacute;nchez Delgado JM (2014), <i>&#8220;Gradings and symmetries on Heisenberg type algebras&#8221;<\/i>, Linear Algebra Appl..  Vol. 458, pp. 463-502.\n\t<p class=\"infolinks\"> [<a href=\"javascript:toggleInfo('CalderonMartin2014','bibtex')\">BibTeX<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.laa.2014.06.024\" target=\"_blank\" rel=\"noopener\">DOI<\/a>] [<a href=\"https:\/\/doi.org\/10.1016\/j.laa.2014.06.024\" target=\"_blank\" rel=\"noopener\">URL<\/a>]<\/p>\n\t<\/td>\n<\/tr>\n<tr id=\"bib_CalderonMartin2014\" class=\"bibtex noshow\">\n<td><b>BibTeX<\/b>:\n<pre>\n@article{CalderonMartin2014,\n  author = {Calder&oacute;n Martin, Antonio Jes&uacute;s and Draper Fontanals, Cristina and Martin Gonz&aacute;lez, C&aacute;ndido and S&aacute;nchez Delgado, Jos&eacute; Mar\\ia},\n  title = {Gradings and symmetries on Heisenberg type algebras},\n  journal = {Linear Algebra Appl.},\n  year = {2014},\n  volume = {458},\n  pages = {463--502},\n  url = {https:\/\/doi.org\/10.1016\/j.laa.2014.06.024},\n  doi = {10.1016\/j.laa.2014.06.024}\n}\n<\/pre><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n\n<!-- file generated by JabRef -->\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Publications in the last ten years JabRef references BibTeX: @article{, } Cabrera Casado Y, Gil Canto C, Martin Barquero D and Martin Gonz&aacute;lez C ([2023] copyright 2023), &#8220;Simultaneous orthogonalization of inner products over arbitrary fields&#8221;, In Non-associative algebras and related topics. Vol. 427, pp. 213-230. Springer, Cham. [BibTeX] [DOI] [URL] BibTeX: @incollection{CabreraCasado[2023]copyright2023, author = {Cabrera [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-no-title","meta":{"footnotes":""},"class_list":["post-48","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/gaussresearchgroup.uma.es\/index.php\/wp-json\/wp\/v2\/pages\/48","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gaussresearchgroup.uma.es\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/gaussresearchgroup.uma.es\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/gaussresearchgroup.uma.es\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gaussresearchgroup.uma.es\/index.php\/wp-json\/wp\/v2\/comments?post=48"}],"version-history":[{"count":28,"href":"https:\/\/gaussresearchgroup.uma.es\/index.php\/wp-json\/wp\/v2\/pages\/48\/revisions"}],"predecessor-version":[{"id":276,"href":"https:\/\/gaussresearchgroup.uma.es\/index.php\/wp-json\/wp\/v2\/pages\/48\/revisions\/276"}],"wp:attachment":[{"href":"https:\/\/gaussresearchgroup.uma.es\/index.php\/wp-json\/wp\/v2\/media?parent=48"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}