Give me important points from this slide in easy language
cd /home/daytona/workspace/attachments/81dc88f3-d86b-4f90-8d84-e59947abbf96/ && python3 -c " import pdfplumber with pdfplumber.open('PNS 2023.pdf') as pdf: print(f'Total pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages[:5]): print(f'\n=== PAGE {i+1} ===') text = page.extract_text() if text: print(text[:2000]) else: print('[No text extracted]') "
cd /home/daytona/workspace/attachments/81dc88f3-d86b-4f90-8d84-e59947abbf96/ && python3 -c " import pdfplumber with pdfplumber.open('PNS 2023.pdf') as pdf: all_text = [] for i, page in enumerate(pdf.pages): text = page.extract_text() if text and text.strip(): all_text.append(f'=== PAGE {i+1} ===\n{text}') full = '\n\n'.join(all_text) print(full[:8000]) "
cd /home/daytona/workspace/attachments/81dc88f3-d86b-4f90-8d84-e59947abbf96/ && python3 -c " import pdfplumber with pdfplumber.open('PNS 2023.pdf') as pdf: all_text = [] for i, page in enumerate(pdf.pages): text = page.extract_text() if text and text.strip(): all_text.append(f'=== PAGE {i+1} ===\n{text}') full = '\n\n'.join(all_text) print(full[8000:]) "
| Type | What Happens | Key Feature |
|---|---|---|
| Axonal | Axon itself is damaged → whole distal part degenerates (Wallerian degeneration) | Fewer axons seen |
| Demyelinating | Myelin is stripped but axon is spared → nerve conduction becomes slow | Thin/short myelin segments |
| Disease | Who? | Mechanism | Key Findings |
|---|---|---|---|
| Polymyositis | Adults | CD8+ T cells kill muscle | Endomysial inflammation, necrosis |
| Dermatomyositis | Children (isolated) / Adults (paraneoplastic) | Small vessel damage | Skin rash + perifascicular muscle atrophy; anti-Mi-2 antibodies |
| Inclusion Body Myositis | Age >50, most common | Degenerative + inflammatory | Rimmed vacuoles with tau, amyloid, TDP-43 deposits |