[{ "title": null, "path": "/search.json/", "content": "" },{ "title": "Świadomość", "path": "/psychopatologia/swiadomosc/", "content": "Definicja i zaburzenia świadomości.\n" },{ "title": "Funkcje Poznawcze", "path": "/psychopatologia/funkcje-poznawcze/", "content": "Omówienie funkcji poznawczych.\n" },{ "title": "Pamięć", "path": "/psychopatologia/pamiec/", "content": "Rodzaje pamięci i zaburzenia (amnezja, paramnezje).\n" },{ "title": "Emocje", "path": "/psychopatologia/emocje/", "content": "Zaburzenia Emocji: lęk, depresja, mania.\n" },{ "title": "Myślenie", "path": "/psychopatologia/myslenie/", "content": "Tok i treść myślenia. Urojenia, idee nadwartościowe.\nZaburzenia toku myślenia\nZaburzenia toku myślenia dotyczą szybkości i sposobu łączenia wątków myślowych. Mogą objawiać się jako spowolnienie, przyspieszenie (gonitwa myśli) lub zahamowanie.\nSpowolnienie toku myślenia\nCharakteryzuje się wydłużeniem czasu reakcji na pytania, trudnością w podejmowaniu decyzji oraz ubóstwem wypowiedzi. Często występuje w depresji Zhou et al. (2020).\nPrzyspieszenie toku myślenia\nWystępuje w stanach maniakalnych. Pacjent mówi dużo, szybko, często zmienia tematy .\n\n Źródła\n \n \n \n Schneider-Thoma J., \n Chalkou K., \n Dörries C., \n Bighelli I., \n Ceraso A., \n Huhn M., \n Siafis S., \n Davis J., \n Cipriani A., \n Furukawa T., \n Salanti G., \n Leucht S.\n Comparative efficacy and tolerability of 32 oral and long-acting injectable antipsychotics for the maintenance treatment of adults with schizophrenia: a systematic review and network meta-analysis. The Lancet. 2022;399(10327):824--836. doi:10.1016/S0140-6736(21)01997-8\n \n \n \n Huhn M., \n Nikolakopoulou A., \n Schneider-Thoma J., \n Krause M., \n Samara M., \n Peter N., \n Arndt T., \n Bäckers L., \n Rothe P., \n Cipriani A., \n Davis J., \n Salanti G., \n Leucht S.\n Comparative efficacy and tolerability of 32 oral antipsychotics for the acute treatment of adults with multi-episode schizophrenia: a systematic review and network meta-analysis. The Lancet. 2019;394(10202):939--951. doi:10.1016/s0140-6736(19)31135-3\n \n \n \n Zhou X., \n Teng T., \n Zhang Y., \n Giovane C., \n Furukawa T., \n Weisz J., \n Li X., \n Cuijpers P., \n Coghill D., \n Xiang Y., \n Hetrick S., \n Leucht S., \n Qin M., \n Barth J., \n Ravindran A., \n Yang L., \n Curry J., \n Fan L., \n Silva S., \n Cipriani A., \n Xie P.\n Comparative efficacy and acceptability of antidepressants, psychotherapies, and their combination for acute treatment of children and adolescents with depressive disorder: a systematic review and network meta-analysis. The Lancet Psychiatry. 2020;7(7):581--601. doi:10.1016/s2215-0366(20)30137-1\n \n \n \n Bighelli I., \n Rodolico A., \n García-Mieres H., \n Pitschel-Walz G., \n Hansen W., \n Schneider-Thoma J., \n Siafis S., \n Wu H., \n Wang D., \n Salanti G., \n Furukawa T., \n Barbui C., \n Leucht S.\n Psychosocial and psychological interventions for relapse prevention in schizophrenia: a systematic review and network meta-analysis. The Lancet Psychiatry. 2021;8(11):969--980. doi:10.1016/s2215-0366(21)00243-1\n \n \n \n Zhou S., \n Li P., \n Lv X., \n Lai X., \n Liu Z., \n Zhou J., \n Liu F., \n Tao Y., \n Zhang M., \n Yu X., \n Tian J., \n Sun F.\n Adverse effects of 21 antidepressants on sleep during acute-phase treatment in major depressive disorder: a systemic review and dose-effect network meta-analysis. SLEEP. 2023;46(10):zsad177. doi:10.1093/sleep/zsad177\n \n \n \n Nelson E.\n A 12-{Week}, {Double}-{Blind}, {Placebo}-{Controlled}, {Trial} of {Duloxetine} {Versus} {Placebo} in the {Treatment} of {Binge} {Eating} {Disorder} and {Comorbid} {Depressive} {Disorder}.. 2017;(NCT00607789)\n \n\n\n\n document.addEventListener(\"DOMContentLoaded\", function () {\n // 1. Find all citation references on the page\n const citations = document.querySelectorAll('.cite-ref, .cite-ref-text');\n const usedKeys = new Set();\n const keyOrder = []; // To track order of appearance\n\n citations.forEach((cite, index) => {\n const key = cite.getAttribute('data-key');\n if (key) {\n if (!usedKeys.has(key)) {\n usedKeys.add(key);\n keyOrder.push(key);\n }\n\n // If it's a superscript style citation, fill in the number based on order of appearance (unique keys)\n if (cite.classList.contains('cite-ref')) {\n // Find the index in unique keys list (1-based)\n const refIndex = keyOrder.indexOf(key) + 1;\n cite.textContent = `${refIndex}`;\n }\n }\n });\n\n // 2. Unhide used bibliography items and reorder them\n const bibList = document.querySelector('.bibliography-list');\n if (bibList && keyOrder.length > 0) {\n const items = Array.from(bibList.children);\n const itemMap = {};\n\n items.forEach(item => {\n itemMap[item.getAttribute('data-key')] = item;\n item.remove(); // Remove from DOM temporarily to sort\n });\n\n keyOrder.forEach((key, index) => {\n const item = itemMap[key];\n if (item) {\n // Prepend the number for the bibliography entry itself matching the citation number\n const numSpan = document.createElement('span');\n numSpan.className = 'bib-number';\n numSpan.textContent = `${index + 1}. `;\n // Check if it already has a number (idempotency)\n if (!item.querySelector('.bib-number')) {\n item.prepend(numSpan);\n }\n\n item.style.display = 'flex'; // Unhide using flex to keep number next to content\n bibList.appendChild(item); // Append in correct order\n }\n });\n\n // Show container if we have visible items\n document.querySelector('.bibliography-container').style.display = 'block';\n } else {\n // Hide entire container if no citations found\n const container = document.querySelector('.bibliography-container');\n if (container) container.style.display = 'none';\n }\n });\n" },{ "title": "Percepcja", "path": "/psychopatologia/percepcja/", "content": "Zaburzenia spostrzegania: halucynacje, iluzje.\n" },{ "title": "Początek Badania", "path": "/badanie/poczatek/", "content": "Nawiązanie kontaktu, kontrakt.\n" },{ "title": "Części Wywiadu", "path": "/badanie/czesci-wywiadu/", "content": "Struktura wywiadu psychiatrycznego.\n" },{ "title": "Podsumowanie", "path": "/badanie/podsumowanie/", "content": "Synteza danych i diagnoza.\n" },{ "title": "Opis Stanu Psychicznego", "path": "/badanie/opis-stanu-psychicznego/", "content": "Strukturalny opis obecnego stanu pacjenta (Mental Status Examination).\n" },{ "title": "Epizod Depresyjny", "path": "/zaburzenia/nastroju/depresja/", "content": "Kryteria diagnostyczne depresji.\n" },{ "title": "Choroba Afektywna Dwubiegunowa", "path": "/zaburzenia/nastroju/chad/", "content": "Mania, hipomania i depresja.\n" },{ "title": "Schizofrenia", "path": "/zaburzenia/psychotyczne/schizofrenia/", "content": "Objawy pozytywne i negatywne.\n" },{ "title": "Haloperidol", "path": "/leki/przeciwpsychotyczne/haloperidol/", "content": "Klasyczny neuroleptyk.\nFarmakodynamika\n\n\n\n vegaEmbed('#haloperidol-chart', \"https://psyguide.eu/pki/haloperidol.json\", {\n actions: false\n }).catch(console.error);\n" },{ "title": "Olanzapina", "path": "/leki/przeciwpsychotyczne/olanzapina/", "content": "Lek II generacji.\n" },{ "title": "Fluoksetyna (Prozac)", "path": "/leki/przeciwdepresyjne/fluoksetyna/", "content": "Pierwszy lek z grupy SSRI.\n" },{ "title": "Spacer", "path": "", "content": "" } ]