Make PPT slides of this synopsis i have to defend it in front of speciality advisory committee for research and it should follow the following criteria Power point presentation of your synopsis must be clear and well explained, should cover all the points of synopsis, and should have a font size of 40 to present in front of SAC. • Presentation shall also includes the *study proforma* ....
ls /home/daytona/workspace/ 2>/dev/null && echo "---" && ls /home/daytona/workspace/
mkdir -p /home/daytona/workspace/naveed-synopsis-ppt
~/naveed-synopsis-ppt/make_presentation.js
const pptxgen = require('pptxgenjs');
const pptx = new pptxgen();
pptx.layout = 'LAYOUT_WIDE';
pptx.author = 'Dr. Hafiz Naveed Ul Hassan Sajid';
pptx.company = 'University of Health Sciences, Lahore';
pptx.subject = 'MS Urology Synopsis Defense';
pptx.title = 'Evaluation of Holmium YAG Laser vs Cold Knife in OIU';
pptx.lang = 'en-US';
pptx.theme = {
headFontFace: 'Calibri',
bodyFontFace: 'Calibri'
};
const COLORS = {
bg: 'FFFFFF',
primary: '0D3B66',
secondary: '145DA0',
accent: 'F95738',
dark: '111111',
muted: '404040',
line: 'D9D9D9',
lightBox: 'F4F8FC'
};
function addHeader(slide, title) {
slide.background = { color: COLORS.bg };
slide.addShape(pptx.ShapeType.rect, {
x: 0,
y: 0,
w: 13.333,
h: 0.65,
fill: { color: COLORS.primary },
line: { color: COLORS.primary }
});
slide.addText(title, {
x: 0.35,
y: 0.12,
w: 12.6,
h: 0.42,
fontFace: 'Calibri',
fontSize: 24,
bold: true,
color: 'FFFFFF'
});
}
function addFooter(slide, txt = 'MS Urology Synopsis Defense | Sahiwal Teaching Hospital') {
slide.addShape(pptx.ShapeType.line, {
x: 0.3,
y: 7.05,
w: 12.7,
h: 0,
line: { color: COLORS.line, pt: 1 }
});
slide.addText(txt, {
x: 0.35,
y: 7.1,
w: 12.6,
h: 0.25,
fontSize: 14,
color: COLORS.muted,
align: 'center'
});
}
function addBullets(slide, items, x = 0.8, y = 1.1, w = 11.8, h = 5.7, fontSize = 40) {
const runs = [];
items.forEach((t, idx) => {
runs.push({ text: t, options: { bullet: { indent: 18 }, breakLine: idx !== items.length - 1 } });
});
slide.addText(runs, {
x,
y,
w,
h,
fontFace: 'Calibri',
fontSize,
color: COLORS.dark,
paraSpaceAfterPt: 18,
valign: 'top',
margin: 2
});
}
// Slide 1: Title
{
const slide = pptx.addSlide();
slide.background = { color: COLORS.bg };
slide.addShape(pptx.ShapeType.rect, {
x: 0,
y: 0,
w: 13.333,
h: 0.55,
fill: { color: COLORS.primary },
line: { color: COLORS.primary }
});
slide.addShape(pptx.ShapeType.rect, {
x: 0,
y: 6.95,
w: 13.333,
h: 0.55,
fill: { color: COLORS.primary },
line: { color: COLORS.primary }
});
slide.addText('Evaluation Of Holmium YAG Laser Versus Cold Knife In Optical Internal Urethrotomy', {
x: 0.6,
y: 1.0,
w: 12.1,
h: 1.5,
fontSize: 40,
bold: true,
align: 'center',
color: COLORS.primary,
valign: 'mid'
});
slide.addText('For Management Of Anterior Urethral Stricture < 1.5 cm', {
x: 0.9,
y: 2.5,
w: 11.6,
h: 0.8,
fontSize: 36,
bold: true,
align: 'center',
color: COLORS.secondary
});
slide.addText('A Comparative Quasi Experimental Study', {
x: 2.1,
y: 3.2,
w: 9.2,
h: 0.6,
fontSize: 32,
italic: true,
align: 'center',
color: COLORS.accent
});
slide.addText('By Dr. Hafiz Naveed Ul Hassan Sajid\nPost Graduate Resident MS (Urology)', {
x: 1.2,
y: 4.05,
w: 10.8,
h: 1.1,
fontSize: 30,
bold: true,
align: 'center',
color: COLORS.dark
});
slide.addText('Under Supervision Of\nProf. Dr. Nisar Ahmad\nProfessor of Urology, Sahiwal Teaching Hospital', {
x: 1.5,
y: 5.2,
w: 10.3,
h: 1.2,
fontSize: 24,
align: 'center',
color: COLORS.dark
});
}
// Slide 2: Presenter and Institutional Details
{
const slide = pptx.addSlide();
addHeader(slide, 'Presenter and Institutional Details');
slide.addShape(pptx.ShapeType.roundRect, {
x: 0.55,
y: 1.0,
w: 12.2,
h: 5.8,
fill: { color: COLORS.lightBox },
line: { color: COLORS.line, pt: 1.5 },
radius: 0.08
});
addBullets(slide, [
'University: University of Health Sciences, Lahore, Pakistan',
'Discipline: M.S Urology',
'Applicant: Dr. Hafiz Naveed Ul Hassan Sajid',
'Registration No: 2016-SHMC-0071-UHS',
'Supervisor: Prof. Dr. Nisar Ahmad',
'Institution: Sahiwal Teaching Hospital, Sahiwal'
], 0.9, 1.35, 11.5, 5.3, 40);
addFooter(slide);
}
// Slide 3: Project Summary
{
const slide = pptx.addSlide();
addHeader(slide, 'Project Summary');
addBullets(slide, [
'Anterior urethral strictures <1.5 cm cause significant morbidity and reduced quality of life',
'Study compares Holmium:YAG laser vs cold knife optical internal urethrotomy',
'Sample size: 66 patients (33 per group), quasi-experimental design',
'Follow-up at 1, 3, 6 and 12 months for efficacy and safety outcomes',
'Primary outcomes: success rate, Qmax improvement, recurrence',
'Secondary outcomes: complications, operative time, satisfaction'
], 0.7, 1.0, 12.0, 5.9, 40);
addFooter(slide);
}
// Slide 4: Introduction
{
const slide = pptx.addSlide();
addHeader(slide, 'Introduction');
addBullets(slide, [
'Urethral stricture is narrowing of urethra due to trauma, infection, inflammation or iatrogenic injury',
'Common treatment options: dilation, OIU and urethroplasty',
'Cold knife OIU is traditional, simple and widely practiced',
'Holmium:YAG laser offers precision and potentially less tissue trauma',
'Comparative effectiveness in short strictures (<1.5 cm) requires local evidence'
], 0.7, 1.0, 12.0, 5.9, 40);
addFooter(slide);
}
// Slide 5: Literature Review
{
const slide = pptx.addSlide();
addHeader(slide, 'Literature Review and Evidence Gap');
addBullets(slide, [
'Both HIU and CIU improve Qmax and symptoms in short-segment strictures',
'Meta-analyses show lower recurrence and lower bleeding risk with laser in many studies',
'Some studies report shorter operative time with cold knife for very short strictures',
'Current evidence is not fully conclusive across settings and populations',
'Need for institution-specific comparative evidence in our patient population'
], 0.7, 1.0, 12.0, 5.9, 40);
addFooter(slide);
}
// Slide 6: Recent Reviews (condensed table)
{
const slide = pptx.addSlide();
addHeader(slide, 'Recent Systematic Reviews and Meta-Analyses (2021-2024)');
slide.addShape(pptx.ShapeType.rect, {
x: 0.5,
y: 1.05,
w: 12.3,
h: 5.85,
fill: { color: 'FDFDFD' },
line: { color: COLORS.line, pt: 1 }
});
const tableText = [
'Chi et al., 2024: Qmax +2.62 ml/s, Recurrence RR 0.44 (laser favored)',
'Chen et al., 2024: Qmax +2.13 ml/s, Recurrence RR 0.67 (laser favored)',
'Faizan et al., 2024: 14 studies, recurrence OR 0.42 (laser favored)',
'Ali et al., 2023 RCT: both effective, laser lower recurrence and fewer complications',
'Gamal et al., 2021 RCT (<1.5 cm): laser higher success, cold knife faster'
];
addBullets(slide, tableText, 0.9, 1.35, 11.4, 5.2, 36);
addFooter(slide);
}
// Slide 7: Hypothesis
{
const slide = pptx.addSlide();
addHeader(slide, 'Hypothesis');
slide.addShape(pptx.ShapeType.roundRect, {
x: 0.6,
y: 1.2,
w: 12.1,
h: 2.6,
fill: { color: 'EEF5FF' },
line: { color: 'A7C7E7', pt: 1.5 },
radius: 0.08
});
slide.addText('Null Hypothesis (H₀): No significant difference in outcomes, efficacy, or complications between HIU and CIU.', {
x: 0.9,
y: 1.45,
w: 11.6,
h: 1.0,
fontSize: 34,
color: COLORS.dark,
bold: true
});
slide.addShape(pptx.ShapeType.roundRect, {
x: 0.6,
y: 4.1,
w: 12.1,
h: 2.6,
fill: { color: 'FFF4EE' },
line: { color: 'F0B9A9', pt: 1.5 },
radius: 0.08
});
slide.addText('Alternative Hypothesis (H₁): Significant difference exists between HIU and CIU in outcomes, efficacy, or complications.', {
x: 0.9,
y: 4.35,
w: 11.6,
h: 1.0,
fontSize: 34,
color: COLORS.dark,
bold: true
});
addFooter(slide);
}
// Slide 8: Objectives
{
const slide = pptx.addSlide();
addHeader(slide, 'Objectives');
addBullets(slide, [
'Compare efficacy of Holmium:YAG laser vs cold knife OIU in strictures <1.5 cm',
'Compare treatment success rates between both groups',
'Compare improvement in urinary flow (Qmax)',
'Compare recurrence rates at follow-up',
'Assess comparative perioperative and postoperative safety profile'
], 0.7, 1.0, 12.0, 5.9, 40);
addFooter(slide);
}
// Slide 9: Operational Definitions I
{
const slide = pptx.addSlide();
addHeader(slide, 'Operational Definitions I');
addBullets(slide, [
'Urethral stricture: fibrotic narrowing of urethra; study includes anterior strictures <1.5 cm',
'Cold Knife OIU: endoscopic incision at 12 o clock using Sachse knife',
'Holmium:YAG OIU: laser incision at 12 o clock under direct vision',
'Success: no recurrence + satisfactory Qmax without additional intervention'
], 0.7, 1.0, 12.0, 5.9, 40);
addFooter(slide);
}
// Slide 10: Operational Definitions II
{
const slide = pptx.addSlide();
addHeader(slide, 'Operational Definitions II');
addBullets(slide, [
'Recurrence: return of obstructive symptoms and/or imaging/endoscopic evidence requiring treatment',
'Complications graded with Clavien-Dindo classification',
'Operative time: from endoscope insertion to catheter placement',
'Catheterization: 14-18 Fr catheter for standardized 3-7 days',
'Follow-up: 1, 3, 6, 12 months with Qmax, PVR, IPSS and exam'
], 0.7, 1.0, 12.0, 5.9, 40);
addFooter(slide);
}
// Slide 11: Materials and Methods
{
const slide = pptx.addSlide();
addHeader(slide, 'Materials and Methods');
addBullets(slide, [
'Study design: Comparative quasi experimental study',
'Setting: Department of Urology, Sahiwal Teaching Hospital',
'Duration: 15-18 months after approval',
'Sample size: 66 patients (33 per group), power 80%, confidence 95%',
'Sampling: non probability consecutive sampling'
], 0.7, 1.0, 12.0, 5.9, 40);
addFooter(slide);
}
// Slide 12: Inclusion and Exclusion Criteria
{
const slide = pptx.addSlide();
addHeader(slide, 'Eligibility Criteria');
slide.addShape(pptx.ShapeType.roundRect, {
x: 0.55,
y: 1.0,
w: 6.1,
h: 5.9,
fill: { color: 'ECFDF5' },
line: { color: '9ED8BE', pt: 1 }
});
slide.addShape(pptx.ShapeType.roundRect, {
x: 6.7,
y: 1.0,
w: 6.1,
h: 5.9,
fill: { color: 'FFF1F2' },
line: { color: 'F4B5BD', pt: 1 }
});
slide.addText('Inclusion', { x: 0.8, y: 1.18, w: 5.6, h: 0.5, fontSize: 34, bold: true, color: '146C43' });
slide.addText('Exclusion', { x: 6.95, y: 1.18, w: 5.6, h: 0.5, fontSize: 34, bold: true, color: 'B42318' });
addBullets(slide, [
'Male patients age >18 years',
'Anterior urethral stricture requiring OIU',
'Single short segment stricture <=1.5 cm',
'Informed consent provided'
], 0.8, 1.8, 5.7, 4.8, 30);
addBullets(slide, [
'Stricture >1.5 cm',
'Multiple/complex/obliterative strictures',
'Prior urethral surgery/urethroplasty',
'Congenital obstruction or active UTI',
'Major comorbidities precluding surgery'
], 6.95, 1.8, 5.7, 4.8, 30);
addFooter(slide);
}
// Slide 13: Variables and Grouping
{
const slide = pptx.addSlide();
addHeader(slide, 'Variables and Allocation');
addBullets(slide, [
'Independent variable: intervention type (HIU vs CIU)',
'Dependent variables: Qmax, PVR, IPSS, operative time, complications, recurrence',
'Confounders: age, stricture length/location, etiology, baseline urinary function, comorbidities',
'Group A: Holmium:YAG laser OIU',
'Group B: Cold knife OIU',
'Allocation method: lottery method'
], 0.7, 1.0, 12.0, 5.9, 38);
addFooter(slide);
}
// Slide 14: Procedure and Follow-up
{
const slide = pptx.addSlide();
addHeader(slide, 'Procedure and Follow-up Protocol');
addBullets(slide, [
'Pre-op: history, exam, Qmax, IPSS, PVR, RUG/ascending cystourethrogram',
'Equipment: 20.5 Fr rigid cystoscope in both groups',
'Laser settings: 365 micron fiber, 1 J, 15 Hz, 15 W',
'Incision at 12 o clock in both techniques',
'Post-op catheter: 14-18 Fr for 3-7 days',
'Follow-up at 1, 3, 6, 12 months; RUG if Qmax <10 mL/s'
], 0.7, 1.0, 12.0, 5.9, 36);
addFooter(slide);
}
// Slide 15: Data Collection Tools
{
const slide = pptx.addSlide();
addHeader(slide, 'Data Collection Tools/Instruments');
addBullets(slide, [
'Uroflowmeter: objective Qmax measurement',
'Ultrasound bladder scanner: PVR measurement',
'IPSS questionnaire: symptom and quality of life assessment',
'RUG/MCUG: anatomical stricture assessment',
'Operative records: time, findings and complications',
'Clavien-Dindo grading for standardized complication reporting',
'Structured case report form and SPSS database entry'
], 0.7, 1.0, 12.0, 5.9, 34);
addFooter(slide);
}
// Slide 16: Statistical Analysis
{
const slide = pptx.addSlide();
addHeader(slide, 'Statistical Analysis Plan');
addBullets(slide, [
'Software: latest SPSS version',
'Continuous variables: mean +/- SD or median (IQR)',
'Categorical variables: frequency and percentage',
'Independent t-test / Mann-Whitney U test for between-group comparison',
'Chi-square/Fisher exact test for categorical outcomes',
'Repeated measures ANOVA/Friedman test for longitudinal outcomes',
'Significance level: p < 0.05'
], 0.7, 1.0, 12.0, 5.9, 34);
addFooter(slide);
}
// Slide 17: Outcome Utilization
{
const slide = pptx.addSlide();
addHeader(slide, 'Expected Outcome and Utilization');
addBullets(slide, [
'Define comparative efficacy and safety of HIU vs CIU in strictures <1.5 cm',
'Support evidence-based local protocol development',
'If laser superior: potential for lower recurrence and fewer complications',
'If cold knife comparable: support cost-conscious and efficient OR use',
'Improve patient quality of life, satisfaction and resource allocation'
], 0.7, 1.0, 12.0, 5.9, 38);
addFooter(slide);
}
// Slide 18: Ethical Considerations
{
const slide = pptx.addSlide();
addHeader(slide, 'Ethical Considerations');
addBullets(slide, [
'Formal permission from Institutional Ethical Review Committee',
'Written informed consent from all participants',
'Privacy and confidentiality maintained throughout study',
'Study follows Helsinki Declaration principles for human research',
'Participants can withdraw at any stage without effect on routine care'
], 0.7, 1.0, 12.0, 5.9, 40);
addFooter(slide);
}
// Slide 19: Budget and Timeline
{
const slide = pptx.addSlide();
addHeader(slide, 'Estimated Cost and Gantt Timeline');
slide.addShape(pptx.ShapeType.roundRect, {
x: 0.55,
y: 1.0,
w: 5.9,
h: 5.9,
fill: { color: 'F7FAFC' },
line: { color: COLORS.line, pt: 1 }
});
slide.addText('Estimated Cost\nTotal: PKR 6000', {
x: 0.8,
y: 1.25,
w: 5.4,
h: 1.0,
fontSize: 36,
bold: true,
color: COLORS.primary,
align: 'center'
});
addBullets(slide, [
'Stationery: 700',
'A4 paper: 1800',
'Photocopy: 1500',
'Miscellaneous: 2000',
'Intervention and assessment tools available at hospital'
], 0.8, 2.4, 5.3, 3.8, 28);
slide.addShape(pptx.ShapeType.roundRect, {
x: 6.75,
y: 1.0,
w: 6.05,
h: 5.9,
fill: { color: 'F7FAFC' },
line: { color: COLORS.line, pt: 1 }
});
slide.addText('Gantt Highlights (15 months)', {
x: 7.0,
y: 1.25,
w: 5.6,
h: 0.6,
fontSize: 28,
bold: true,
color: COLORS.primary,
align: 'center'
});
addBullets(slide, [
'Month 1-2: literature review, ethics approval',
'Month 3-8: recruitment and data collection',
'Month 9-12: follow-up',
'Month 13: data analysis',
'Month 14-15: manuscript drafting and submission'
], 7.0, 2.0, 5.5, 4.6, 28);
addFooter(slide);
}
// Slide 20: Study Proforma
{
const slide = pptx.addSlide();
addHeader(slide, 'Study Proforma (Questionnaire)');
addBullets(slide, [
'Section 1: Demographic and baseline data (age, comorbidities, etiology, location)',
'Section 2: Preoperative variables (Qmax, PVR, IPSS, RUG/MCUG)',
'Section 3: Intraoperative data (group, operative time, complications, catheter details)',
'Section 4: Follow-up at 1, 3, 6, 12 months (Qmax, PVR, IPSS, recurrence, redo surgery)',
'Section 5: Patient-reported outcomes and consent confirmation'
], 0.7, 1.0, 12.0, 5.9, 32);
addFooter(slide, 'Complete proforma included in appendix slides');
}
// Slide 21-23: Detailed Study Proforma Form Layout
function addProformaSlide(slideTitle, lines) {
const slide = pptx.addSlide();
addHeader(slide, slideTitle);
slide.addShape(pptx.ShapeType.roundRect, {
x: 0.45,
y: 0.95,
w: 12.45,
h: 6.1,
fill: { color: 'FFFFFF' },
line: { color: COLORS.line, pt: 1.5 },
radius: 0.05
});
let y = 1.15;
lines.forEach((l) => {
slide.addText(l, {
x: 0.75,
y,
w: 11.9,
h: 0.5,
fontSize: 24,
color: COLORS.dark,
bold: l.endsWith(':')
});
y += 0.42;
});
addFooter(slide, 'Study Proforma Appendix');
}
addProformaSlide('Study Proforma Appendix I', [
'Study Title: Evaluation of Holmium YAG Laser versus Cold Knife in OIU (<1.5 cm)',
'Patient SR No: _____________ Date: _____________',
'1. Demographic and Baseline Data:',
'Age: ______ years Comorbidities: HTN / DM / Heart disease / Other',
'Etiology: Idiopathic / Trauma / Iatrogenic / Infection / Other',
'Stricture Location: Bulbar / Penile',
'2. Preoperative Assessment:',
'Qmax: ______ mL/s PVR: ______ mL IPSS: ______',
'Imaging Findings (RUG/MCUG): ____________________'
]);
addProformaSlide('Study Proforma Appendix II', [
'3. Intraoperative Data:',
'Group Allocation: Holmium:YAG Laser / Cold Knife',
'Operative Time: ______ minutes',
'Complications: None / Bleeding / Perforation / Other',
'Catheter Size: ______ Fr Catheter Duration: ______ days',
'4. Follow-up Data (RUG if Qmax <10 mL/s):',
'1 Month: Qmax ___ PVR ___ IPSS ___ Recurrence Y/N Redo Y/N Complications ___',
'3 Month: Qmax ___ PVR ___ IPSS ___ Recurrence Y/N Redo Y/N Complications ___',
'6 Month: Qmax ___ PVR ___ IPSS ___ Recurrence Y/N Redo Y/N Complications ___',
'12 Month: Qmax ___ PVR ___ IPSS ___ Recurrence Y/N Redo Y/N Complications ___'
]);
addProformaSlide('Study Proforma Appendix III', [
'5. Patient-Reported Outcomes:',
'Overall Satisfaction: Very dissatisfied / Dissatisfied / Neutral / Satisfied / Very satisfied',
'New Symptoms: Urgency / Frequency / Hesitancy / Straining / Incomplete emptying',
'Additional Symptoms: Pain / Incontinence / Other: ____________________',
'Consent Confirmation:',
'I confirm informed consent was obtained before enrollment.',
'Researcher Name & Signature: ____________________',
'Patient Name & Signature/Thumb impression: ____________________'
]);
// Slide 24: Informed Consent
{
const slide = pptx.addSlide();
addHeader(slide, 'Informed Consent and IRB');
addBullets(slide, [
'Participants receive complete explanation of purpose, procedures, risks and benefits',
'Confidentiality ensured for all personal and clinical data',
'English and Urdu informed consent proforma included',
'Participants may refuse or withdraw without any compromise in routine treatment',
'IRB approval from Sahiwal Medical College/Teaching Hospitals required and documented'
], 0.7, 1.0, 12.0, 5.9, 34);
addFooter(slide);
}
// Slide 25: References
{
const slide = pptx.addSlide();
addHeader(slide, 'Key References');
addBullets(slide, [
'Chi J et al. Int J Surg. 2024;110:4382-4392',
'Chen C et al. Medicine. 2024;103',
'Faizan M et al. Lasers Med Sci. 2024;39:209',
'Ali M et al. World J Urol. 2023;41:1897-1904',
'Akdemir F et al. J Urol Surg. 2023',
'Ahmed M et al. Egypt J Hosp Med. 2023',
'Gamal M et al. J Lasers Med Sci. 2021;12:e35',
'Jain S et al. Urol Ann. 2014;6:328-333'
], 0.7, 1.0, 12.0, 5.9, 28);
addFooter(slide);
}
// Slide 26: Thank You
{
const slide = pptx.addSlide();
slide.background = { color: COLORS.primary };
slide.addText('Thank You', {
x: 0.8,
y: 1.8,
w: 11.7,
h: 1.4,
fontSize: 72,
bold: true,
align: 'center',
color: 'FFFFFF'
});
slide.addText('Questions and Discussion', {
x: 1.0,
y: 3.5,
w: 11.3,
h: 0.9,
fontSize: 42,
align: 'center',
color: 'EAF2FF'
});
slide.addText('Dr. Hafiz Naveed Ul Hassan Sajid | MS Urology', {
x: 1.0,
y: 5.4,
w: 11.3,
h: 0.5,
fontSize: 24,
align: 'center',
color: 'D6E6FF'
});
}
pptx.writeFile({ fileName: '/home/daytona/workspace/naveed-synopsis-ppt/SAC_Synopsis_Defense_Dr_Hafiz_Naveed.pptx' });
node /home/daytona/workspace/naveed-synopsis-ppt/make_presentation.js
SAC Synopsis Defense Dr Hafiz Naveed
Presentation · PPTX