{"id":565,"date":"2026-05-05T13:55:10","date_gmt":"2026-05-05T11:55:10","guid":{"rendered":"https:\/\/grupo.us.es\/termotecnia\/?page_id=565"},"modified":"2026-06-25T11:34:58","modified_gmt":"2026-06-25T09:34:58","slug":"articulos-docencia","status":"publish","type":"page","link":"https:\/\/grupo.us.es\/termotecnia\/?page_id=565","title":{"rendered":"Art\u00edculos (docencia)"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"565\" class=\"elementor elementor-565\">\n\t\t\t\t<div class=\"elementor-element elementor-element-83f5462 e-con e-atomic-element e-flexbox-base e-4deeecf \" data-id=\"83f5462\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"83f5462\">\n    <div class=\"elementor-element elementor-element-889f796 e-con e-atomic-element e-flexbox-base e-f133b61 \" data-id=\"889f796\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"889f796\">\n    \t\t<div class=\"elementor-element elementor-element-1bfd8e8 elementor-widget elementor-widget-html\" data-id=\"1bfd8e8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"contenedor-filtros\">\n  <div class=\"campo-filtro\">\n    <label for=\"selector-ano\">A\u00f1o de publicaci\u00f3n<\/label>\n    <select id=\"selector-ano\">\n      <option value=\"todos\">Todos los a\u00f1os<\/option>\n      <option value=\"2026\">2026<\/option>\n      <option value=\"2025\">2025<\/option>\n      <option value=\"2024\">2024<\/option>\n      <option value=\"2023\">2023<\/option>\n      <option value=\"2022\">2022<\/option>\n    <\/select>\n  <\/div>\n\n  <div class=\"campo-filtro\">\n    <label for=\"selector-linea\">Proyecto<\/label>\n    <select id=\"selector-linea\">\n      <option value=\"todos\">Todos los proyectos<\/option>\n      <option value=\"linea-qanat\">Cartuja Qanat<\/option>\n      <option value=\"linea-cosmic\">COSMIC<\/option>\n      <option value=\"linea-life\">Life WATERCOOL<\/option>\n      <option value=\"linea-constancy\">Constancy<\/option>\n      <option value=\"linea-naturbeam\">NATURBEAM<\/option>\n       <option value=\"linea-medecosure\">Med-EcoSuRe<\/option>\n      \n    <\/select>\n  <\/div>\n\n  <div class=\"botones-filtro\">\n    <button id=\"btn-limpiar\" type=\"button\">LIMPIAR<\/button>\n    <button id=\"btn-filtrar\" type=\"button\">FILTRAR<\/button>\n  <\/div>\n<\/div>\n\n<style>\n\n  .contenedor-filtros {\n    padding: 10px;\n    border: 1px solid #c9d6dc;\n    background: #ffffff;\n    font-family: \"poppins\", sans-serif;\n    box-sizing: border-box;\n    border-radius: 4px;\n    margin-bottom: 20px;\n  }\n  .campo-filtro {\n    margin-bottom: 20px;\n  }\n  .campo-filtro label {\n    display: block;\n    font-size: 12px;\n    color: #34495e;\n    margin-bottom: 8px;\n    font-weight: bold;\n  }\n  .campo-filtro select {\n    width: 100%;\n    padding: 8px 0;\n    border: none;\n    border-bottom: 1px solid #34495e;\n    background: transparent;\n    font-size: 14px;\n    color: #333;\n    outline: none;\n    cursor: pointer;\n  }\n  .botones-filtro {\n    display: flex;\n    gap: 0px;\n    margin-top: 25px;\n    width: 50%;\n  }\n  #btn-limpiar, #btn-filtrar {\n    flex: 1;\n    padding: 8px 5px;\n    font-size: 12px;\n    font-weight: bold;\n    cursor: pointer;\n    border-radius: 4px;\n    text-align: center;\n    white-space: nowrap;\n    transition: background 0.2s ease;\n  }\n  #btn-limpiar {\n    background: transparent;\n    border: 1px solid #ccc;\n    color: #34495e;\n  }\n  #btn-filtrar {\n    background: #1c2833;\n    border: 1px solid #1c2833;\n    color: #ffffff;\n  }\n  #btn-filtrar:hover { background: #34495e; border-color: #34495e; }\n  #btn-limpiar:hover { background: #f5f5f5; }\n<\/style>\n\n<script>\ndocument.addEventListener('DOMContentLoaded', () => {\n  const itemsPerPage = 5; \n  const listElement = document.getElementById('pub-list');\n  const paginationElement = document.getElementById('pagination');\n  \n  const btnFiltrar = document.getElementById('btn-filtrar');\n  const btnLimpiar = document.getElementById('btn-limpiar');\n  const selectorAno = document.getElementById('selector-ano');\n  const selectorLinea = document.getElementById('selector-linea');\n\n  if (!listElement || !paginationElement) return;\n\n  const allItems = Array.from(listElement.getElementsByClassName('publication-item'));\n  let filteredItems = [...allItems]; \n  let currentPage = 1;\n\n  function ejecutarFiltros() {\n    const anoSeleccionado = selectorAno.value; \n    const lineaSeleccionada = selectorLinea.value; \n\n    filteredItems = allItems.filter(item => {\n      const itemYear = item.getAttribute('data-ano') || \"\";\n      const itemProyecto = item.getAttribute('data-proyecto') || \"\";\n\n      const coincideAno = (anoSeleccionado === 'todos' || itemYear === anoSeleccionado);\n      const coincideLinea = (lineaSeleccionada === 'todos' || itemProyecto === lineaSeleccionada);\n\n      return coincideAno && coincideLinea;\n    });\n\n    allItems.forEach(item => item.style.display = 'none');\n    currentPage = 1;\n    displayPage(1);\n  }\n\n  function displayPage(page) {\n    if (filteredItems.length === 0) {\n      paginationElement.innerHTML = '<span style=\"color: #6c7e8e; font-size: 14px; text-align:center; width:100%; display:block;\">No se encontraron publicaciones.<\/span>';\n      return;\n    }\n\n    currentPage = page;\n    const start = (page - 1) * itemsPerPage;\n    const end = start + itemsPerPage;\n\n    filteredItems.forEach((item, index) => {\n      if (index >= start && index < end) {\n        item.style.display = 'grid'; \n      } else {\n        item.style.display = 'none'; \n      }\n    });\n\n    updatePaginationButtons();\n  }\n\n  function updatePaginationButtons() {\n    paginationElement.innerHTML = '';\n    const pageCount = Math.ceil(filteredItems.length \/ itemsPerPage);\n\n    if (pageCount <= 1) return;\n\n    const prevBtn = document.createElement('button');\n    prevBtn.classList.add('pagination-btn');\n    prevBtn.innerHTML = '<i class=\"fa-solid fa-chevron-left\"><\/i>';\n    prevBtn.disabled = currentPage === 1;\n    prevBtn.addEventListener('click', () => {\n      displayPage(currentPage - 1);\n      listElement.scrollIntoView({ behavior: 'smooth' });\n    });\n    paginationElement.appendChild(prevBtn);\n\n    for (let i = 1; i <= pageCount; i++) {\n      const pageBtn = document.createElement('button');\n      pageBtn.classList.add('pagination-btn');\n      pageBtn.innerText = i;\n      if (i === currentPage) pageBtn.classList.add('active');\n      \n      pageBtn.addEventListener('click', () => {\n        displayPage(i);\n        listElement.scrollIntoView({ behavior: 'smooth' });\n      });\n      paginationElement.appendChild(pageBtn);\n    }\n\n    const nextBtn = document.createElement('button');\n    nextBtn.classList.add('pagination-btn');\n    nextBtn.innerHTML = '<i class=\"fa-solid fa-chevron-right\"><\/i>';\n    nextBtn.disabled = currentPage === pageCount;\n    nextBtn.addEventListener('click', () => {\n      displayPage(currentPage + 1);\n      listElement.scrollIntoView({ behavior: 'smooth' });\n    });\n    paginationElement.appendChild(nextBtn);\n  }\n\n  if (btnFiltrar) btnFiltrar.addEventListener('click', (e) => { e.preventDefault(); ejecutarFiltros(); });\n  \n  if (btnLimpiar) {\n    btnLimpiar.addEventListener('click', (e) => {\n      e.preventDefault();\n      selectorAno.value = 'todos';\n      selectorLinea.value = 'todos';\n      filteredItems = [...allItems]; \n      allItems.forEach(item => item.style.display = 'none');\n      currentPage = 1;\n      displayPage(1);\n    });\n  }\n\n  displayPage(1);\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-0b041a4 e-con e-atomic-element e-flexbox-base e-76d48c3 \" data-id=\"0b041a4\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"0b041a4\">\n    \t\t<div class=\"elementor-element elementor-element-97444c0 elementor-widget__width-initial elementor-widget elementor-widget-html\" data-id=\"97444c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<html lang=\"es\">\r\n<head>\r\n<meta charset=\"UTF-8\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n<title>Lista de Publicaciones<\/title>\r\n<link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0\/css\/all.min.css\">\r\n<style>\r\n\/* --- ADAPTACI\u00d3N RESPONSIVE PARA M\u00d3VILES --- *\/\r\n@media only screen and (max-width: 768px) {\r\n  .publication-item {\r\n    \/* Cambiamos las 3 columnas por una sola columna vertical *\/\r\n    grid-template-columns: 1fr !important; \r\n    gap: 12px !important; \/* Estrechamos el espacio entre elementos *\/\r\n    padding: 15px 20px !important;\r\n  }\r\n\r\n  .pub-year {\r\n    \/* El a\u00f1o se queda arriba resaltado *\/\r\n    margin-bottom: 2px !important;\r\n  }\r\n\r\n  .pub-metadata {\r\n    \/* Los metadatos pasan a tener una sola columna fluida si es necesario *\/\r\n    grid-template-columns: 20px 1fr !important;\r\n    gap: 8px 10px !important;\r\n  }\r\n\r\n  .doi-link {\r\n    \/* El bot\u00f3n DOI se baja abajo del todo y se alinea a la izquierda de forma natural *\/\r\n    grid-column: 1 !important; \r\n    justify-self: start !important; \r\n    margin-top: 10px !important;\r\n    width: auto !important; \/* Evita que ocupe toda la pantalla de forma fea *\/\r\n  }\r\n}\r\n  body {\r\n    background-color: #f4f7f6;\r\n    padding: 20px;\r\n\r\n  }\r\n\r\n  \/* --- Contenedor de la Lista Principal --- *\/\r\n  .publication-list {\r\n    background-color: #ffffff;\r\n    border: 1px solid #c9d6dc; \/* Borde exterior gris azulado *\/\r\n    border-radius: 4px;\r\n    box-shadow: 0 2px 4px rgba(0,0,0,0.05);\r\n    overflow: hidden; \/* Para que los bordes interiores no sobresalgan *\/\r\n  }\r\n\r\n  \/* --- Contenedor de cada Fila de Publicaci\u00f3n --- *\/\r\n  .publication-item {\r\n    display: grid;\r\n    grid-template-columns: 80px 1fr auto; \/* A\u00f1o, T\u00edtulo+Metadatos, DOI *\/\r\n    gap: 20px;\r\n    padding: 20px 25px;\r\n    align-items: start; \/* Alineaci\u00f3n superior *\/\r\n    border-bottom: 2px solid #566775; \/* Borde inferior m\u00e1s grueso de la fila *\/\r\n \r\n}\r\n  \/* --- Clases Espec\u00edficas para cada Elemento --- *\/\r\n\r\n  .pub-year {\r\n    color: lightblue; \r\n    font-size: 16px;\r\n    font-weight: 500;\r\n  }\r\n\r\n  \/* Contenedor central (T\u00edtulo y Metadatos) *\/\r\n  .pub-content {\r\n    display: flex;\r\n    flex-direction: column;\r\n  }\r\n\r\n  \/* T\u00edtulo del art\u00edculo *\/\r\n  .pub-title {\r\n    color: #333d47; \/* Color de texto oscuro *\/\r\n    font-size: 14px;\r\n    line-height: 1;\r\n    margin: 0 0 15px 0; \/* Margen inferior para separar de los autores *\/\r\n  }\r\n\r\n  \/* Contenedor de Metadatos (Autores y Journal) *\/\r\n  .pub-metadata {\r\n    display: grid;\r\n    grid-template-columns: auto 1fr; \/* Icono, Texto *\/\r\n    gap: 12px 10px; \r\n    align-items: center;\r\n  }\r\n\r\n  \/* Iconos generales de metadatos *\/\r\n  .metadata-icon {\r\n    font-size: 14px;\r\n    color: #6c7e8e; \/* Color de icono gris azulado *\/\r\n    width: 20px; \/* Ancho fijo para alineaci\u00f3n *\/\r\n    text-align: center;\r\n  }\r\n\r\n  \/* Texto de Autores *\/\r\n  .pub-authors {\r\n    color: #6c7e8e; \/* Color de texto gris *\/\r\n    font-size: 13px;\r\n    line-height: 1.4;\r\n  }\r\n\r\n  \/* Texto del Journal *\/\r\n  .pub-journal {\r\n    color: #6c7e8e; \/* Color de texto gris *\/\r\n    font-size: 14px;\r\n    font-weight: 500;\r\n  }\r\n\r\n  \/* --- Bot\u00f3n DOI --- *\/\r\n  .doi-link {\r\n    grid-column: 3; \/* Asegurar que se mantenga en la tercera columna *\/\r\n    justify-self: end; \/* Alinear a la derecha *\/\r\n    background-color: blue; \/* Color de fondo oscuro del bot\u00f3n *\/\r\n    color: #ffffff; \/* Texto blanco *\/\r\n    border: none;\r\n    padding: 8px 16px;\r\n    border-radius: 4px;\r\n    text-decoration: none;\r\n    font-size: 12px;\r\n    font-weight: 600;\r\n    display: flex;\r\n    align-items: center;\r\n    gap: 6px; \/* Espacio entre icono y texto *\/\r\n    transition: background-color 0.2s ease;\r\n  }\r\n\r\n  \/* Efecto hover opcional para el bot\u00f3n *\/\r\n  .doi-link:hover {\r\n    background-color: #3e4b58;\r\n  }\r\n\/* --- CONTENEDOR DE LA PAGINACI\u00d3N --- *\/\r\n  .pagination-container {\r\n    display: flex;\r\n    justify-content: center;\r\n    align-items: center;\r\n    gap: 8px;\r\n    margin-top: 30px;\r\n    margin-bottom: 20px;\r\n  }\r\n\r\n  .pagination-btn {\r\n    background-color: #ffffff;\r\n    color: #333d47;\r\n    border: 1px solid #c9d6dc;\r\n    padding: 8px 14px;\r\n    border-radius: 4px;\r\n    cursor: pointer;\r\n    font-size: 14px;\r\n    font-weight: 600;\r\n    transition: all 0.2s ease;\r\n  }\r\n\r\n  .pagination-btn:hover {\r\n    background-color: #f4f7f6;\r\n    border-color: #566775;\r\n  }\r\n\r\n  .pagination-btn.active {\r\n    background-color: blue;\r\n    color: #ffffff;\r\n    border-color: blue;\r\n  }\r\n\r\n  .pagination-btn:disabled {\r\n    background-color: #e2e8f0;\r\n    color: #94a3b8;\r\n    cursor: not-allowed;\r\n    border-color: #cbd5e1;\r\n  }\r\n<\/style>\r\n<\/head>\r\n<body>\r\n\r\n        <div id=\"pub-list\" class=\"publication-list\">\r\n\r\n  <div class=\"publication-item\" data-ano=\"2023\" data-proyecto=\"linea-qanat\">\r\n    <div class=\"pub-year\">2023<\/div>\r\n    \r\n    <div class=\"pub-content\">\r\n      <h6 class=\"pub-title\">Proyecto Europeo Cartuja Qanat como aula: Aplicaci\u00f3n del aprendizaje de campo como estrategia educativa<\/h6>\r\n      \r\n      <div class=\"pub-metadata\">\r\n        <i class=\"fa-solid fa-user metadata-icon\"><\/i>\r\n        <div class=\"pub-authors\">Rafael Monge Palma, Teresa Palomo Amores, Paz Montero Guti\u00e9rrez, M\u00aa del Carmen Guerrero Delgado, Jos\u00e9 S\u00e1nchez Ramos, Servando \u00c1lvarez Dom\u00ednguez<\/div>\r\n        \r\n        <i class=\"fa-solid fa-book-open metadata-icon\"><\/i>\r\n        <div class=\"pub-journal\">Revista del Congr\u00e9s Internacional de Doc\u00e8ncia Universitaria i Innovaci\u00f3 (CIDUI)<\/div>\r\n      <\/div>\r\n    <\/div>\r\n    \r\n    <a href=\"https:\/\/raco.cat\/index.php\/RevistaCIDUI\/article\/view\/417326\/517988\" class=\"doi-link\">\r\n      <i class=\"fa-solid fa-link\"><\/i>\r\n      LINK\r\n    <\/a>\r\n  <\/div>\r\n  \r\n   \r\n\r\n  <div class=\"publication-item\" data-ano=\"2021\" data-proyecto=\"\">\r\n    <div class=\"pub-year\">2021<\/div>\r\n    \r\n    <div class=\"pub-content\">\r\n      <h6 class=\"pub-title\">Mapas conceptuales como metodolog\u00eda de aprendizaje activo en la ense\u00f1anza superior<\/h6>\r\n      \r\n      <div class=\"pub-metadata\">\r\n        <i class=\"fa-solid fa-user metadata-icon\"><\/i>\r\n        <div class=\"pub-authors\">M\u00aa del Carmen Guerrero Delgado, Jos\u00e9 S\u00e1nchez Ramos, Teresa Palomo Amores, Daniel Castro Medina, Servando \u00c1lvarez Dom\u00ednguez<\/div>\r\n        \r\n        <i class=\"fa-solid fa-book-open metadata-icon\"><\/i>\r\n        <div class=\"pub-journal\">Revista del Congr\u00e9s Internacional de Doc\u00e8ncia Universitaria i Innovaci\u00f3 (CIDUI)<\/div>\r\n      <\/div>\r\n    <\/div>\r\n    \r\n    <a href=\"https:\/\/dialnet.unirioja.es\/servlet\/articulo?codigo=8514480\" class=\"doi-link\">\r\n      <i class=\"fa-solid fa-link\"><\/i>\r\n      LINK\r\n    <\/a>\r\n  <\/div>\r\n<\/div>\r\n\r\n<script>\r\n  document.addEventListener('DOMContentLoaded', () => {\r\n    \r\n    const itemsPerPage = 5; \r\n    const listElement = document.getElementById('pub-list');\r\n    const paginationElement = document.getElementById('pagination');\r\n\r\n    if (!listElement || !paginationElement) {\r\n      console.error(\"Error: No se encontraron los contenedores en el HTML.\");\r\n      return;\r\n    }\r\n\r\n    const items = Array.from(listElement.getElementsByClassName('publication-item'));\r\n    let currentPage = 1;\r\n    const pageCount = Math.ceil(items.length \/ itemsPerPage);\r\n\r\n    \/\/ FUNCI\u00d3N PARA MOSTRAR LA P\u00c1GINA SELECCIONADA\r\n    function displayPage(page) {\r\n      currentPage = page;\r\n      const start = (page - 1) * itemsPerPage;\r\n      const end = start + itemsPerPage;\r\n\r\n      items.forEach((item, index) => {\r\n        if (index >= start && index < end) {\r\n          item.style.display = 'grid'; \r\n        } else {\r\n          item.style.display = 'none'; \r\n        }\r\n      });\r\n\r\n      updatePaginationButtons();\r\n\r\n      \/\/ HACE EL SCROLL AUTOM\u00c1TICO AL PRINCIPIO DE LA LISTA\r\n      listElement.scrollIntoView({ behavior: 'smooth' });\r\n    }\r\n\r\n    \/\/ FUNCI\u00d3N PARA CREAR LOS BOTONES EN EL HTML\r\n    function updatePaginationButtons() {\r\n      paginationElement.innerHTML = '';\r\n\r\n      \/\/ Bot\u00f3n Anterior\r\n      const prevBtn = document.createElement('button');\r\n      prevBtn.classList.add('pagination-btn');\r\n      prevBtn.innerHTML = '<i class=\"fa-solid fa-chevron-left\"><\/i>';\r\n      prevBtn.disabled = currentPage === 1;\r\n      prevBtn.addEventListener('click', () => displayPage(currentPage - 1));\r\n      paginationElement.appendChild(prevBtn);\r\n\r\n      \/\/ Botones con n\u00fameros de p\u00e1gina\r\n      for (let i = 1; i <= pageCount; i++) {\r\n        const pageBtn = document.createElement('button');\r\n        pageBtn.classList.add('pagination-btn');\r\n        pageBtn.innerText = i;\r\n        if (i === currentPage) {\r\n          pageBtn.classList.add('active');\r\n        }\r\n        \r\n        pageBtn.addEventListener('click', () => displayPage(i));\r\n        paginationElement.appendChild(pageBtn);\r\n      }\r\n\r\n      \/\/ Bot\u00f3n Siguiente\r\n      const nextBtn = document.createElement('button');\r\n      nextBtn.classList.add('pagination-btn');\r\n      nextBtn.innerHTML = '<i class=\"fa-solid fa-chevron-right\"><\/i>';\r\n      nextBtn.disabled = currentPage === pageCount;\r\n      nextBtn.addEventListener('click', () => displayPage(currentPage + 1));\r\n      paginationElement.appendChild(nextBtn);\r\n    }\r\n\r\n    \/\/ Inicializar mostrando la primera p\u00e1gina\r\n    if (items.length > 0) {\r\n      displayPage(1);\r\n    }\r\n  });\r\n<\/script>\r\n\r\n <\/body>\r\n<\/html>\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-cc25890 e-flex e-con-boxed e-con e-parent\" data-id=\"cc25890\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4fe000c elementor-widget elementor-widget-spacer\" data-id=\"4fe000c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>A\u00f1o de publicaci\u00f3n Todos los a\u00f1os20262025202420232022 Proyecto Todos los proyectosCartuja QanatCOSMICLife WATERCOOLConstancyNATURBEAMMed-EcoSuRe LIMPIAR FILTRAR Lista de Publicaciones 2023 Proyecto Europeo Cartuja Qanat como aula: Aplicaci\u00f3n del aprendizaje de campo como estrategia educativa Rafael Monge Palma, Teresa Palomo Amores, Paz Montero Guti\u00e9rrez, M\u00aa del Carmen Guerrero Delgado, Jos\u00e9 S\u00e1nchez Ramos, Servando [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-565","page","type-page","status-publish","hentry"],"rttpg_featured_image_url":null,"rttpg_author":{"display_name":"grupo_termotecnia","author_link":"https:\/\/grupo.us.es\/termotecnia\/?author=1"},"rttpg_comment":0,"rttpg_category":null,"rttpg_excerpt":"A\u00f1o de publicaci\u00f3n Todos los a\u00f1os20262025202420232022 Proyecto Todos los proyectosCartuja QanatCOSMICLife WATERCOOLConstancyNATURBEAMMed-EcoSuRe LIMPIAR FILTRAR Lista de Publicaciones 2023 Proyecto Europeo Cartuja Qanat como aula: Aplicaci\u00f3n del aprendizaje de campo como estrategia educativa Rafael Monge Palma, Teresa Palomo Amores, Paz Montero Guti\u00e9rrez, M\u00aa del Carmen Guerrero Delgado, Jos\u00e9 S\u00e1nchez Ramos, Servando [&hellip;]","_links":{"self":[{"href":"https:\/\/grupo.us.es\/termotecnia\/index.php?rest_route=\/wp\/v2\/pages\/565","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/grupo.us.es\/termotecnia\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/grupo.us.es\/termotecnia\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/grupo.us.es\/termotecnia\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/grupo.us.es\/termotecnia\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=565"}],"version-history":[{"count":20,"href":"https:\/\/grupo.us.es\/termotecnia\/index.php?rest_route=\/wp\/v2\/pages\/565\/revisions"}],"predecessor-version":[{"id":1069,"href":"https:\/\/grupo.us.es\/termotecnia\/index.php?rest_route=\/wp\/v2\/pages\/565\/revisions\/1069"}],"wp:attachment":[{"href":"https:\/\/grupo.us.es\/termotecnia\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=565"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}