Norethisterone induced CVT
norethisterone cerebral venous thrombosis
PMID: 42367690
cerebral venous thrombosis progestogen oral contraceptive risk
norethisterone cerebral venous thrombosis mechanism prothrombotic risk
https://pmc.ncbi.nlm.nih.gov/articles/PMC5695460
| Syndrome | Frequency |
|---|---|
| Isolated intracranial hypertension (severe headache) | ~90% |
| Focal neurological deficits (hemiparesis, aphasia) | ~44% |
| Seizures (more common with sagittal sinus/cortical vein involvement) | 30-40% |
| Encephalopathy (straight sinus thrombosis, diffuse edema) | ~22% |
| Investigation | Finding in CVT |
|---|---|
| CT head (non-contrast) | Hyperdense venous sinuses; "dense triangle sign" (superior sagittal sinus); cord sign (cortical vein) |
| CT venography | Filling defect; "empty delta sign" post-contrast |
| MRI + MRV (gold standard) | Direct visualization of thrombus + venous flow abnormality |
| D-dimer | Usually elevated (normal does not exclude CVT) |
| CSF | Raised opening pressure; may show xanthochromia or elevated RBCs |
| Thrombophilia screen | Factor V Leiden, prothrombin mutation, protein C/S, antithrombin, APLA |
briefly
while presenting this case what should be Aim/Objectives, Materials and Methods, Results, Discussion, Conclusion, References
python3 -c " import pdfplumber with pdfplumber.open('/home/daytona/workspace/attachments/1e50e924-19b5-46dc-b69b-e0e2a02e1e8c/CVT secondary to OCP.pdf') as pdf: print(f'Pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages): print(f'--- PAGE {i+1} ---') print(page.extract_text()) "
python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/1e50e924-19b5-46dc-b69b-e0e2a02e1e8c/CVT secondary to OCP.pdf') print(f'Pages: {len(reader.pages)}') for i, page in enumerate(reader.pages[:5]): text = page.extract_text() print(f'--- PAGE {i+1} ---') print(repr(text[:500]) if text else 'EMPTY') "
cd /home/daytona/workspace && mkdir -p pdf_ocr && pdftoppm -r 200 -png "/home/daytona/workspace/attachments/1e50e924-19b5-46dc-b69b-e0e2a02e1e8c/CVT secondary to OCP.pdf" pdf_ocr/page && ls pdf_ocr/ | head -10
cd /home/daytona/workspace && mkdir -p pdf_ocr && pdftoppm -r 150 -png -f 1 -l 5 "/home/daytona/workspace/attachments/1e50e924-19b5-46dc-b69b-e0e2a02e1e8c/CVT secondary to OCP.pdf" pdf_ocr/page && ls pdf_ocr/
python3 -c " import pytesseract from PIL import Image import os pages_text = [] for i in range(1, 6): path = f'/home/daytona/workspace/pdf_ocr/page-{i:02d}.png' if os.path.exists(path): img = Image.open(path) text = pytesseract.image_to_string(img) pages_text.append(f'--- PAGE {i} ---\n{text}') print('\n'.join(pages_text)) "
python3 -c " import pytesseract from PIL import Image import os pages_text = [] for i in range(6, 11): path = f'/home/daytona/workspace/pdf_ocr/page-{i:02d}.png' if os.path.exists(path): img = Image.open(path) text = pytesseract.image_to_string(img) pages_text.append(f'--- PAGE {i} ---\n{text}') print('\n'.join(pages_text)) "
| Parameter | Finding |
|---|---|
| Age / Sex | Young female |
| Presenting complaint | Headache (progressive), vomiting, visual disturbance / seizures |
| OCP history | Norethisterone - dose, duration |
| Neurological exam | Papilledema, focal deficits if any |
| CT head | Hyperdense sinus / cord sign / empty delta sign |
| MRI + MRV | Superior sagittal / transverse sinus thrombosis |
| D-dimer | Elevated |
| Thrombophilia screen | Positive / negative |
| Treatment | LMWH → DOAC / warfarin; OCP stopped |
| Outcome | Clinical improvement / resolution on follow-up MRV |