{"id":16541,"date":"2026-01-27T10:58:27","date_gmt":"2026-01-27T03:58:27","guid":{"rendered":"https:\/\/hst.cra.ac.th\/research\/?page_id=16541"},"modified":"2026-03-30T11:36:57","modified_gmt":"2026-03-30T04:36:57","slug":"publications-2026","status":"publish","type":"page","link":"https:\/\/hst.cra.ac.th\/research\/publications-2026\/","title":{"rendered":"Publications 2026"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"16541\" class=\"elementor elementor-16541\">\n\t\t\t\t<div class=\"elementor-element elementor-element-76c7ccd e-flex e-con-boxed rt-default-class e-con e-parent\" data-id=\"76c7ccd\" 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-1ea7025 rt-default-class elementor-widget elementor-widget-html\" data-id=\"1ea7025\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<link\n  rel=\"stylesheet\"\n  href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.5.0\/css\/all.min.css\"\n\/>\n\n<style>\n  :root {\n    --primary: #002f87;\n    --accent: #ff6900;\n    --border: #edf0f5;\n    --text-muted: #64748b;\n    --bg-card: #ffffff;\n  }\n\n  \/* ---------- Typography ---------- *\/\n  @font-face {\n    font-family: \"Chulabhorn Likit\";\n    src: url(\"https:\/\/fonthst.b-cdn.net\/chulabhornlikittext-light.woff2\")\n      format(\"woff2\");\n    font-display: swap;\n  }\n\n  html {\n    font-size: clamp(14px, 1vw + 0.5rem, 16px);\n  }\n\n  \/* ---------- Layout ---------- *\/\n  .reference-container {\n    max-width: 1290px;\n    margin: 120px auto;\n  }\n\n  \/* ---------- Card ---------- *\/\n  .reference-card {\n    position: relative;\n    padding: 25px 24px 25px 28px;\n    margin-bottom: 20px;\n    background: var(--bg-card);\n    border: 1px solid var(--border);\n    \/* border-left: 5px solid var(--primary); *\/\n    border-radius: 12px;\n\n    font-family: \"Chulabhorn Likit\", \"Sarabun\", system-ui, sans-serif;\n\n    transition:\n      transform 0.2s ease,\n      box-shadow 0.2s ease;\n  }\n\n  .reference-card::before {\n    content: \"\";\n    position: absolute;\n    left: 0;\n    top: 0;\n    bottom: 0;\n    width: 5px;\n    background: var(--primary);\n    border-radius: 12px 0 0 12px;\n  }\n\n  .reference-card:hover::before {\n    background: var(--accent);\n  }\n\n  .reference-card:hover {\n    transform: translateX(4px);\n    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);\n  }\n\n  \/* ---------- Card Content ---------- *\/\n  .reference-card__body {\n    display: flex;\n    align-items: flex-start;\n    gap: 15px;\n  }\n\n  .reference-card__label {\n    flex-shrink: 0;\n    font-size: 1rem;\n    font-weight: 700;\n    color: var(--primary);\n  }\n\n  .reference-card__content {\n    margin: 0;\n    font-size: 1rem;\n    text-indent: -2em;\n    padding-left: 2em;\n    line-height: 1.6;\n    color: var(--primary);\n  }\n\n  \/* ---------- Links ---------- *\/\n  .reference-card__author,\n  .reference-card__doi {\n    text-decoration: none;\n  }\n\n  \/* Author (Default Blue Link) *\/\n  .reference-card__author {\n    color: #0000ee;\n  }\n\n  .reference-card__author:hover {\n    color: #0000ee !important;\n    text-decoration: underline !important;\n  }\n\n  \/* DOI *\/\n  .reference-card__doi {\n    font-weight: 600;\n    color: var(--accent);\n    word-break: break-all;\n    transition: opacity 0.15s ease;\n  }\n\n  .reference-card__doi:hover {\n    opacity: 0.8;\n    text-decoration: underline !important;\n  }\n\n  i {\n    text-indent: 0;\n    padding-left: 2px;\n    font-size: 0.8rem;\n  }\n\n  \/* ---------- Pagination ---------- *\/\n  .pagination {\n    display: flex;\n    justify-content: center;\n    gap: 6px;\n    margin-top: 40px;\n  }\n\n  .pagination button {\n    padding: 6px 15px;\n    border-radius: 10px;\n    border: 1px solid var(--primary);\n    background: white;\n    color: var(--primary);\n    cursor: pointer;\n    font-size: 1rem;\n    transition: all 0.15s ease;\n    font-family: \"Chulabhorn Likit\", \"Sarabun\", system-ui, sans-serif;\n  }\n\n  .pagination button:hover {\n    background: var(--primary);\n    color: white;\n  }\n\n  .pagination button.active {\n    background: var(--primary);\n    color: white;\n    font-weight: 600;\n  }\n\n  .pagination button:disabled {\n    opacity: 0.4;\n    cursor: not-allowed;\n  }\n<\/style>\n\n<script>\n  document.addEventListener(\"DOMContentLoaded\", () => {\n    const cards = Array.from(document.querySelectorAll(\".reference-card\"));\n    const pagination = document.getElementById(\"pagination\");\n    const pageSize = 10;\n    let currentPage = 1;\n\n    const totalPages = Math.ceil(cards.length \/ pageSize);\n\n    function renderPage(page) {\n      currentPage = page;\n\n      cards.forEach((card, index) => {\n        card.style.display =\n          index >= (page - 1) * pageSize && index < page * pageSize\n            ? \"block\"\n            : \"none\";\n      });\n\n      renderPagination();\n      window.scrollTo({ top: 0, behavior: \"smooth\" });\n    }\n\n    function renderPagination() {\n      pagination.innerHTML = \"\";\n\n      const prev = document.createElement(\"button\");\n      prev.textContent = \"Prev\";\n      prev.disabled = currentPage === 1;\n      prev.onclick = () => renderPage(currentPage - 1);\n      pagination.appendChild(prev);\n\n      for (let i = 1; i <= totalPages; i++) {\n        const btn = document.createElement(\"button\");\n        btn.textContent = i;\n        if (i === currentPage) btn.classList.add(\"active\");\n        btn.onclick = () => renderPage(i);\n        pagination.appendChild(btn);\n      }\n\n      const next = document.createElement(\"button\");\n      next.textContent = \"Next\";\n      next.disabled = currentPage === totalPages;\n      next.onclick = () => renderPage(currentPage + 1);\n      pagination.appendChild(next);\n    }\n\n    renderPage(1);\n  });\n\n  document.addEventListener(\"DOMContentLoaded\", () => {\n    const cards = Array.from(document.querySelectorAll(\".reference-card\"));\n    const pagination = document.getElementById(\"pagination\");\n    const pageSize = 10;\n    let currentPage = 1;\n\n    \/* AUTO NUMBERING *\/\n    cards.forEach((card, index) => {\n      const label = card.querySelector(\".reference-card__label\");\n      label.textContent = index + 1 + \".\";\n    });\n\n    const totalPages = Math.ceil(cards.length \/ pageSize);\n\n    function renderPage(page) {\n      currentPage = page;\n\n      cards.forEach((card, index) => {\n        card.style.display =\n          index >= (page - 1) * pageSize && index < page * pageSize\n            ? \"block\"\n            : \"none\";\n      });\n\n      renderPagination();\n      window.scrollTo({ top: 0, behavior: \"smooth\" });\n    }\n\n    function renderPagination() {\n      pagination.innerHTML = \"\";\n\n      const prev = document.createElement(\"button\");\n      prev.textContent = \"Prev\";\n      prev.disabled = currentPage === 1;\n      prev.onclick = () => renderPage(currentPage - 1);\n      pagination.appendChild(prev);\n\n      for (let i = 1; i <= totalPages; i++) {\n        const btn = document.createElement(\"button\");\n        btn.textContent = i;\n        if (i === currentPage) btn.classList.add(\"active\");\n        btn.onclick = () => renderPage(i);\n        pagination.appendChild(btn);\n      }\n\n      const next = document.createElement(\"button\");\n      next.textContent = \"Next\";\n      next.disabled = currentPage === totalPages;\n      next.onclick = () => renderPage(currentPage + 1);\n      pagination.appendChild(next);\n    }\n\n    renderPage(1);\n  });\n<\/script>\n\n<div class=\"reference-container\">\n  <div class=\"reference-container\">\n    <div class=\"reference-container\">\n      <!-- 7 -->\n      <div class=\"reference-card\">\n        <div class=\"reference-card__body\">\n          <span class=\"reference-card__label\"><\/span>\n          <p class=\"reference-card__content\">\n            Watanabe, N., Yoshida, S.,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Keerativittayayut, R.<\/a\n            >, & Takeda, M. (2026).\n            <strong\n              >Neural signatures of human psychological resilience driven by\n              acute stress.<\/strong\n            >\n            <em>Proceedings of the National Academy of Sciences, 123<\/em>(13).\n            <a\n              href=\"https:\/\/doi.org\/10.1073\/pnas.2524075123\"\n              class=\"reference-card__doi\"\n              aria-label=\"View article on publisher website\"\n              target=\"_blank\"\n            >\n              https:\/\/doi.org\/10.1073\/pnas.2524075123\n              <i class=\"fa-solid fa-arrow-up-right-from-square\"><\/i>\n            <\/a>\n          <\/p>\n        <\/div>\n      <\/div>\n\n      <!-- 6 -->\n      <div class=\"reference-card\">\n        <div class=\"reference-card__body\">\n          <span class=\"reference-card__label\"><\/span>\n          <p class=\"reference-card__content\">\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Pairodsantikul, P.<\/a\n            >, Matsushita, M., Takahashi, M., Kim, K. M., Watabe, H., Nivorn,\n            M.,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Wongsa, P.<\/a\n            >, & Shidahara, M. (2026).\n            <strong\n              >Development of energy deposition pixel kernel convolution for\n              planar dosimetry in \u00b9\u2077\u2077Lu therapy.<\/strong\n            >\n            <em>Annals of Nuclear Medicine<\/em>.\n            <a\n              href=\"https:\/\/doi.org\/10.1007\/s12149-026-02191-3\"\n              class=\"reference-card__doi\"\n              aria-label=\"View article on publisher website\"\n              target=\"_blank\"\n            >\n              https:\/\/doi.org\/10.1007\/s12149-026-02191-3\n              <i class=\"fa-solid fa-arrow-up-right-from-square\"><\/i>\n            <\/a>\n          <\/p>\n        <\/div>\n      <\/div>\n\n      <!-- 5 -->\n      <div class=\"reference-card\">\n        <div class=\"reference-card__body\">\n          <span class=\"reference-card__label\"><\/span>\n          <p class=\"reference-card__content\">\n            Hamann, S. L.,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Wongsuriyanan, C.<\/a\n            >, Kungskulniti, N., Ruangkanchanasetr, S., Kasemsup, V., &\n            Jongkhajornpong, P. (2026).\n            <strong\n              >Appeals of deceit from the tobacco companies: Rejecting tobacco\n              industry influence in Thailand.<\/strong\n            >\n            <em>Asian Pacific Journal of Cancer Prevention, 27<\/em>(1), 29\u201335.\n            <a\n              href=\"https:\/\/doi.org\/10.31557\/APJCP.2026.27.1.29\"\n              class=\"reference-card__doi\"\n              aria-label=\"View article on publisher website\"\n              target=\"_blank\"\n            >\n              https:\/\/doi.org\/10.31557\/APJCP.2026.27.1.29\n              <i class=\"fa-solid fa-arrow-up-right-from-square\"><\/i>\n            <\/a>\n          <\/p>\n        <\/div>\n      <\/div>\n\n      <!-- 4 -->\n      <div class=\"reference-card\">\n        <div class=\"reference-card__body\">\n          <span class=\"reference-card__label\"><\/span>\n          <p class=\"reference-card__content\">\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Kanoksin, S.<\/a\n            >, & Techapongsatorn, S. (2026).\n            <strong\n              >Development and evaluation of a modular smoke evacuator for\n              surgical smoke control.<\/strong\n            >\n            <em>PLOS One, 21<\/em>(1), e0341110.\n            <a\n              href=\"https:\/\/doi.org\/10.1371\/journal.pone.0341110\"\n              class=\"reference-card__doi\"\n              aria-label=\"View article on publisher website\"\n              target=\"_blank\"\n            >\n              https:\/\/doi.org\/10.1371\/journal.pone.0341110\n              <i class=\"fa-solid fa-arrow-up-right-from-square\"><\/i>\n            <\/a>\n          <\/p>\n        <\/div>\n      <\/div>\n\n      <!-- 3 -->\n      <div class=\"reference-card\">\n        <div class=\"reference-card__body\">\n          <span class=\"reference-card__label\"><\/span>\n          <p class=\"reference-card__content\">\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Sirituenlee, C.<\/a\n            >,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Kraison, S.<\/a\n            >,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Wongpan, P.<\/a\n            >,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Supawarapong, P.<\/a\n            >,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Pataraphitakpong, T.<\/a\n            >,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Kawvised, S.<\/a\n            >,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Kittipayak, S.<\/a\n            >, &\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Phonlakrai, M.<\/a\n            >\n            (2026).\n            <strong\n              >Comparison of low-iodine concentration quantification accuracy\n              and contrast-to-noise ratio across three dual-energy CT\n              techniques: A phantom study.<\/strong\n            >\n            <em>Journal of Medical Radiation Sciences<\/em>, 1\u20139.\n            <a\n              href=\"https:\/\/doi.org\/10.1002\/jmrs.70070\"\n              class=\"reference-card__doi\"\n              aria-label=\"View article on publisher website\"\n              target=\"_blank\"\n            >\n              https:\/\/doi.org\/10.1002\/jmrs.70070\n              <i class=\"fa-solid fa-arrow-up-right-from-square\"><\/i>\n            <\/a>\n          <\/p>\n        <\/div>\n      <\/div>\n\n      <!-- 2 -->\n      <div class=\"reference-card\">\n        <div class=\"reference-card__body\">\n          <span class=\"reference-card__label\"><\/span>\n          <p class=\"reference-card__content\">\n            Areerak, K.,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Waongenngarm, P.<\/a\n            >, & Janwantanakul, P. (2026).\n            <strong\n              >Health behavior for preventing non-specific neck pain in office\n              workers: Influencing factors.<\/strong\n            >\n            <em>International Journal of Occupational Safety and Ergonomics<\/em\n            >, 1\u20135.\n            <a\n              href=\"https:\/\/doi.org\/10.1080\/10803548.2026.2615540\"\n              class=\"reference-card__doi\"\n              aria-label=\"View article on publisher website\"\n              target=\"_blank\"\n            >\n              https:\/\/doi.org\/10.1080\/10803548.2026.2615540\n              <i class=\"fa-solid fa-arrow-up-right-from-square\"><\/i>\n            <\/a>\n          <\/p>\n        <\/div>\n      <\/div>\n\n      <!-- 1 -->\n      <div class=\"reference-card\">\n        <div class=\"reference-card__body\">\n          <span class=\"reference-card__label\"><\/span>\n          <p class=\"reference-card__content\">\n            Intarawichian, S., Thiennviboon, P.,\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Laothamatas, J.<\/a\n            >, &\n            <a href=\"#\" class=\"reference-card__author\" target=\"_blank\"\n              >Sungkarat, W.<\/a\n            >\n            (2026).\n            <strong\n              >EnsembleNet: Single-channel EEG sleep stage classification based\n              on ensemble architecture of deep convolutional neural\n              networks.<\/strong\n            >\n            <em>IEEE Access<\/em>, 1\u20131.\n            <a\n              href=\"https:\/\/doi.org\/10.1109\/ACCESS.2026.3655811\"\n              class=\"reference-card__doi\"\n              aria-label=\"View article on publisher website\"\n              target=\"_blank\"\n            >\n              https:\/\/doi.org\/10.1109\/ACCESS.2026.3655811\n              <i class=\"fa-solid fa-arrow-up-right-from-square\"><\/i>\n            <\/a>\n          <\/p>\n        <\/div>\n      <\/div>\n\n      <div class=\"pagination\" id=\"pagination\"><\/div>\n    <\/div>\n  <\/div>\n<\/div>\n\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>Watanabe, N., Yoshida, S., Keerativittayayut, R., &#038; Takeda, M. (2026). Neural signatures of human psychological resilience driven by acute stress. Proceedings of the National Academy of Sciences, 123(13). https:\/\/doi.org\/10.1073\/pnas.2524075123 Pairodsantikul,&#8230;<\/p>\n","protected":false},"author":5,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-16541","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Publications 2026 - Research and Innovation Faculty of Health Science Technology<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hst.cra.ac.th\/research\/publications-2026\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Publications 2026 - Research and Innovation Faculty of Health Science Technology\" \/>\n<meta property=\"og:description\" content=\"Watanabe, N., Yoshida, S., Keerativittayayut, R., &#038; Takeda, M. (2026). Neural signatures of human psychological resilience driven by acute stress. Proceedings of the National Academy of Sciences, 123(13). https:\/\/doi.org\/10.1073\/pnas.2524075123 Pairodsantikul,...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hst.cra.ac.th\/research\/publications-2026\/\" \/>\n<meta property=\"og:site_name\" content=\"Research and Innovation Faculty of Health Science Technology\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-30T04:36:57+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/hst.cra.ac.th\\\/research\\\/publications-2026\\\/\",\"url\":\"https:\\\/\\\/hst.cra.ac.th\\\/research\\\/publications-2026\\\/\",\"name\":\"Publications 2026 - Research and Innovation Faculty of Health Science Technology\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hst.cra.ac.th\\\/research\\\/#website\"},\"datePublished\":\"2026-01-27T03:58:27+00:00\",\"dateModified\":\"2026-03-30T04:36:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/hst.cra.ac.th\\\/research\\\/publications-2026\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/hst.cra.ac.th\\\/research\\\/publications-2026\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/hst.cra.ac.th\\\/research\\\/publications-2026\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/hst.cra.ac.th\\\/research\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Publications 2026\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/hst.cra.ac.th\\\/research\\\/#website\",\"url\":\"https:\\\/\\\/hst.cra.ac.th\\\/research\\\/\",\"name\":\"Research and Innovation Faculty of Health Science Technology\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/hst.cra.ac.th\\\/research\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Publications 2026 - Research and Innovation Faculty of Health Science Technology","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hst.cra.ac.th\/research\/publications-2026\/","og_locale":"en_US","og_type":"article","og_title":"Publications 2026 - Research and Innovation Faculty of Health Science Technology","og_description":"Watanabe, N., Yoshida, S., Keerativittayayut, R., &#038; Takeda, M. (2026). Neural signatures of human psychological resilience driven by acute stress. Proceedings of the National Academy of Sciences, 123(13). https:\/\/doi.org\/10.1073\/pnas.2524075123 Pairodsantikul,...","og_url":"https:\/\/hst.cra.ac.th\/research\/publications-2026\/","og_site_name":"Research and Innovation Faculty of Health Science Technology","article_modified_time":"2026-03-30T04:36:57+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/hst.cra.ac.th\/research\/publications-2026\/","url":"https:\/\/hst.cra.ac.th\/research\/publications-2026\/","name":"Publications 2026 - Research and Innovation Faculty of Health Science Technology","isPartOf":{"@id":"https:\/\/hst.cra.ac.th\/research\/#website"},"datePublished":"2026-01-27T03:58:27+00:00","dateModified":"2026-03-30T04:36:57+00:00","breadcrumb":{"@id":"https:\/\/hst.cra.ac.th\/research\/publications-2026\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hst.cra.ac.th\/research\/publications-2026\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hst.cra.ac.th\/research\/publications-2026\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hst.cra.ac.th\/research\/"},{"@type":"ListItem","position":2,"name":"Publications 2026"}]},{"@type":"WebSite","@id":"https:\/\/hst.cra.ac.th\/research\/#website","url":"https:\/\/hst.cra.ac.th\/research\/","name":"Research and Innovation Faculty of Health Science Technology","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hst.cra.ac.th\/research\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/hst.cra.ac.th\/research\/wp-json\/wp\/v2\/pages\/16541","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hst.cra.ac.th\/research\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/hst.cra.ac.th\/research\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/hst.cra.ac.th\/research\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/hst.cra.ac.th\/research\/wp-json\/wp\/v2\/comments?post=16541"}],"version-history":[{"count":58,"href":"https:\/\/hst.cra.ac.th\/research\/wp-json\/wp\/v2\/pages\/16541\/revisions"}],"predecessor-version":[{"id":18645,"href":"https:\/\/hst.cra.ac.th\/research\/wp-json\/wp\/v2\/pages\/16541\/revisions\/18645"}],"wp:attachment":[{"href":"https:\/\/hst.cra.ac.th\/research\/wp-json\/wp\/v2\/media?parent=16541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}