const pptxgen = require("pptxgenjs");
const pres = new pptxgen();
pres.layout = "LAYOUT_WIDE";
pres.title = "Robbins Systemic Pathology - Part 1";
// ─── THEME COLORS ───────────────────────────────────────
const BG_DARK = "0D1B2A"; // deep navy
const BG_MID = "1B2B3B"; // slide body background
const ACCENT1 = "E63946"; // bright red accent
const ACCENT2 = "F4A261"; // amber
const ACCENT3 = "2EC4B6"; // teal
const WHITE = "FFFFFF";
const LIGHT = "E8EDF2";
const GREY = "A8B5C4";
function titleSlide(title, subtitle) {
const s = pres.addSlide();
s.background = { color: BG_DARK };
s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 0.08, fill: { color: ACCENT1 } });
s.addShape(pres.ShapeType.rect, { x: 0, y: 7.42, w: 13.3, h: 0.08, fill: { color: ACCENT1 } });
s.addText(title, { x: 0.6, y: 2.5, w: 12, h: 1.5, fontSize: 38, bold: true, color: WHITE, fontFace: "Calibri", align: "center" });
s.addText(subtitle, { x: 0.6, y: 4.2, w: 12, h: 0.8, fontSize: 20, color: ACCENT2, fontFace: "Calibri", align: "center", italic: true });
s.addText("Robbins, Cotran & Kumar — Pathologic Basis of Disease", { x: 0.6, y: 6.8, w: 12, h: 0.4, fontSize: 12, color: GREY, fontFace: "Calibri", align: "center" });
}
function chapterHeader(chNum, chTitle) {
const s = pres.addSlide();
s.background = { color: ACCENT1 };
s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 7.5, fill: { color: ACCENT1 } });
s.addShape(pres.ShapeType.rect, { x: 0.5, y: 3.2, w: 12.3, h: 0.06, fill: { color: WHITE } });
s.addText(`CHAPTER ${chNum}`, { x: 0.5, y: 1.5, w: 12, h: 0.8, fontSize: 18, color: WHITE, fontFace: "Calibri", align: "center", bold: true, charSpacing: 8 });
s.addText(chTitle, { x: 0.5, y: 2.5, w: 12, h: 1.2, fontSize: 36, color: WHITE, fontFace: "Calibri", align: "center", bold: true });
s.addText("Robbins & Kumar", { x: 0.5, y: 6.5, w: 12, h: 0.5, fontSize: 14, color: WHITE, fontFace: "Calibri", align: "center", italic: true });
}
function contentSlide(heading, bullets, col2bullets) {
const s = pres.addSlide();
s.background = { color: BG_MID };
s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 0.7, fill: { color: BG_DARK } });
s.addShape(pres.ShapeType.rect, { x: 0, y: 0.7, w: 0.08, h: 6.8, fill: { color: ACCENT1 } });
s.addText(heading, { x: 0.2, y: 0.1, w: 12.8, h: 0.5, fontSize: 18, bold: true, color: WHITE, fontFace: "Calibri", valign: "middle", margin: 0 });
const makeBullets = (arr) => arr.map((b, i) => ({ text: b, options: { bullet: true, color: b.startsWith(" ") ? LIGHT : WHITE, fontSize: b.startsWith(" ") ? 13 : 14, fontFace: "Calibri", breakLine: true, indentLevel: b.startsWith(" ") ? 1 : 0 } }));
if (!col2bullets) {
const items = makeBullets(bullets);
if (items.length) items[items.length - 1].options.breakLine = false;
s.addText(items, { x: 0.25, y: 0.85, w: 12.7, h: 6.4, valign: "top", margin: 6 });
} else {
const items1 = makeBullets(bullets);
if (items1.length) items1[items1.length - 1].options.breakLine = false;
s.addText(items1, { x: 0.25, y: 0.85, w: 6.1, h: 6.4, valign: "top", margin: 6 });
const items2 = makeBullets(col2bullets);
if (items2.length) items2[items2.length - 1].options.breakLine = false;
s.addShape(pres.ShapeType.rect, { x: 6.6, y: 0.85, w: 0.04, h: 6.2, fill: { color: ACCENT3 } });
s.addText(items2, { x: 6.75, y: 0.85, w: 6.3, h: 6.4, valign: "top", margin: 6, color: WHITE, fontSize: 14, fontFace: "Calibri" });
}
}
function tableSlide(heading, headers, rows) {
const s = pres.addSlide();
s.background = { color: BG_MID };
s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 0.7, fill: { color: BG_DARK } });
s.addShape(pres.ShapeType.rect, { x: 0, y: 0.7, w: 0.08, h: 6.8, fill: { color: ACCENT2 } });
s.addText(heading, { x: 0.2, y: 0.1, w: 12.8, h: 0.5, fontSize: 18, bold: true, color: WHITE, fontFace: "Calibri", valign: "middle", margin: 0 });
const tableRows = [
headers.map(h => ({ text: h, options: { bold: true, color: WHITE, fill: BG_DARK, fontSize: 12, fontFace: "Calibri" } })),
...rows.map((row, ri) => row.map(cell => ({ text: cell, options: { color: WHITE, fill: ri % 2 === 0 ? "1F3347" : "162839", fontSize: 11, fontFace: "Calibri" } })))
];
s.addTable(tableRows, { x: 0.25, y: 0.85, w: 12.8, colW: headers.map(() => 12.8 / headers.length), rowH: 0.35 });
}
// ═══════════════════════════════════════════════════════
// TITLE SLIDE
// ═══════════════════════════════════════════════════════
titleSlide(
"ROBBINS SYSTEMIC PATHOLOGY",
"Part 1: Neoplasia | Blood Vessels | Heart | White Cell Neoplasms\nChapters 8, 14, 15, 16"
);
// ═══════════════════════════════════════════════════════
// CHAPTER 8 – NEOPLASIA
// ═══════════════════════════════════════════════════════
chapterHeader("8", "NEOPLASIA");
contentSlide("Benign vs. Malignant Tumors", [
"Differentiation: Benign = well-differentiated; Malignant = poorly differentiated to anaplastic",
"Malignant may acquire unexpected functions due to dedifferentiation",
"Growth: Benign = slow; Malignant = generally faster",
"Border: Benign = circumscribed + capsulated; Malignant = invasive, no capsule",
"Spread: Benign = localized; Malignant = metastasizes",
"Route: Carcinomas → lymphatics; Sarcomas → hematogenous",
"Grading: I (well diff) → IV (anaplastic) — degree of differentiation",
"Staging: TNM (Tumor, Node, Metastasis) — most important prognostic factor"
]);
contentSlide("Epidemiology of Cancer (2023)", [
"Global cancer deaths (2020): 9.9 million = ~1 in 6 deaths worldwide",
"Projected 13.2 million deaths by 2030 (population growth + aging)",
"Males: Prostate > Lung > Colon/Rectum",
"Females: Breast > Lung > Colon/Rectum",
"These 4 cancers = >50% of US diagnoses and deaths",
"Smoking linked to lung cancer; high-fat/low-fiber diet linked to colorectal cancer",
"Cancer incidence: rising in low-resource nations due to adoption of Western diet"
]);
contentSlide("Molecular Basis — Oncogenes & Tumor Suppressors", [
"Proto-oncogenes → gain-of-function mutations → oncogenes",
" RAS (KRAS, NRAS, HRAS): GTPase; mutated in 30% of human cancers",
" MYC: transcription factor; amplified in neuroblastoma, Burkitt lymphoma",
" HER2/ERBB2: receptor tyrosine kinase; amplified in breast, gastric Ca",
" BCR-ABL: translocation t(9;22) → constitutive TK activity; CML",
"Tumor suppressor genes → loss-of-function → cancer",
" RB1 (retinoblastoma): cell cycle brake; lost in retinoblastoma, osteosarcoma",
" TP53: 'guardian of genome'; mutated in >50% of human cancers",
" APC: Wnt pathway brake; lost in FAP and sporadic colorectal Ca",
" BRCA1/2: DNA repair; germline mutations → breast + ovarian cancer",
" CDKN2A (p16): CDK4 inhibitor; lost in many tumors",
"DNA repair genes: MLH1, MSH2 (Lynch syndrome) → microsatellite instability"
]);
contentSlide("Hallmarks of Cancer (Hanahan & Weinberg)", [
"Self-sufficiency in growth signals (oncogene activation)",
"Insensitivity to growth inhibitors (tumor suppressor loss)",
"Evasion of apoptosis (BCL-2 overexpression, TP53 loss)",
"Limitless replicative potential (telomerase activation — hTERT)",
"Sustained angiogenesis (VEGF overproduction)",
"Tissue invasion and metastasis (E-cadherin loss, MMPs)",
"Reprogramming of energy metabolism (Warburg effect — aerobic glycolysis)",
"Evading immune destruction (PD-L1 upregulation, Treg infiltration)",
"Tumor-promoting inflammation (macrophage/cytokine support)",
"Genome instability (defective DNA repair, CIN)"
]);
contentSlide("Tumor Immunity & Immune Evasion", [
"Anti-tumor immune surveillance: CD8+ cytotoxic T cells, NK cells, macrophages",
"Tumor antigens: Neoantigens (mutant proteins unique to cancer) — best immunotherapy targets",
"Tumor-associated antigens: AFP (HCC), PSA (prostate), CEA (colorectal), CA-125 (ovary)",
"Immune evasion mechanisms:",
" MHC class I downregulation → escape from CD8+ T cell killing",
" PD-L1 (CD274) expression → binds PD-1 on T cells → T cell exhaustion",
" Secretion of TGF-β and IL-10 → suppress effector immune cells",
" FOXP3+ regulatory T cell (Treg) infiltration → suppress anti-tumor immunity",
"Checkpoint inhibitors: anti-PD-1 (pembrolizumab), anti-PD-L1, anti-CTLA-4"
]);
tableSlide("Paraneoplastic Syndromes", ["Syndrome", "Tumor", "Mechanism"],
[
["Hypercalcemia", "SCC lung, breast, RCC, myeloma", "PTHrP secretion OR osteolysis"],
["SIADH", "Small cell lung Ca (SCLC)", "Ectopic ADH production"],
["Cushing syndrome", "SCLC, carcinoid", "Ectopic ACTH production"],
["Lambert-Eaton syndrome", "SCLC", "Anti-presynaptic Ca2+ channel Abs"],
["Trousseau (migratory thrombophlebitis)", "Mucinous adenocarcinoma (pancreas)", "Procoagulant tumor mucin"],
["Polycythemia", "RCC, hemangioblastoma, HCC", "Ectopic EPO secretion"],
["Carcinoid syndrome", "Well-diff NETs with liver metastases", "Serotonin, bradykinin, histamine"],
["Acanthosis nigricans", "Gastric, lung carcinoma", "EGF/insulin-like factor secretion"],
]);
// ═══════════════════════════════════════════════════════
// CHAPTER 14 – BLOOD VESSELS
// ═══════════════════════════════════════════════════════
chapterHeader("14", "BLOOD VESSELS");
contentSlide("Atherosclerosis — Overview & Risk Factors", [
"Definition: Intimal lesion with fibrous cap + atheromatous core (lipid, foam cells, necrotic debris, calcification)",
"Accounts for ~50% of all deaths in Western countries; #1 cause of MI, stroke, PVD",
"Non-modifiable risk factors: genetics/family history, age, male sex",
"Modifiable risk factors: hyperlipidemia (LDL most critical), hypertension, smoking,",
" diabetes/insulin resistance, obesity, physical inactivity, elevated CRP",
"Plaque types:",
" Stable: dense fibrous cap, minimal lipid, little inflammation → chronic ischemia",
" Vulnerable: thin cap, large lipid core, dense macrophage infiltrate → rupture → acute MI/stroke",
"Consequences: MI, cerebral infarct, aortic aneurysm, peripheral vascular disease"
], [
"Pathogenesis (Response-to-Injury):",
" 1. Endothelial dysfunction (HTN, LDL, smoking, toxins)",
" 2. Monocyte recruitment; macrophage foam cell formation",
" 3. SMC migration from media → intima; ECM production (fibrous cap)",
" 4. Fatty streak → fibrous plaque → complicated plaque",
"Morphology (H&E):",
" Intimal thickening; foam cells (lipid-laden macrophages)",
" Fibrous cap (collagen + SMCs); necrotic core",
" Cholesterol clefts; calcification; neovascularization",
"Stains:",
" H&E: foam cells, necrotic core",
" Masson Trichrome: fibrous cap (blue collagen)",
" Oil Red O (frozen): lipid = red",
" Von Kossa: calcification = black",
" EVG: elastic lamina disruption"
]);
contentSlide("Hypertension — Types & Vascular Morphology", [
"Primary (essential) HTN (~95%): polygenic; RAAS + sodium retention + adrenergic drive",
"Secondary HTN (~5%):",
" Renovascular (renal artery stenosis) — most common secondary cause",
" Primary hyperaldosteronism (Conn) — hypokalemia + HTN",
" Pheochromocytoma — catecholamine excess",
" Renal parenchymal disease, coarctation of aorta",
"AHA threshold: >130/80 mmHg; European: >140/90 mmHg",
"Vascular lesions in hypertension:",
" Hyaline arteriolosclerosis: plasma protein insudation → homogeneous pink wall thickening",
" — seen in benign HTN + diabetes; PAS-positive",
" Hyperplastic arteriolosclerosis: 'onion-skin' laminated SMC thickening",
" — malignant HTN (diastolic >120 mmHg); fibrinoid necrosis of arterioles",
"Stains: H&E (hyaline pink); PAS (hyaline magenta); Trichrome (fibrinoid necrosis red)"
]);
contentSlide("Aneurysms & Dissection", [
"True aneurysm: all layers of wall intact (but thinned) — atheromatous, congenital, post-MI ventricular",
"False aneurysm (pseudoaneurysm): wall defect → extravascular hematoma communicating with lumen",
"Dissection: blood enters wall defect → tunnels through media",
"AAA (Abdominal Aortic Aneurysm):",
" >90% below renal arteries; M>F; linked to smoking + atherosclerosis",
" Surgery threshold: >5.5 cm",
" Morphology: atherosclerosis + thinned media + mural thrombus",
"Thoracic aneurysm / dissection:",
" Cystic medial degeneration (Erdheim): elastic fiber fragmentation + mucoid pools in media",
" Causes: Marfan (FBN1/fibrillin-1), Ehlers-Danlos, bicuspid aortic valve, HTN",
"Stains: EVG/Movat pentachrome (elastic fiber loss + mucoid change in media)"
]);
contentSlide("Vasculitis — Classification", [
"Large vessel vasculitis:",
" Giant Cell (Temporal) Arteritis: >50 yr; temporal/ophthalmic arteries; granulomatous",
" Langhans giant cells + fragmented internal elastic lamina; blindness risk",
" Stain: H&E (granulomas); EVG (elastic lamina destruction)",
" Takayasu Arteritis: <40 yr, Asian women; aorta + branches; 'pulseless disease'",
" Granulomatous; intimal hyperplasia; ostial narrowing",
"Medium vessel vasculitis:",
" PAN (Polyarteritis Nodosa): necrotizing; spares pulmonary vasculature; Hep B (30%); NOT ANCA",
" Fibrinoid necrosis at branch points; aneurysmal dilation",
" Stain: H&E (fibrinoid necrosis + inflammation); Elastic stain (elastica disruption)",
"Small vessel vasculitis (ANCA-associated):",
" GPA (c-ANCA/PR3 ~90%): upper + lower resp granulomas + GN; saddle-nose deformity",
" MPA (p-ANCA/MPO): necrotizing no granulomas; pulmonary-renal syndrome",
" EGPA/Churg-Strauss: asthma + eosinophilia + granulomatous vasculitis; p-ANCA 40%"
]);
contentSlide("Vascular Tumors", [
"Hemangioma (benign):",
" Capillary hemangioma: lobular clusters of capillary-sized vessels; plump endothelium; skin/subcutis",
" Cavernous hemangioma: large dilated thin-walled channels; most common benign LIVER tumor",
" H&E: dilated channels filled with RBCs; flat endothelial lining",
"Pyogenic granuloma (lobular capillary hemangioma): polypoid; skin/mucosa; associated with pregnancy",
"Lymphangioma: dilated lymphatic channels; no RBCs; D2-40 IHC+ (lymphatic endothelium)",
"Angiosarcoma (malignant):",
" Liver: vinyl chloride, arsenic, Thorotrast exposure",
" Breast: post-radiation (Stewart-Treves = post-lymphedema)",
" Histology: irregular vascular channels lined by atypical pleomorphic endothelium",
" IHC: CD31+ (most sensitive), CD34+, ERG+ (nuclear), FLI-1+, Factor VIII+",
"Kaposi Sarcoma: HHV-8; spindle cells + vascular slits + RBC extravasation + hemosiderin",
" 'Promontory sign'; forms: classic/African endemic/AIDS/iatrogenic",
" IHC: HHV-8 LANA-1+ (pathognomonic), CD31+, CD34+"
]);
// ═══════════════════════════════════════════════════════
// CHAPTER 15 – HEART (+ Respiratory additions)
// ═══════════════════════════════════════════════════════
chapterHeader("15", "THE HEART & RESPIRATORY SYSTEM");
contentSlide("Ischemic Heart Disease — Overview", [
"IHD = group of entities from myocardial ischemia (supply < demand)",
">90% due to obstructive atherosclerotic CAD; starts in childhood/adolescence",
"Single largest cause of global mortality: >15% of all deaths; ~9 million/yr in high-resource nations",
"US: death rate fallen >50% since mid-1960s (statins, thrombolysis, angioplasty, CABG, ICD)",
"Clinical presentations: MI, Angina pectoris, Chronic IHD with HF, Sudden Cardiac Death",
"Tachycardia doubly harmful: ↑ O2 demand + ↓ coronary perfusion (shorter diastole)",
"Pathogenesis: atherosclerotic plaque → rupture/erosion → platelet aggregation → thrombosis → occlusion"
]);
tableSlide("Myocardial Infarction — Time-Dependent Morphology", ["Time", "Gross", "Microscopy", "Key Stain"],
[
["0-30 min", "Normal", "Wavy fibers at border; mitochondrial swelling (EM)", "Electron microscopy"],
["1-12 hr", "Normal or dark mottling", "Coagulation necrosis begins; edema; contraction bands; pyknotic nuclei", "H&E (eosinophilic change)"],
["12-24 hr", "Dark mottling", "Ongoing coagulation necrosis; heavy neutrophil infiltration", "H&E (neutrophils)"],
["1-3 days", "Tan-yellow center, hyperemic border", "PMN degranulation; nuclear debris; cytolysis", "H&E (neutrophils peak)"],
["3-7 days", "Hyperemic border, central yellow-tan softening", "Macrophages appear; phagocytosis of necrotic debris", "H&E (macrophages)"],
["1-2 weeks", "Yellow-tan; soft; depressed", "Granulation tissue at margins; fibroblasts + capillaries", "H&E"],
["Weeks-months", "Gray-white scar", "Progressive collagen deposition; complete fibrosis", "Masson Trichrome (collagen blue)"],
["<12 hrs (autopsy)", "Pale/white zone", "No LM changes yet; infarcted = fails to stain", "TTC / NBT stain (dead = pale)"],
]);
contentSlide("MI Complications", [
"Arrhythmias: most common cause of death in first 24 hrs (ventricular fibrillation)",
"Cardiogenic shock: pump failure; <30% survival even with treatment",
"Cardiac rupture (days 3-7 post-MI):",
" Free wall rupture → hemopericardium → tamponade",
" Interventricular septal rupture → VSD + acute heart failure",
" Papillary muscle rupture → acute severe mitral regurgitation",
"Ventricular aneurysm (late): paradoxical wall motion; mural thrombus → systemic emboli",
"Fibrinous pericarditis (within 1-3 days): 'bread-and-butter' friction rub; Stain: PTAH (fibrin blue)",
"Dressler syndrome (weeks later): autoimmune pericarditis; fibrinous or serofibrinous",
"Heart failure: left-sided (pulmonary edema) or right-sided (peripheral edema)"
]);
contentSlide("Valvular Heart Disease", [
"Stenosis: failure to open; almost always chronic (calcification/scarring)",
"Insufficiency: failure to close; can be acute (rupture) or chronic (scarring)",
"Stenosis → pressure overload → concentric hypertrophy",
"Insufficiency → volume overload → eccentric hypertrophy → both → HF",
"Most frequent acquired lesions:",
" Aortic stenosis: calcification of normal or bicuspid valve",
" Aortic insufficiency: dilation of ascending aorta (HTN, aging, Marfan)",
" Mitral stenosis: rheumatic heart disease ('fish-mouth/buttonhole' orifice)",
" Mitral insufficiency: myxomatous degeneration (MVP) or LV dilation",
"Calcific aortic stenosis: heaped-up calcified masses on outflow surface",
" Stain: Von Kossa (calcium = black); H&E (basophilic deposits)"
]);
contentSlide("Rheumatic Heart Disease & Endocarditis Types", [
"RHD: molecular mimicry — Group A Strep M protein cross-reacts with cardiac proteins",
"Acute RF: Aschoff bodies (fibrinoid necrosis + Anitschkow 'caterpillar cells') — pathognomonic",
" Pancarditis; McCallum plaques (posterior LA wall); small warty vegetations along line of closure",
" 'Bread-and-butter' fibrinous pericarditis",
"Chronic RHD: leaflet thickening + retraction; commissural fusion; chordal fusion",
"Infective Endocarditis (IE):",
" Acute (S. aureus): normal valves; large, destructive, bulky vegetations; rapid course",
" Subacute (S. viridans 50-60%): damaged valves; indolent; less destructive",
" IV drug users: S. aureus; tricuspid valve",
" Prosthetic early (<2 mo): Staph epidermidis; late (>2 mo): Strep viridans",
" Complications: valve destruction; septic emboli → brain/kidney/spleen; mycotic aneurysms; GN"
], [
"NBTE (Nonbacterial Thrombotic / Marantic Endocarditis):",
" 1-5 mm sterile, bland thrombi on line of valve closure",
" No inflammation; no valve destruction",
" Seen in: cancer (esp. mucinous adenocarcinoma), DIC, cachexia",
" Risk: systemic embolism → brain/kidney infarcts",
"Libman-Sacks Endocarditis (SLE):",
" Small-to-medium sterile vegetations on BOTH surfaces of leaflets",
" Immune complex deposition + fibrinoid necrosis of valve",
" Associated with antiphospholipid antibody syndrome",
"Carcinoid Heart Disease:",
" 50% of carcinoid syndrome patients; requires liver metastases",
" Right heart predominantly (serotonin degraded by lungs)",
" Tricuspid regurgitation + pulmonary stenosis",
" Mediator: serotonin (5-HT); marker: urine 5-HIAA",
" Morphology: fibrous pearly plaques on tricuspid/pulmonary valves",
" Stains: H&E; Masson Trichrome (fibrous plaques = blue)"
]);
contentSlide("Hypertensive Heart Disease & Sudden Cardiac Death", [
"Systemic (Left-sided) HHD:",
" Criteria: LV concentric hypertrophy (no other pathology) + clinical HTN evidence",
" Heart weight >500 g; LV wall >2.0 cm",
" Microscopy: myocyte transverse diameter increase; perivascular + interstitial fibrosis",
" Outcomes: IHD (potentiated atherosclerosis + increased O2 demand), CHF, SCD, renal/cerebral damage",
"Pulmonary (Right-sided) HHD — Cor Pulmonale:",
" RV hypertrophy/dilation from pulmonary HTN due to lung disease",
" Causes: COPD, pulmonary fibrosis, recurrent PE, primary pulmonary HTN",
" Acute cor pulmonale: RV dilation (e.g., massive PE)",
"Sudden Cardiac Death (SCD):",
" Definition: unexpected cardiac death within 1 hr of symptom onset",
" 325,000/yr in US; 4-5 million worldwide",
" Mechanism: lethal arrhythmia (VF or asystole) in 95%+",
" #1 cause: CAD; acute plaque rupture in only 10-20% (rest = chronic stenoses)",
" Young: HCM, congenital coronary anomalies, myocarditis, channelopathies (LQTS, Brugada)",
" Treatment: ICD implantation"
]);
contentSlide("Cardiomyopathies", [
"Dilated (DCM): 90%; systolic dysfunction; 4-chamber dilation; weight >900g",
" Causes: titin (TTN) truncations (20%), other cytoskeletal mutations (50%),",
" myocarditis (coxsackievirus B), alcohol, anthracyclines, peripartum",
" Histology: myocyte hypertrophy; interstitial fibrosis; scattered necrosis",
" Stains: H&E + Masson Trichrome (fibrosis blue)",
"Hypertrophic (HCM): diastolic dysfunction; autosomal dominant sarcomere mutations",
" Most common: beta-myosin heavy chain + myosin-binding protein C mutations",
" Asymmetric septal hypertrophy (ASH); banana-shaped LV cavity",
" PATHOGNOMONIC: myofiber disarray (chaotic arrangement); interstitial fibrosis",
" Stain: H&E (disarray); Masson Trichrome (fibrosis)",
"Restrictive: stiff myocardium; diastolic dysfunction",
" Amyloid (most common) — Congo Red → apple-green birefringence under polarized light",
" Also: hemochromatosis, sarcoidosis, radiation fibrosis, endomyocardial fibrosis",
"Myocarditis: Dallas criteria = interstitial lymphocytes + myocyte necrosis/damage",
" Giant cell myocarditis: multinucleated giant cells — poor prognosis",
" Causes: viral (coxsackievirus B, parvovirus B19), Chagas (T. cruzi), autoimmune"
]);
contentSlide("Congenital Heart Disease", [
"~1% of live births (excluding trivial defects); ~12 disorders = 85% of cases",
"Left-to-right shunts (acyanotic initially; Eisenmenger → cyanotic):",
" VSD (most common, 42%): systolic murmur",
" ASD (10%): wide fixed split S2",
" PDA (7%): continuous 'machinery' murmur",
"Right-to-left shunts (cyanotic at birth):",
" Tetralogy of Fallot (most common cyanotic CHD, 5%):",
" VSD + overriding aorta + pulmonary stenosis + RVH",
" 'Boot-shaped' heart on CXR; Tet spells relieved by squatting",
" Transposition of great arteries (4%): fatal unless mixing (PDA, ASD, VSD)",
"Obstructive lesions:",
" Coarctation of aorta (5%): male predominant; Turner syndrome association",
" Bicuspid aortic valve association; upper extremity HTN + lower extremity hypotension",
" 'Rib notching' on CXR (collateral circulation)",
" Pulmonary stenosis (8%): RV pressure overload"
]);
contentSlide("ARDS / Diffuse Alveolar Damage (DAD) — Missed Detail", [
"Definition: Abrupt hypoxemia + bilateral non-cardiogenic pulmonary edema",
"Histologic pattern: Diffuse Alveolar Damage (DAD)",
"Top 4 causes (>50% of cases): sepsis, diffuse pulmonary infection, gastric aspiration, mechanical trauma",
"Other: burns, near-drowning, fat embolism, oxygen toxicity, pancreatitis, uremia, DIC, drugs",
"Pathogenesis: Endothelial activation (TNF, neutrophil adhesion) → neutrophil extravasation",
" → release of proteases, ROS, cytokines → capillary leak + type II pneumocyte necrosis",
" → protein-rich edema fluid + dead cell debris → HYALINE MEMBRANES (pathognomonic)",
" → V/Q mismatch → severe hypoxemia",
"Resolution (if triggered inflammation abates):",
" Macrophages clear debris; TGF-β + PDGF → fibroblast proliferation + fibrosis",
" Type II pneumocytes proliferate to replace type I (reconstitute alveolar lining)",
"Morphology: Exudative phase (0-7 days): hyaline membranes, edema, hemorrhage",
" Organizing phase (1-3 wk): fibroblastic proliferation; fibrosis of alveolar walls",
"Stains: H&E (hyaline membranes = eosinophilic; type II pneumocyte hyperplasia)"
]);
contentSlide("Interstitial Lung Disease (ILD) & Pneumoconioses", [
"ILD = restrictive pattern: ↓ lung compliance, ↓ FVC; FEV1/FVC = normal",
"IPF/UIP (Usual Interstitial Pneumonia):",
" Temporal heterogeneity (old + new fibrosis coexist) — pathognomonic",
" Dense subpleural fibrosis; honeycombing; fibroblastic foci",
" Cause unknown; telomere shortening, abnormal mucin + TGF-β signaling",
" Stains: H&E; Masson Trichrome (fibrosis blue); EVG (elastic fiber loss)",
"NSIP (Nonspecific Interstitial Pneumonia): uniform fibrosis; better prognosis; steroid responsive",
"COP (Cryptogenic Organizing Pneumonia): Masson bodies in alveolar ducts; steroid responsive",
"Pneumoconioses (occupational dust diseases):",
" Silicosis (silica): nodular fibrosis; progressive massive fibrosis; birefringent particles",
" Stain: H&E; polarized light (silica particles birefringent)",
" Asbestosis: lower lobe fibrosis; asbestos bodies (iron coating); pleural plaques",
" Mesothelioma + lung carcinoma risk; latency 25-45 yrs",
" Stain: H&E; Prussian Blue (asbestos bodies = golden-brown + iron stain blue)",
" Coal worker's pneumoconiosis: coal macules; Caplan syndrome (with RA)"
]);
// ═══════════════════════════════════════════════════════
// CHAPTER 16 – WHITE CELL NEOPLASMS
// ═══════════════════════════════════════════════════════
chapterHeader("16", "WHITE CELLS, LYMPH NODES & SPLEEN — NEOPLASMS");
contentSlide("Classification of Lymphoid Neoplasms", [
"WHO Classification: 5 broad categories based on cell of origin:",
" 1. Precursor B-cell neoplasms (immature B cells — B-ALL)",
" 2. Peripheral B-cell neoplasms (mature B cells — CLL, FL, DLBCL, Burkitt, MCL, MALT, HCL)",
" 3. Precursor T-cell neoplasms (immature T cells — T-ALL)",
" 4. Peripheral T-cell/NK-cell neoplasms",
" 5. Hodgkin lymphoma (Classic HL + Nodular Lymphocyte Predominant HL)",
"Leukemia: bone marrow + blood involvement",
"Lymphoma: discrete tissue masses (lymph nodes)",
"This distinction is a continuum — many lymphomas can have leukemic presentation",
"Plasma cell neoplasms (e.g., multiple myeloma): arise in bone marrow",
"Antigen receptor gene rearrangement precedes transformation → all daughter cells monoclonal",
"Monoclonality = proof of neoplasia (B cells: Ig rearrangement; T cells: TCR rearrangement)"
]);
tableSlide("Key CD Markers for Lymphoid Neoplasm Diagnosis", ["Marker", "Normal Distribution", "Tumor Use"],
[
["CD3", "All T cells", "T-cell lineage marker"],
["CD4", "Helper T cells", "T-cell subset; CD4:CD8 ratio in HIV"],
["CD5", "T cells + small subset B cells", "Aberrant B+ in CLL/SLL and Mantle Cell"],
["CD10", "Pre-B + germinal center B cells", "B-ALL, Follicular lymphoma, DLBCL (GCB)"],
["CD20", "Pre-B to mature B (not plasma cells)", "B-cell NHLs; target of rituximab"],
["CD23", "Activated B cells", "CLL/SLL positive; Mantle Cell negative"],
["CD30", "Activated lymphocytes; RS cells", "Hodgkin lymphoma; ALCL"],
["CD15", "Granulocytes; RS cells", "Hodgkin lymphoma (RS cells)"],
["CD56", "NK cells + T-cell subset", "NK/T-cell lymphoma; myeloma"],
["CD117 (c-KIT)", "Mast cells, hematopoietic progenitors", "Seminoma, AML, GIST"],
["CD138", "Plasma cells", "Multiple myeloma"],
["TdT", "Lymphoblasts (immature)", "B-ALL and T-ALL (nuclear)"],
]);
contentSlide("ALL (Acute Lymphoblastic Leukemia/Lymphoma)", [
"Most common cancer of CHILDREN; 85% B-ALL; 15% T-ALL",
"B-ALL peak age: 3 years; T-ALL peak: adolescent males (thymic mass)",
"Morphology: lymphoblasts, scant cytoplasm, fine chromatin, inconspicuous nucleoli",
"Key cytogenetics of B-ALL:",
" t(12;21) ETV6::RUNX1: most common in childhood ALL; FAVORABLE prognosis",
" t(9;22) BCR::ABL1 (Philadelphia chromosome): 25% adult ALL; ADVERSE → TKI therapy",
" Hyperploidy >50 chromosomes: favorable prognosis in children",
" Hypoploidy: adverse prognosis",
" KMT2A (MLL) rearrangements: infant ALL; very poor prognosis",
"T-ALL: NOTCH1 mutations in most cases",
"Stains: H&E (lymphoblasts); PAS (block positivity in B-ALL)",
"IHC: TdT+ (nuclear — pathognomonic of lymphoblasts)",
" B-ALL: TdT+, CD10+, CD19+, PAX5+ (weak)",
" T-ALL: TdT+, CD3+, CD7+"
]);
contentSlide("CLL/SLL, Follicular Lymphoma & DLBCL", [
"CLL/SLL — Most common adult leukemia in Western countries:",
" Indolent; mature B cells; bone marrow + blood + lymph nodes",
" Peripheral blood: 'smudge cells' (fragile cells crushed on smear) — characteristic",
" Lymph node: 'proliferation centers (pseudofollicles)' — pathognomonic",
" IHC: CD5+, CD23+, CD20+ (weak), CD19+; CD10-, cyclin D1-",
" Complications: hypogammaglobulinemia; warm AIHA; Richter transformation (→DLBCL)",
"Follicular Lymphoma — Most common indolent adult NHL:",
" t(14;18)(q32;q21) BCL2/IgH → BCL-2 overexpression → apoptosis block",
" Morphology: follicular (nodular) pattern; centrocytes + centroblasts in follicles",
" IHC: CD10+, BCL-6+, BCL-2+, CD20+; CD5-",
"DLBCL — Most common adult lymphoma (~30%):",
" Large lymphoid cells with vesicular nuclei + multiple nucleoli",
" BCL6 rearrangements; 1/3 have t(14;18)/BCL2; ~5% MYC translocations",
" GCB type (BCL-6+, CD10+): better prognosis vs ABC type (MUM-1+): worse",
" IHC: CD20+, CD79a+, BCL-6+/-, MUM-1+/-, Ki-67 high"
]);
contentSlide("Burkitt, Mantle Cell, MALT & Hairy Cell Lymphoma", [
"Burkitt Lymphoma — Very aggressive; extranodal sites (jaw in African endemic):",
" t(8;14) MYC/IgH → MYC overexpression; all cases EBV-latent in African form",
" 'Starry sky' pattern (macrophages ingesting apoptotic cells in sea of lymphoma)",
" IHC: CD20+, CD10+, BCL-6+, BCL-2 NEGATIVE, Ki-67 ~100%",
"Mantle Cell Lymphoma (MCL):",
" t(11;14) cyclin D1/IgH → cyclin D1 overexpression (pathognomonic)",
" IHC: CD5+, CD20+, CD23-, CD10-, cyclin D1+, SOX11+",
" Blastoid variant = most aggressive",
"Marginal Zone/MALT Lymphoma:",
" Chronic antigenic stimulation; H. pylori → gastric MALT (H. pylori eradication can cure!)",
" Sjögren → salivary gland MALT; Hashimoto → thyroid MALT",
" Lymphoepithelial lesions (neoplastic B cells invading/destroying glands)",
" IHC: CD20+, CD19+; CD5-, CD23-, CD10-, cyclin D1-",
"Hairy Cell Leukemia (HCL) — Very indolent:",
" BRAF V600E mutation in virtually ALL cases (diagnostic + therapeutic target)",
" Hairy cytoplasmic projections; spleen RED PULP infiltration; 'dry tap' bone marrow",
" IHC: CD11c+, CD25+, CD103+, CD123+, Annexin A1+ (highly specific), cyclin D1+ (weak)"
]);
tableSlide("Hodgkin Lymphoma — Subtypes (Table 13.8)", ["Subtype", "Freq", "Key Morphology", "IHC", "EBV"],
[
["Nodular Sclerosis", "65-70%", "Lacunar cells; collagen bands (nodules); mediastinum; young women", "CD30+, CD15+, PAX5+ (weak), CD45-", "25%"],
["Mixed Cellularity", "20-25%", "Classic RS cells; mixed lymphocytes, eosinophils, plasma cells", "CD30+, CD15+, PAX5+ (weak)", "70%"],
["Lymphocyte-Rich", "5%", "RS cells rare; abundant small lymphocytes", "CD30+, CD15+, PAX5+ (weak)", "40%"],
["Lymphocyte-Depleted", "<1%", "Abundant RS; few lymphocytes; HIV/elderly; worst prognosis", "CD30+, CD15+", "90%"],
["Nodular LP HL", "5%", "LP cells ('popcorn cells') instead of RS; best prognosis", "CD20+, CD79a+, BCL-6+; CD30-, CD15-", "Rare"],
]);
contentSlide("Multiple Myeloma — Full Detail", [
"Plasma cell neoplasm; 1% of cancer deaths in West; peak age 65-70 yrs; M>F; African descent",
"Pathogenesis: IGH locus rearrangements; cyclin D1/D3; del17p (TP53); NF-κB mutations",
" IL-6 key growth factor (from tumor + marrow stroma); high IL-6 = poor prognosis",
" MIP1α (CCL3) → ↑ osteoclasts; Wnt pathway inhibitors → ↓ osteoblasts → bone resorption",
"CRAB criteria: Hypercalcemia, Renal failure, Anemia, Bone lesions (lytic)",
"Morphology — Bones: vertebral column, ribs, skull, pelvis, femur (descending freq)",
" Punched-out lytic lesions 1-4 cm (X-ray); soft, gelatinous, red marrow tumor masses",
" Marrow: >30% plasma cells; eccentric nucleus; clock-face/cartwheel chromatin; perinuclear clearing (Golgi)",
"Cytologic variants from abnormal Ig accumulation:",
" Flame cells (fiery red cytoplasm); Mott cells (grapelike droplets)",
" Russell bodies (cytoplasmic globular Ig); Dutcher bodies (intranuclear Ig)",
"Amyloid (AL) in 10% → nephrotic syndrome, restrictive cardiomyopathy",
"Stains: H&E (plasma cells); IHC: CD138+, CD38+, MUM-1+; kappa or lambda restriction",
" Congo Red if amyloid present (apple-green birefringence)"
]);
// ─── WRITE FILE 1 ─────────────────────────────────────────────────────────────
pres.writeFile({ fileName: "/home/daytona/workspace/robbins-pptx/Robbins_Systemic_Pathology_Part1.pptx" });
console.log("PPT 1 written successfully.");