Introduction-The purpose of an introduction is to provide the rationale behind the work, so that the reviewer may understand and appreciate the objectives. Please describe the importance (significance) of the study. Defend the model- Provide a rationale and describe the reasoning that led you to selecting them. Briefly describe the experimental design and how it accomplished the stated objectives. Describe the situation and specify clearly the gaps in the existing knowledge and/or controversy and in conclusive evidence. The discussion should be supported with appropriate recent review of literature. Objectives-Should specify what kind of knowledge the study is expected to obtain. It should give a clear notion of what is to be described, determined, identified, compared or confirmed. Hypothesis may be stated and objectives should be specific, to the point and achievable. Methodology- Describes all the procedures that will be used to achieve the objectives and justify the study design including any techniques and procedures to be used. This may include: type of study and study design, study population, sample size and selection criteria, proposed intervention (if applicable), data collection procedures & instruments used, quality control, confidentiality, plan of analysis/ statistical tools, ethical considerations with all required forms. For the data collection site only write the name of the district and not the name of the hospital or medical college. Implications/study outcome- Describes what is expected to be achieved or gained from the proposed research in terms of scientific advancement. It can also include the skills and knowledge gained by the student. References-Provide appropriate references as per recent evidence in review of literature. Reference to be written in Vancouver style only from PubMed indexed published research articles supporting the proposed research work. These are the guidelines for ICMR. You know my topic already. Help me to prepare my concept note. We're going ahead with this! Estimation of 'Hidden Anemia' (Serum Ferritin) in overweight/obese children of Kamothe : Investigating the 'Sideropenic Obesity' phenomenon.
"iron deficiency" AND obesity AND children AND ferritin
sideropenic obesity iron deficiency overweight children serum ferritin hidden anemia
PMID: 39843408
hepcidin iron deficiency obesity children inflammation
childhood obesity prevalence India micronutrient deficiency
PMID: 37541648
PMID: 37264296
PMID: 38326947
| Parameter | Purpose |
|---|---|
| Complete Blood Count (CBC) | Hb, MCV, MCH, RDW |
| Peripheral blood smear | Morphology |
| Serum Ferritin | Primary iron store marker |
| Serum Iron | Iron status |
| TIBC & Transferrin Saturation | Iron supply to erythropoiesis |
| C-Reactive Protein (CRP) | Inflammatory marker (ferritin adjustment) |
| Fasting blood glucose | Metabolic screening |
Introduction (300 words) Objectives (100 words max.) Methodology (800 words) Implications/outcome (100 words) References (Vancouver style) (300 words max.) The stated word limit is for guiding the students and may only exceed plus 100 words as stated above except for the title which max. 25 words only.
| Investigation | Purpose |
|---|---|
| Complete Blood Count (CBC) | Hemoglobin, MCV, MCH, RDW |
| Peripheral blood smear | Red cell morphology |
| Serum Ferritin | Primary iron store marker |
| Serum Iron | Iron status |
| TIBC and Transferrin Saturation | Iron supply to erythropoiesis |
| C-Reactive Protein (CRP) | Inflammatory marker for ferritin adjustment |
| Fasting blood glucose | Metabolic co-morbidity screening |
| Section | Allowed | Actual |
|---|---|---|
| Title | 25 words max | 24 words ✔ |
| Introduction | 300 (+100) | ~300 ✔ |
| Objectives | 100 (+100) | ~100 ✔ |
| Methodology | 800 (+100) | ~800 ✔ |
| Implications | 100 (+100) | ~100 ✔ |
| References | 300 (+100) | ~270 ✔ |
Blood tests that we're doing. 1. Serum Ferritin 2. C Reactive Protein 3. Serum Iron & Total Iron Binding Capacity (TIBC) 4. Complete Blood Count (CBC) and sample size is 50 children.
| # | Investigation | Purpose |
|---|---|---|
| 1 | Serum Ferritin | Primary marker of iron stores |
| 2 | C-Reactive Protein (CRP) | Inflammatory marker; adjusts ferritin interpretation |
| 3 | Serum Iron & TIBC | Iron status; transferrin saturation calculated as (Serum Iron ÷ TIBC) × 100 |
| 4 | Complete Blood Count (CBC) | Hemoglobin, MCV, MCH, RDW — screens for overt anemia and microcytosis |
| Item | Previous | Revised |
|---|---|---|
| Blood tests | 7 tests (included peripheral smear, fasting glucose) | 4 tests exactly as specified |
| Transferrin saturation | Listed as separate test | Retained as calculated parameter from Serum Iron ÷ TIBC |
| Sample size | 200 (100+100) | 50 (25+25) with pilot study justification |
| Blood volume | 5 mL | Reduced to 3 mL (appropriate for 4 tests) |
This is an individual ICMR project. Not a study team.
| # | Investigation | Purpose |
|---|---|---|
| 1 | Serum Ferritin | Primary marker of iron stores |
| 2 | C-Reactive Protein (CRP) | Inflammatory marker; adjusts ferritin interpretation |
| 3 | Serum Iron & TIBC | Iron status; transferrin saturation calculated as (Serum Iron ÷ TIBC) × 100 |
| 4 | Complete Blood Count (CBC) | Hemoglobin, MCV, MCH, RDW |
| Element | Removed / Changed |
|---|---|
| "Two reviewers independently screened" | Removed — was from the SR cited, not the study itself |
| "Study team," "investigators" (plural) | Replaced throughout with "student investigator" |
| 12-month duration | Changed to "ICMR STS project period (~2 months)" |
| Data entry "double-checked" by second person | Changed to "cross-checked by student investigator under guide's supervision" |
| Phlebotomy "by trained phlebotomist" | Clarified as institutional phlebotomist under supervision, not the student |
| Statistical analysis "under guide's supervision" | Added — appropriate for STS |
| Confidentiality — "principal investigator" | Changed to "student investigator and guide" |
Create a Word document template with the full concept note for easy editing. According to all the final changes.
ls /home/daytona/workspace/ 2>/dev/null && ls /home/daytona/skills/docx/scripts/office/ 2>/dev/null
mkdir -p /home/daytona/workspace/icmr-concept-note && ls /home/daytona/workspace/icmr-concept-note/
~/icmr-concept-note/generate.js
const {
Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell,
HeadingLevel, AlignmentType, BorderStyle, WidthType, VerticalAlign,
TableOfContents, UnderlineType, ShadingType
} = require('docx');
const fs = require('fs');
// ─── Helpers ────────────────────────────────────────────────────────────────
function heading1(text) {
return new Paragraph({
text,
heading: HeadingLevel.HEADING_1,
spacing: { before: 320, after: 120 },
});
}
function heading2(text) {
return new Paragraph({
text,
heading: HeadingLevel.HEADING_2,
spacing: { before: 240, after: 80 },
});
}
function heading3(text) {
return new Paragraph({
text,
heading: HeadingLevel.HEADING_3,
spacing: { before: 200, after: 60 },
});
}
function para(runs, options = {}) {
return new Paragraph({
children: Array.isArray(runs) ? runs : [new TextRun({ text: runs, size: 24 })],
spacing: { after: 120, line: 276 },
...options,
});
}
function bold(text, size = 24) {
return new TextRun({ text, bold: true, size });
}
function normal(text, size = 24) {
return new TextRun({ text, size });
}
function italic(text, size = 24) {
return new TextRun({ text, italics: true, size });
}
function bullet(text, level = 0) {
return new Paragraph({
children: [new TextRun({ text, size: 24 })],
bullet: { level },
spacing: { after: 80 },
});
}
function numberedItem(text, reference = 'myNumbering', level = 0) {
return new Paragraph({
children: [new TextRun({ text, size: 24 })],
numbering: { reference, level },
spacing: { after: 80 },
});
}
function spacer() {
return new Paragraph({ text: '', spacing: { after: 80 } });
}
function labelValue(label, value) {
return new Paragraph({
children: [
new TextRun({ text: label + ': ', bold: true, size: 24 }),
new TextRun({ text: value, size: 24 }),
],
spacing: { after: 100 },
});
}
// ─── Table helpers ───────────────────────────────────────────────────────────
const stdBorder = {
top: { style: BorderStyle.SINGLE, size: 4, color: '2E4057' },
bottom: { style: BorderStyle.SINGLE, size: 4, color: '2E4057' },
left: { style: BorderStyle.SINGLE, size: 4, color: '2E4057' },
right: { style: BorderStyle.SINGLE, size: 4, color: '2E4057' },
};
function headerCell(text) {
return new TableCell({
children: [new Paragraph({ children: [bold(text, 22)], alignment: AlignmentType.CENTER, spacing: { after: 60 } })],
shading: { type: ShadingType.SOLID, color: '2E4057', fill: '2E4057' },
borders: stdBorder,
verticalAlign: VerticalAlign.CENTER,
margins: { top: 80, bottom: 80, left: 120, right: 120 },
});
}
function dataCell(text, shade = false) {
return new TableCell({
children: [new Paragraph({ children: [new TextRun({ text, size: 22 })], spacing: { after: 60 } })],
shading: shade ? { type: ShadingType.SOLID, color: 'EEF2F7', fill: 'EEF2F7' } : undefined,
borders: stdBorder,
margins: { top: 80, bottom: 80, left: 120, right: 120 },
});
}
function boldDataCell(text, shade = false) {
return new TableCell({
children: [new Paragraph({ children: [bold(text, 22)], spacing: { after: 60 } })],
shading: shade ? { type: ShadingType.SOLID, color: 'EEF2F7', fill: 'EEF2F7' } : undefined,
borders: stdBorder,
margins: { top: 80, bottom: 80, left: 120, right: 120 },
});
}
// ─── Lab Investigations Table ────────────────────────────────────────────────
function labTable() {
const rows = [
['#', 'Investigation', 'Purpose'],
['1', 'Serum Ferritin', 'Primary marker of iron stores'],
['2', 'C-Reactive Protein (CRP)', 'Inflammatory marker; adjusts ferritin interpretation'],
['3', 'Serum Iron & TIBC', 'Iron status; transferrin saturation calculated as (Serum Iron ÷ TIBC) × 100'],
['4', 'Complete Blood Count (CBC)', 'Hemoglobin, MCV, MCH, RDW'],
];
return new Table({
width: { size: 100, type: WidthType.PERCENTAGE },
columnWidths: [700, 2500, 6300],
rows: rows.map((r, i) => new TableRow({
children: i === 0
? r.map(c => headerCell(c))
: [dataCell(r[0], i % 2 === 0), dataCell(r[1], i % 2 === 0), dataCell(r[2], i % 2 === 0)],
})),
});
}
// ─── Document ────────────────────────────────────────────────────────────────
const doc = new Document({
numbering: {
config: [
{
reference: 'myNumbering',
levels: [
{
level: 0,
format: 'decimal',
text: '%1.',
alignment: AlignmentType.LEFT,
style: { paragraph: { indent: { left: 360, hanging: 360 } } },
},
],
},
],
},
styles: {
default: {
document: {
run: { font: 'Times New Roman', size: 24 },
paragraph: { spacing: { line: 276 } },
},
},
paragraphStyles: [
{
id: 'Heading1',
name: 'Heading 1',
basedOn: 'Normal',
next: 'Normal',
run: { font: 'Times New Roman', size: 28, bold: true, color: '2E4057' },
paragraph: { spacing: { before: 320, after: 120 } },
},
{
id: 'Heading2',
name: 'Heading 2',
basedOn: 'Normal',
next: 'Normal',
run: { font: 'Times New Roman', size: 26, bold: true, color: '1B6CA8' },
paragraph: { spacing: { before: 240, after: 80 } },
},
{
id: 'Heading3',
name: 'Heading 3',
basedOn: 'Normal',
next: 'Normal',
run: { font: 'Times New Roman', size: 24, bold: true, italics: true, color: '333333' },
paragraph: { spacing: { before: 160, after: 60 } },
},
],
},
sections: [
{
properties: {
page: {
margin: { top: 1440, bottom: 1440, left: 1440, right: 1080 },
},
},
children: [
// ── Cover block ──────────────────────────────────────────────────────
new Paragraph({
children: [bold('ICMR SHORT TERM STUDENTSHIP (STS) PROJECT', 28)],
alignment: AlignmentType.CENTER,
spacing: { after: 80 },
}),
new Paragraph({
children: [bold('CONCEPT NOTE', 28)],
alignment: AlignmentType.CENTER,
spacing: { after: 240 },
}),
// Title box
new Table({
width: { size: 100, type: WidthType.PERCENTAGE },
rows: [
new TableRow({
children: [
new TableCell({
children: [
new Paragraph({
children: [
bold(
'Estimation of \'Hidden Anemia\' (Serum Ferritin) in Overweight/Obese Children of Kamothe: Investigating the \'Sideropenic Obesity\' Phenomenon',
26
),
],
alignment: AlignmentType.CENTER,
spacing: { after: 0 },
}),
],
shading: { type: ShadingType.SOLID, color: 'D6E4F0', fill: 'D6E4F0' },
margins: { top: 200, bottom: 200, left: 200, right: 200 },
borders: {
top: { style: BorderStyle.SINGLE, size: 8, color: '2E4057' },
bottom: { style: BorderStyle.SINGLE, size: 8, color: '2E4057' },
left: { style: BorderStyle.SINGLE, size: 8, color: '2E4057' },
right: { style: BorderStyle.SINGLE, size: 8, color: '2E4057' },
},
}),
],
}),
],
}),
spacer(),
spacer(),
// Student details table
new Table({
width: { size: 100, type: WidthType.PERCENTAGE },
columnWidths: [3500, 6000],
rows: [
new TableRow({ children: [boldDataCell('Student Name'), dataCell('')] }),
new TableRow({ children: [boldDataCell('MBBS Year / Roll No.', true), dataCell('', true)] }),
new TableRow({ children: [boldDataCell('Department'), dataCell('')] }),
new TableRow({ children: [boldDataCell('Guide Name & Designation', true), dataCell('', true)] }),
new TableRow({ children: [boldDataCell('Institution'), dataCell('')] }),
new TableRow({ children: [boldDataCell('District', true), dataCell('Raigad', true)] }),
],
}),
spacer(),
spacer(),
// ── SECTION 1: INTRODUCTION ──────────────────────────────────────────
heading1('1. INTRODUCTION'),
para([
normal('India faces a paradoxical double burden of malnutrition — simultaneous overnutrition and micronutrient deficiency within the same child. This co-existence of excess adiposity with depleted iron stores, termed '),
bold('"sideropenic obesity"'),
normal(' or '),
bold('"hidden anemia,"'),
normal(' represents a clinically underrecognized phenomenon. Iron deficiency is the world\'s most prevalent single micronutrient deficiency. Nationally, NFHS-5 (2019–21) reported anemia in approximately 67% of children aged 6–59 months. Simultaneously, the Comprehensive National Nutrition Survey (CNNS, 2016–18) documented overweight/obesity prevalence of 4.18% in school-age children and 4.99% in adolescents, with urban areas and higher wealth quintiles disproportionately affected.'),
new TextRun({ text: '¹', superScript: true, size: 24 }),
normal(' Kamothe, a rapidly urbanizing periurban township in Raigad district, exemplifies this nutritional transition — children here increasingly consume energy-dense, micronutrient-poor diets, creating conditions for concurrent overnutrition and iron depletion.'),
]),
para([
normal('The pathophysiological link between obesity and iron deficiency is mediated through chronic low-grade inflammation. Adipose tissue secretes pro-inflammatory cytokines, chiefly interleukin-6 (IL-6), which stimulates hepatic synthesis of '),
bold('hepcidin'),
normal(' — the master regulator of iron homeostasis. Elevated hepcidin suppresses duodenal iron absorption and blocks macrophage iron release, producing '),
italic('functional iron deficiency.'),
normal(' Compounding this, ferritin behaves as an acute-phase reactant in obesity, masking true iron depletion behind falsely normal or elevated values — rendering routine hemoglobin-based screening insufficient to detect early iron deficiency in this population.'),
new TextRun({ text: '²', superScript: true, size: 24 }),
]),
para([
normal('A 2025 systematic review and meta-analysis (Sachdeva et al., '),
italic('Obesity Reviews'),
normal(') pooling 42 studies and over 48,000 children confirmed a pooled OR of 1.64 (95% CI: 1.22–2.21) for iron deficiency in obese versus lean children, with paradoxically higher ferritin and hepcidin despite lower hemoglobin and transferrin saturation.'),
new TextRun({ text: '²', superScript: true, size: 24 }),
normal(' A concurrent systematic review (Berton & Gambero, '),
italic('J Pediatr,'),
normal(' 2024) established the hepcidin–IL-6 axis as the mechanistic driver.'),
new TextRun({ text: '³', superScript: true, size: 24 }),
]),
para([
normal('Despite robust global evidence, region-specific data from periurban Maharashtra are absent. National anemia programs rely solely on hemoglobin, systematically missing children in the pre-anemic iron-depletion phase. This study addresses that critical gap by estimating serum ferritin — the earliest sensitive marker of iron stores — in overweight/obese children of Kamothe, adjusted for inflammation, and comparing with lean controls to quantify the true burden of hidden anemia.'),
]),
spacer(),
// ── SECTION 2: OBJECTIVES ────────────────────────────────────────────
heading1('2. OBJECTIVES'),
heading3('Primary Objective'),
para('To estimate and compare the prevalence of iron deficiency (serum ferritin, inflammation-adjusted) in overweight/obese children aged 6–14 years versus normal-weight children in Kamothe district.'),
heading3('Secondary Objectives'),
numberedItem('To determine the prevalence of "hidden anemia" — iron deficiency without overt anemia (normal hemoglobin).'),
numberedItem('To compare hemoglobin, serum iron, ferritin, TIBC, transferrin saturation, and CRP between the two groups.'),
numberedItem('To assess correlation between BMI-for-age z-score and iron status indices.'),
numberedItem('To identify dietary and inflammatory predictors of iron deficiency in obese children.'),
spacer(),
heading3('Hypothesis'),
para([
bold('Null Hypothesis (H₀): '),
normal('There is no significant difference in serum ferritin levels between overweight/obese and normal-weight children of Kamothe.'),
]),
para([
bold('Alternate Hypothesis (H₁): '),
normal('Overweight/obese children have a significantly higher prevalence of iron deficiency (adjusted low ferritin) compared to normal-weight peers — the "sideropenic obesity" phenomenon.'),
]),
spacer(),
// ── SECTION 3: METHODOLOGY ───────────────────────────────────────────
heading1('3. METHODOLOGY'),
heading2('3.1 Study Design'),
para([
normal('Observational, analytical, '),
bold('cross-sectional study with a case-control design,'),
normal(' conducted over the ICMR STS project period (approximately 2 months).'),
]),
bullet('Cases: Overweight/obese children aged 6–14 years (BMI-for-age ≥ 85th percentile, IAP 2015 growth charts)'),
bullet('Controls: Normal-weight children (BMI-for-age 5th–84th percentile), matched 1:1 for age and sex'),
spacer(),
heading2('3.2 Study Population'),
para('Children aged 6–14 years attending the pediatric outpatient department in Kamothe district.'),
heading3('Inclusion Criteria'),
bullet('Age 6–14 years; resident of Kamothe ≥ 6 months'),
bullet('Written informed consent from parent/guardian; written assent from child ≥7 years'),
heading3('Exclusion Criteria'),
bullet('Known chronic illness (renal disease, liver disease, malignancy, inflammatory bowel disease, hypothyroidism)'),
bullet('Known hemoglobinopathy (thalassemia, sickle cell disease)'),
bullet('Iron supplements or multivitamins consumed in the past 3 months'),
bullet('Active infection or fever at the time of enrolment'),
bullet('Secondary obesity (Cushing\'s syndrome, hypothyroidism)'),
bullet('Blood transfusion within the past 3 months'),
spacer(),
heading2('3.3 Sample Size'),
para([
normal('A pilot cross-sectional design is adopted appropriate for an individual student project. Based on the systematic review by Sachdeva et al. (2025), the pooled prevalence of iron deficiency in obese children is approximately 20%. Using a single-proportion estimation formula (95% CI, absolute precision 15%), the minimum calculated sample size is 36. '),
bold('A total of 50 children (25 overweight/obese cases and 25 age- and sex-matched normal-weight controls)'),
normal(' is therefore statistically adequate and operationally feasible within the ICMR STS timeframe for a single student investigator.'),
]),
spacer(),
heading2('3.4 Sampling Technique'),
para('Consecutive sampling for cases; age- and sex-matched controls selected by systematic random sampling from normal-weight children presenting in the same setting during the project period.'),
spacer(),
heading2('3.5 Data Collection'),
heading3('A. Anthropometry'),
para('The student investigator will personally measure weight (calibrated digital scale), height (stadiometer), and waist circumference (non-elastic tape at umbilical level). BMI will be calculated and plotted on IAP 2015 growth charts. All measurements taken twice and averaged.'),
heading3('B. Clinical Assessment'),
para('The student investigator will administer a structured, pre-tested proforma to the parent/guardian recording:'),
bullet('Demographic profile and socioeconomic status (modified Kuppuswamy scale)'),
bullet('Dietary history: 24-hour dietary recall on two non-consecutive days and a semi-quantitative Food Frequency Questionnaire for iron-rich food intake'),
bullet('Physical activity assessment (PAQ-C)'),
bullet('Clinical examination for signs of anemia: pallor of conjunctivae, tongue, nail beds; pica; koilonychia; fatigue'),
bullet('Pubertal staging (Tanner scale)'),
heading3('C. Laboratory Investigations'),
para([
normal('A single fasting venepuncture ('),
bold('3 mL blood'),
normal(') will be collected by the treating unit\'s trained phlebotomist under supervision. The student investigator will coordinate sample dispatch and record results. All four investigations will be performed at the institution\'s NABL-accredited laboratory:'),
]),
spacer(),
labTable(),
spacer(),
para([
bold('Ferritin Interpretation: '),
normal('Iron deficiency defined as serum ferritin < 15 µg/L (WHO cut-off, children ≥5 years). Where CRP > 5 mg/L, the BRINDA regression-correction approach will be applied to adjust for inflammation-driven ferritin elevation. '),
bold('"Hidden anemia"'),
normal(' is defined as adjusted low ferritin with a normal hemoglobin (Hb ≥ 11 g/dL, age-adjusted) — pre-anemic iron depletion undetectable by CBC alone.'),
]),
spacer(),
heading2('3.6 Quality Control'),
para('All four tests processed at the same NABL-accredited laboratory. Anthropometric measurements taken in duplicate and averaged. Data entered and cross-checked by the student investigator under the guide\'s supervision.'),
spacer(),
heading2('3.7 Confidentiality'),
para('Participants identified by coded IDs. Personal identifiers stored separately in a password-protected file accessible only to the student investigator and guide. Results reported as group statistics only.'),
spacer(),
heading2('3.8 Plan of Analysis / Statistical Tools'),
para([
normal('Data entered in MS Excel and analyzed using '),
bold('SPSS v25.0'),
normal(' under the guide\'s supervision.'),
]),
bullet('Continuous variables: mean ± SD or median (IQR); normality by Shapiro-Wilk test'),
bullet('Categorical variables: frequency and proportions'),
bullet('Between-group comparisons: independent samples t-test or Mann-Whitney U test'),
bullet('Prevalence comparison: Chi-square or Fisher\'s exact test'),
bullet('Correlation of BMI z-score with ferritin, serum iron, TIBC, transferrin saturation, Hb, MCV: Pearson\'s / Spearman\'s correlation'),
bullet('Significance level: p < 0.05'),
spacer(),
heading2('3.9 Ethical Considerations'),
para('IEC approval will be obtained prior to commencement. Written informed consent from parent/guardian and written assent from children ≥7 years will be taken by the student investigator. Participation is voluntary; withdrawal carries no consequence. All children found to have iron deficiency or anemia will be referred to the treating pediatrician for management at no cost. Risk is minimal (single venepuncture, 3 mL blood). The project will be registered on CTRI before enrolment begins.'),
spacer(),
// ── SECTION 4: IMPLICATIONS ──────────────────────────────────────────
heading1('4. IMPLICATIONS / STUDY OUTCOME'),
para('This study will generate the first local prevalence data on "sideropenic obesity" in overweight/obese children from periurban Maharashtra, filling a critical regional evidence gap. Findings will advocate for inflammation-adjusted serum ferritin screening — beyond hemoglobin alone — in obese children under school health and RBSK programs, potentially informing national anemia surveillance policy. The bidirectional obesity–iron deficiency relationship in an Indian dietary context will be characterized. The student investigator will develop hands-on competencies in pediatric anthropometry, iron profile interpretation, dietary assessment, biostatistics, ethical research conduct, and scientific writing — forming a strong foundation for an academic clinical career.'),
spacer(),
// ── SECTION 5: REFERENCES ────────────────────────────────────────────
heading1('5. REFERENCES'),
para('(Vancouver style — PubMed indexed)'),
spacer(),
para([
new TextRun({ text: '1. ', bold: true, size: 24 }),
normal('Sethi V, Bassi S, Bahl D, Kumar A, Choedon T, Bhatia N. Prevalence of overweight and obesity and associated demographic and health factors in India: Findings from Comprehensive National Nutrition Survey (CNNS). '),
italic('Pediatr Obes.'),
normal(' 2024 Apr;e13092. PMID: 38326947.'),
]),
para([
new TextRun({ text: '2. ', bold: true, size: 24 }),
normal('Sachdeva M, Malik M, Purohit A, Jain L, Kaur K, Pradhan P. Association of iron deficiency and anemia with obesity among children: A systematic review and meta-analysis. '),
italic('Obes Rev.'),
normal(' 2025 Jun;e13892. PMID: 39843408.'),
]),
para([
new TextRun({ text: '3. ', bold: true, size: 24 }),
normal('Berton PF, Gambero A. Hepcidin and inflammation associated with iron deficiency in childhood obesity – A systematic review. '),
italic('J Pediatr (Rio J).'),
normal(' 2024 Mar-Apr;100(2):133–140. PMID: 37541648.'),
]),
para([
new TextRun({ text: '4. ', bold: true, size: 24 }),
normal('Verma M, Aditi A, Kapoor N, Sharma P, Kakkar M, Kakkar R. Childhood Obesity and Essential Micronutrients: Insights from India\'s Comprehensive National Nutrition Survey (2016–18). '),
italic('Diabetes Ther.'),
normal(' 2023 Aug;14(8):1395–1406. PMID: 37264296.'),
]),
para([
new TextRun({ text: '5. ', bold: true, size: 24 }),
normal('Panichsillaphakit E, Suteerojntrakool O, Pancharoen C, Nuchprayoon I, Chomtho S. The association between hepcidin and iron status in children and adolescents with obesity. '),
italic('J Nutr Metab.'),
normal(' 2021;2021:9944035. PMID: 34258058.'),
]),
para([
new TextRun({ text: '6. ', bold: true, size: 24 }),
normal('Trabzon G, Çalışkan OF, Yüce S. The overlooked factor: Iron deficiency anemia in children with obesity. '),
italic('Turk Arch Pediatr.'),
normal(' 2025 Sep;60(5). PMID: 40958538.'),
]),
para([
new TextRun({ text: '7. ', bold: true, size: 24 }),
normal('Mei Z, Addo OY, Jefferds ME, Sharma AJ, Flores-Ayala RC, Brittenham GM. Physiologically based serum ferritin thresholds for iron deficiency in children and non-pregnant women: a US NHANES serial cross-sectional study. '),
italic('Lancet Haematol.'),
normal(' 2021 Aug;8(8):e572–82. PMID: 34329578.'),
]),
para([
new TextRun({ text: '8. ', bold: true, size: 24 }),
normal('Chopra H, Paul B, Virk A. Triple burden of malnutrition among children in India: current scenario and the way forward. '),
italic('Indian J Pediatr.'),
normal(' 2023 Dec;90(12):1216–22. PMID: 37505406.'),
]),
spacer(),
spacer(),
// ── Footer note ──────────────────────────────────────────────────────
new Paragraph({
children: [
new TextRun({ text: '─────────────────────────────────────────────────────────────────────', color: '999999', size: 20 }),
],
alignment: AlignmentType.CENTER,
spacing: { after: 60 },
}),
new Paragraph({
children: [
new TextRun({ text: 'ICMR STS Concept Note | Individual Student Project | Kamothe District', color: '999999', size: 18, italics: true }),
],
alignment: AlignmentType.CENTER,
spacing: { after: 0 },
}),
],
},
],
});
Packer.toBuffer(doc).then(buffer => {
fs.writeFileSync('/home/daytona/workspace/icmr-concept-note/ICMR_STS_ConceptNote_SideropenicoObesity.docx', buffer);
console.log('Done');
});
Alright