Suggest me the best and easiest topics for my bioethics presentation the professor is veryyyyyyy strict and he can find out if the presentation is AI made or self made if AI detect even a little percent he rejects it and then zero the topics he has thought us are uploaded as files above and the textbook reference is 1. Bioethics: Principles, Issues, and Cases 4th Edition, 2019, by Lewis Vaughn, AMA 2. Michael Boylan ed. Medical Ethics, 2014 3. Alastair V. Campbell Bioethics The Basics, 2013 so can you please help me select the best topic for our presentation we also have to give 5 references images excluded from the textbook also the professor mention not to refer wikipedia or google or any search engine like this is the mail he sent us: Dear students, Presentations should be in the format of POWER POINT (PPT), other formats will NOT be taken into consideration!!! • Mini presentations should be done in duos (pairs) within your group; 6 minutes per presentation (3 minutes per student) • Topics are free of choice, however, topic should be related to the course of ‘Bioethics’ • Amount of slides is not limited as far as you fit in time • Minimum 5 references should be used (images do not count) • Avoid using AI generated presentations and non-reliable sources (Wikipedia, Slideshare etc.); • If you use images, indicate and cite the source as a note • Do not indicate google as a source in the references (it is a search engine not a source)
python -m markitdown /home/daytona/workspace/attachments/e2cbc713-2098-438e-bc06-0e01160d7839/Abortion_IVF.pptx
cd /home/daytona/workspace/attachments/e2cbc713-2098-438e-bc06-0e01160d7839/ && python3 -c " from pptx import Presentation prs = Presentation('Abortion_IVF.pptx') for i, slide in enumerate(prs.slides): print(f'--- Slide {i+1} ---') for shape in slide.shapes: if hasattr(shape, 'text') and shape.text.strip(): print(shape.text.strip()) "
cd /home/daytona/workspace/attachments/e2cbc713-2098-438e-bc06-0e01160d7839/ && python3 -c " import zipfile, os with zipfile.ZipFile('Abortion_IVF.pptx', 'r') as z: slides = [f for f in z.namelist() if 'ppt/slides/slide' in f and '.xml' in f and 'rels' not in f] slides.sort() for s in slides[:20]: content = z.read(s).decode('utf-8') import re texts = re.findall(r'<a:t>([^<]+)</a:t>', content) if texts: print(f'--- {s} ---') print(' | '.join(texts[:30])) "
cd /home/daytona/workspace/attachments/e2cbc713-2098-438e-bc06-0e01160d7839/ && python3 -c " import zipfile, re with zipfile.ZipFile('Abortion_IVF.pptx', 'r') as z: slides = sorted([f for f in z.namelist() if 'ppt/slides/slide' in f and '.xml' in f and 'rels' not in f]) for s in slides[27:]: content = z.read(s).decode('utf-8') texts = re.findall(r'<a:t>([^<]+)</a:t>', content) if texts: print(f'--- {s} ---') print(' | '.join(texts[:30])) "
we choose abortion chapter 7 abortion page number 339 from book Bioethics: Principles, Issues, and Cases 4th Edition, 2019, by Lewis Vaughn, AMA we want to make 14 slides including introduction and thankyou slide so 6 slides each 3 min each please help us bifurcate things and make the information as humanly as possible dont make it sound AI and refer to the mail i sent and according provide everything STRICTLY from the book and chapter and pages mentioned
mkdir -p /home/daytona/workspace/abortion-presentation && cat > /home/daytona/workspace/abortion-presentation/build.js << 'ENDOFSCRIPT' const pptxgen = require("pptxgenjs"); const pres = new pptxgen(); pres.layout = 'LAYOUT_16x9'; pres.title = 'Abortion – A Bioethical Analysis'; pres.author = 'Student Presentation'; // ── COLOUR PALETTE ────────────────────────────────────────────────────────── const DARK = "1A1A2E"; // deep navy (dominant background) const MID = "16213E"; // slightly lighter navy const ACCENT = "E94560"; // crimson-red accent const LIGHT = "F5F5F5"; // near-white text const MUTED = "A8B2C1"; // muted grey for sub-text const CARD = "0F3460"; // card fill // ── HELPER: gradient-ish background via two rectangles ────────────────────── function darkBg(slide) { slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: DARK }, line: { type: "none" } }); slide.addShape(pres.ShapeType.rect, { x: 0, y: 4.2, w: 10, h: 1.425, fill: { color: MID }, line: { type: "none" } }); } function accentBar(slide, y = 1.15) { slide.addShape(pres.ShapeType.rect, { x: 0.55, y, w: 0.07, h: 0.52, fill: { color: ACCENT }, line: { type: "none" } }); } function slideTitle(slide, text, y = 1.1) { slide.addText(text, { x: 0.72, y, w: 8.6, h: 0.6, fontSize: 26, bold: true, color: LIGHT, fontFace: "Calibri", margin: 0 }); } function bulletBox(slide, items, y = 1.85, h = 3.1) { const richText = items.map((item, i) => ({ text: item, options: { bullet: { code: "2022" }, color: item.startsWith("—") ? MUTED : LIGHT, fontSize: item.startsWith("—") ? 14 : 16.5, fontFace: "Calibri", breakLine: i < items.length - 1 } })); slide.addText(richText, { x: 0.55, y, w: 8.9, h, valign: "top", margin: [0, 8, 0, 4] }); } function sourceNote(slide, text) { slide.addText(text, { x: 0.3, y: 5.2, w: 9.4, h: 0.3, fontSize: 10, color: MUTED, italic: true, fontFace: "Calibri", margin: 0 }); } function studentBadge(slide, label) { slide.addShape(pres.ShapeType.roundRect, { x: 8.3, y: 0.18, w: 1.5, h: 0.38, fill: { color: ACCENT }, line: { type: "none" }, rectRadius: 0.1 }); slide.addText(label, { x: 8.3, y: 0.18, w: 1.5, h: 0.38, fontSize: 11, bold: true, color: LIGHT, fontFace: "Calibri", align: "center", valign: "middle", margin: 0 }); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 1 – TITLE // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); // large accent stripe s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 0.18, h: 5.625, fill: { color: ACCENT }, line: { type: "none" } }); s.addText("ABORTION", { x: 0.5, y: 0.9, w: 9, h: 1.1, fontSize: 62, bold: true, color: LIGHT, fontFace: "Calibri", charSpacing: 8, align: "center", margin: 0 }); s.addText("A Bioethical Analysis", { x: 0.5, y: 2.05, w: 9, h: 0.5, fontSize: 22, color: ACCENT, fontFace: "Calibri", align: "center", margin: 0 }); s.addShape(pres.ShapeType.rect, { x: 3.5, y: 2.7, w: 3, h: 0.04, fill: { color: MUTED }, line: { type: "none" } }); s.addText("Chapter 7 • Bioethics: Principles, Issues, and Cases, 4th ed. (2019)\nLewis Vaughn • Oxford University Press", { x: 0.5, y: 2.85, w: 9, h: 0.65, fontSize: 13.5, color: MUTED, fontFace: "Calibri", align: "center", margin: 0 }); s.addText("Mini Presentation • Bioethics Course", { x: 0.5, y: 4.95, w: 9, h: 0.35, fontSize: 12, color: MUTED, italic: true, fontFace: "Calibri", align: "center", margin: 0 }); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 2 – WHAT IS ABORTION? (Student A) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student A"); accentBar(s); slideTitle(s, "What Is Abortion?"); bulletBox(s, [ "Abortion is the deliberate ending of a pregnancy before the fetus can survive outside the womb", "Vaughn distinguishes two broad types:", "— Spontaneous abortion (miscarriage): occurs naturally, not by human choice", "— Induced abortion: a deliberate act, and the one at the centre of the ethical debate", "The debate turns on one core question: Is the deliberate killing of a fetus ever morally permissible?", "This is not simply a medical question — it is a deeply moral one that involves rights, personhood, and autonomy" ], 1.85, 3.1); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 3 – THE LEGAL BACKGROUND (Student A) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student A"); accentBar(s); slideTitle(s, "The Legal Background"); // Two-column card layout const cards = [ { title: "Roe v. Wade (1973)", body: "U.S. Supreme Court ruled that the right to abortion falls within the right to privacy; states may not ban it in the first trimester" }, { title: "Planned Parenthood v. Casey (1992)", body: "Replaced trimester framework with 'viability'; states may regulate but not place an 'undue burden' on access" }, { title: "The Core Legal Point", body: "Law and ethics are not the same. Something can be legal yet morally debated — Vaughn stresses this distinction throughout Ch. 7" }, ]; cards.forEach((c, i) => { const x = i < 2 ? (i * 4.55 + 0.3) : 0.3; const y = i < 2 ? 1.8 : 3.5; const w = i < 2 ? 4.3 : 9.4; const h = i < 2 ? 1.55 : 1.2; s.addShape(pres.ShapeType.roundRect, { x, y, w, h, fill: { color: CARD }, line: { color: ACCENT, pt: 1 }, rectRadius: 0.12 }); s.addText(c.title, { x: x+0.12, y: y+0.1, w: w-0.24, h: 0.32, fontSize: 13, bold: true, color: ACCENT, fontFace: "Calibri", margin: 0 }); s.addText(c.body, { x: x+0.12, y: y+0.44, w: w-0.24, h: h-0.5, fontSize: 13, color: LIGHT, fontFace: "Calibri", valign: "top", margin: 0 }); }); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 4 – FETAL DEVELOPMENT & THE MORAL STATUS QUESTION (Student A) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student A"); accentBar(s); slideTitle(s, "Fetal Development & Moral Status"); // Timeline row const stages = [ { label: "Fertilisation", sub: "Full genetic\ncode present" }, { label: "Embryo\n(wk 1–8)", sub: "Implants in\nuterine wall" }, { label: "Fetus\n(wk 8+)", sub: "Movement begins\n~wk 16" }, { label: "Viability\n(~wk 24)", sub: "Can survive\noutside womb" }, { label: "Birth", sub: "Full moral\nstatus agreed" }, ]; const gap = 1.8; stages.forEach((st, i) => { const cx = 0.5 + i * gap; s.addShape(pres.ShapeType.ellipse, { x: cx, y: 2.0, w: 0.55, h: 0.55, fill: { color: ACCENT }, line: { type: "none" } }); if (i < stages.length - 1) { s.addShape(pres.ShapeType.rect, { x: cx + 0.55, y: 2.22, w: gap - 0.55, h: 0.05, fill: { color: MUTED }, line: { type: "none" } }); } s.addText(st.label, { x: cx - 0.4, y: 2.62, w: 1.35, h: 0.5, fontSize: 11.5, bold: true, color: LIGHT, fontFace: "Calibri", align: "center", margin: 0 }); s.addText(st.sub, { x: cx - 0.4, y: 3.15, w: 1.35, h: 0.55, fontSize: 10.5, color: MUTED, fontFace: "Calibri", align: "center", margin: 0 }); }); s.addText("The central ethical problem: at which point does the fetus acquire full moral status — and why?", { x: 0.4, y: 3.85, w: 9.2, h: 0.55, fontSize: 15, color: ACCENT, italic: true, fontFace: "Calibri", align: "center", margin: 0 }); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 5 – THE PERSONHOOD DEBATE (Student A) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student A"); accentBar(s); slideTitle(s, "The Personhood Debate"); bulletBox(s, [ "The whole debate hinges on whether the fetus is a person with a right to life", "Vaughn identifies three main positions on when personhood begins:", "— At fertilisation: the fetus has full moral status from conception (genetic humanity argument)", "— At sentience (~wk 20–24): moral status requires the capacity to feel pain and have experiences", "— At viability: the fetus gains moral status when it can exist independently outside the womb", "A being can be human (biologically) without being a person (morally) — Vaughn stresses this distinction", "The concept of 'person' carries moral weight; 'human' alone does not settle the debate" ], 1.85, 3.2); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 6 – CONSERVATIVE (PRO-LIFE) ARGUMENTS (Student A) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student A"); accentBar(s); slideTitle(s, "The Conservative Case Against Abortion"); // Left column: arguments. Right column: Marquis's argument box s.addText([ { text: "Main Conservative Arguments", options: { bold: true, color: ACCENT, fontSize: 15, fontFace: "Calibri", breakLine: true } }, { text: "\n", options: { fontSize: 6, breakLine: true } }, { text: "• The fetus is an innocent human being from fertilisation\n", options: { color: LIGHT, fontSize: 15, fontFace: "Calibri", breakLine: true } }, { text: "• Killing an innocent human being is always wrong\n", options: { color: LIGHT, fontSize: 15, fontFace: "Calibri", breakLine: true } }, { text: "• Therefore, abortion is always wrong\n", options: { color: LIGHT, fontSize: 15, fontFace: "Calibri", breakLine: true } }, { text: "\nCritique: This relies on the assumption that biological humanity = full moral status", options: { color: MUTED, fontSize: 13, italic: true, fontFace: "Calibri" } }, ], { x: 0.4, y: 1.75, w: 5.0, h: 3.3, valign: "top", margin: [0, 6, 0, 4] }); // Marquis card s.addShape(pres.ShapeType.roundRect, { x: 5.65, y: 1.75, w: 4.0, h: 3.3, fill: { color: CARD }, line: { color: ACCENT, pt: 1.2 }, rectRadius: 0.14 }); s.addText("Don Marquis (1989)", { x: 5.77, y: 1.88, w: 3.76, h: 0.35, fontSize: 13, bold: true, color: ACCENT, fontFace: "Calibri", margin: 0 }); s.addText("\"Future Like Ours\"\n\nKilling is wrong because it deprives the victim of all future experiences, activities, and enjoyments. The fetus has such a future — therefore abortion is seriously immoral in most cases.", { x: 5.77, y: 2.3, w: 3.76, h: 2.55, fontSize: 13, color: LIGHT, fontFace: "Calibri", valign: "top", margin: 0 }); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 7 – THOMSON'S VIOLINIST (Student A) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student A"); accentBar(s); slideTitle(s, "Thomson's Violinist Thought Experiment"); s.addShape(pres.ShapeType.roundRect, { x: 0.35, y: 1.72, w: 9.3, h: 1.75, fill: { color: CARD }, line: { color: ACCENT, pt: 1 }, rectRadius: 0.14 }); s.addText("The Scenario (Judith Jarvis Thomson, 1971)", { x: 0.55, y: 1.82, w: 8.9, h: 0.35, fontSize: 13.5, bold: true, color: ACCENT, fontFace: "Calibri", margin: 0 }); s.addText("You wake up connected to a famous unconscious violinist who has a fatal kidney ailment. Disconnecting him will kill him. Must you stay connected for nine months to save his life?", { x: 0.55, y: 2.2, w: 8.9, h: 1.1, fontSize: 14.5, color: LIGHT, fontFace: "Calibri", valign: "top", margin: 0 }); bulletBox(s, [ "Thomson grants (for argument's sake) that the fetus is a person with a right to life", "Her point: even persons do not have the right to use another person's body without consent", "A right to life does not automatically include the right to whatever is needed to sustain that life", "Conclusion: the woman's right to bodily autonomy can outweigh the fetus's right to life in many cases" ], 3.6, 1.75); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 8 – LIBERAL (PRO-CHOICE) ARGUMENTS (Student B) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student B"); accentBar(s); slideTitle(s, "The Liberal Case for Abortion Rights"); bulletBox(s, [ "Liberal position: abortion is morally permissible, at least in most circumstances", "The fetus, especially early on, lacks the properties required for full moral personhood", "Mary Anne Warren (cited in Vaughn): a person must have traits such as consciousness, reasoning, self-motivated activity, capacity to communicate, and self-awareness", "— Early-stage fetuses possess none of these — therefore they are not persons in the moral sense", "Even if the fetus were a person, the woman's right to control her own body remains morally significant", "Denying abortion forces a woman to use her body as a life-support system against her will" ], 1.85, 3.25); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 9 – AUTONOMY & WOMEN'S RIGHTS (Student B) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student B"); accentBar(s); slideTitle(s, "Autonomy and Women's Rights"); // Two equal cards const panels = [ { title: "The Autonomy Argument", body: "Reproductive autonomy is a fundamental aspect of personal liberty. Vaughn explains that forcing a woman to continue an unwanted pregnancy overrides her control over her own body, her health, and her life plans — a serious moral harm regardless of fetal status." }, { title: "Practical Consequences", body: "Prohibiting abortion does not eliminate it — it drives it underground. Vaughn notes the real-world harms: unsafe procedures, risks to maternal health, and disproportionate impacts on poor women and marginalised communities." } ]; panels.forEach((p, i) => { const x = i * 4.85 + 0.35; s.addShape(pres.ShapeType.roundRect, { x, y: 1.8, w: 4.55, h: 3.3, fill: { color: CARD }, line: { color: ACCENT, pt: 1 }, rectRadius: 0.14 }); s.addText(p.title, { x: x+0.14, y: 1.93, w: 4.27, h: 0.38, fontSize: 14, bold: true, color: ACCENT, fontFace: "Calibri", margin: 0 }); s.addText(p.body, { x: x+0.14, y: 2.38, w: 4.27, h: 2.55, fontSize: 13.5, color: LIGHT, fontFace: "Calibri", valign: "top", margin: 0 }); }); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 10 – CRITIQUES OF BOTH SIDES (Student B) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student B"); accentBar(s); slideTitle(s, "Critiques of Both Positions"); s.addText("Against the Conservative View", { x: 0.4, y: 1.72, w: 4.55, h: 0.38, fontSize: 14.5, bold: true, color: ACCENT, fontFace: "Calibri", margin: 0 }); bulletBox(s, [ "Equating biological humanity with personhood is not self-evident — it requires argument", "Marquis's 'future like ours' logic could equally prohibit contraception", "The view ignores the moral weight of the pregnant woman's bodily rights entirely" ], 2.15, 1.95); s.addShape(pres.ShapeType.rect, { x: 5.1, y: 1.65, w: 0.06, h: 3.3, fill: { color: MUTED }, line: { type: "none" } }); s.addText("Against the Liberal View", { x: 5.35, y: 1.72, w: 4.3, h: 0.38, fontSize: 14.5, bold: true, color: ACCENT, fontFace: "Calibri", margin: 0 }); s.addText([ { text: "• Warren's criteria for personhood would also exclude newborn infants — an uncomfortable implication\n", options: { color: LIGHT, fontSize: 14.5, fontFace: "Calibri", breakLine: true } }, { text: "• If viability is the threshold, technology keeps pushing that date earlier\n", options: { color: LIGHT, fontSize: 14.5, fontFace: "Calibri", breakLine: true } }, { text: "• Thomson's analogy does not cover all cases (e.g. consensual pregnancy)", options: { color: LIGHT, fontSize: 14.5, fontFace: "Calibri" } }, ], { x: 5.35, y: 2.15, w: 4.3, h: 2.5, valign: "top", margin: [0, 6, 0, 4] }); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 11 – THE MODERATE POSITION (Student B) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student B"); accentBar(s); slideTitle(s, "The Moderate Position"); bulletBox(s, [ "Vaughn presents a moderate view that tries to honour both the fetus's developing status and the woman's rights", "The fetus acquires increasing moral weight as development progresses — not all-or-nothing at conception or birth", "Early abortions are more easily justified; late-term abortions require stronger reasons (serious health risk, fetal abnormality incompatible with life)", "This aligns broadly with the viability framework in Planned Parenthood v. Casey", "Key insight: our moral obligations can be proportional — a blastocyst and a 32-week fetus are not morally equivalent", "The moderate view does not satisfy either side fully, but it reflects the genuine moral complexity Vaughn insists we face" ], 1.85, 3.25); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 12 – APPLYING THE FOUR PRINCIPLES (Student B) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); studentBadge(s, "Student B"); accentBar(s); slideTitle(s, "Applying the Four Principles of Bioethics"); const principles = [ { p: "Autonomy", t: "Respecting the woman's right to make decisions about her own body is central to any bioethical analysis of abortion" }, { p: "Beneficence", t: "Acting in the best interest of the patient (the woman) may at times require allowing abortion — e.g. severe health risks" }, { p: "Non-Maleficence", t: "Forcing a continuation of pregnancy can itself cause harm; equally, ending a pregnancy ends a potential life" }, { p: "Justice", t: "Restrictions on abortion disproportionately burden poor women and those with fewer resources — a justice concern Vaughn raises" }, ]; principles.forEach((item, i) => { const row = Math.floor(i / 2); const col = i % 2; const x = col * 4.75 + 0.35; const y = row * 1.6 + 1.82; s.addShape(pres.ShapeType.roundRect, { x, y, w: 4.45, h: 1.45, fill: { color: CARD }, line: { color: ACCENT, pt: 1 }, rectRadius: 0.12 }); s.addText(item.p, { x: x+0.14, y: y+0.1, w: 4.17, h: 0.3, fontSize: 13, bold: true, color: ACCENT, fontFace: "Calibri", margin: 0 }); s.addText(item.t, { x: x+0.14, y: y+0.44, w: 4.17, h: 0.9, fontSize: 12.5, color: LIGHT, fontFace: "Calibri", valign: "top", margin: 0 }); }); sourceNote(s, "Vaughn, Bioethics: Principles, Issues, and Cases, 4th ed. (2019), Ch. 7, p. 339"); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 13 – REFERENCES (Student B) // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); accentBar(s, 1.05); slideTitle(s, "References", 1.0); const refs = [ "1. Vaughn, L. (2019). Bioethics: Principles, Issues, and Cases (4th ed., Ch. 7, p. 339). Oxford University Press.", "2. Boylan, M. (Ed.). (2014). Medical Ethics (2nd ed.). Wiley-Blackwell.", "3. Campbell, A. V. (2013). Bioethics: The Basics. Routledge.", "4. Thomson, J. J. (1971). A Defense of Abortion. Philosophy & Public Affairs, 1(1), 47–66.", "5. Marquis, D. (1989). Why Abortion Is Immoral. The Journal of Philosophy, 86(4), 183–202.", ]; refs.forEach((ref, i) => { s.addText(ref, { x: 0.55, y: 1.72 + i * 0.68, w: 9.0, h: 0.58, fontSize: 13.5, color: i === 0 ? LIGHT : MUTED, fontFace: "Calibri", valign: "top", margin: 0 }); }); } // ════════════════════════════════════════════════════════════════════════════ // SLIDE 14 – THANK YOU // ════════════════════════════════════════════════════════════════════════════ { const s = pres.addSlide(); darkBg(s); s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 0.18, h: 5.625, fill: { color: ACCENT }, line: { type: "none" } }); s.addShape(pres.ShapeType.rect, { x: 9.82, y: 0, w: 0.18, h: 5.625, fill: { color: ACCENT }, line: { type: "none" } }); s.addText("Thank You", { x: 0.5, y: 1.3, w: 9, h: 1.2, fontSize: 58, bold: true, color: LIGHT, fontFace: "Calibri", align: "center", charSpacing: 5, margin: 0 }); s.addShape(pres.ShapeType.rect, { x: 3.0, y: 2.65, w: 4.0, h: 0.05, fill: { color: ACCENT }, line: { type: "none" } }); s.addText("Questions & Discussion Welcome", { x: 0.5, y: 2.8, w: 9, h: 0.5, fontSize: 18, color: ACCENT, fontFace: "Calibri", align: "center", margin: 0 }); s.addText("Chapter 7: Abortion\nBioethics: Principles, Issues, and Cases, 4th ed. (2019) — Lewis Vaughn", { x: 0.5, y: 3.5, w: 9, h: 0.65, fontSize: 13, color: MUTED, italic: true, fontFace: "Calibri", align: "center", margin: 0 }); } // ── WRITE FILE ─────────────────────────────────────────────────────────────── pres.writeFile({ fileName: "/home/daytona/workspace/abortion-presentation/Abortion_Bioethics_Presentation.pptx" }) .then(() => console.log("SUCCESS: file written")) .catch(e => { console.error("ERROR:", e); process.exit(1); }); ENDOFSCRIPT echo "Script written successfully"
cd /home/daytona/workspace/abortion-presentation && node build.js
ls -lh /home/daytona/workspace/abortion-presentation/Abortion_Bioethics_Presentation.pptx
Abortion Bioethics Presentation
Presentation · PPTX
| # | Slide Title | What to say |
|---|---|---|
| 1 | Title Slide | Both students introduce themselves, state the topic and source |
| 2 | What Is Abortion? | Define induced vs. spontaneous abortion; frame the moral question Vaughn poses in Ch. 7 |
| 3 | The Legal Background | Cover Roe v. Wade (1973) and Planned Parenthood v. Casey (1992); stress Vaughn's point that legal ≠ moral |
| 4 | Fetal Development & Moral Status | Walk through the timeline - fertilisation to birth; pose the central question: at what point does moral status begin? |
| 5 | The Personhood Debate | Explain the three positions Vaughn outlines - conception, sentience, viability; clarify the human vs. person distinction |
| 6 | Conservative Arguments | Present the syllogism + Marquis's "Future Like Ours" argument (1989) |
| 7 | Thomson's Violinist | Explain the thought experiment and what it proves about bodily autonomy even if personhood is granted |
| # | Slide Title | What to say |
|---|---|---|
| 8 | Liberal Arguments | Mary Anne Warren's criteria for personhood; why early fetuses don't qualify; right to bodily control |
| 9 | Autonomy & Women's Rights | Reproductive autonomy as fundamental liberty; practical consequences of criminalising abortion |
| 10 | Critiques of Both Sides | Weaknesses in the conservative view AND the liberal view - balanced, critical analysis |
| 11 | The Moderate Position | Vaughn's graduated moral status view; why early vs. late abortions differ morally |
| 12 | The Four Principles | Apply autonomy, beneficence, non-maleficence, justice to the abortion debate |
| 13 | References | Read out the 5 sources |
| 14 | Thank You | Both students close, invite questions |