Skip to content

Commit 43a8891

Browse files
authored
Merge pull request #16 from MedVIC-Lab/individual-publication-pages
Individual publication pages
2 parents 045644a + 8dc0ece commit 43a8891

8 files changed

+40
-8
lines changed

README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,21 @@ To add a publication to the MedVIC Lab website, follow these steps:
134134
3. **Add content to your Markdown file:** (WORK IN PROGRESS)
135135
- Below the frontmatter, add any additional information about the publication.
136136

137+
For example:
137138
```markdown
138-
## Publication Information
139+
# Paper title
139140

140-
Abstract or additional information about the publication.
141+
## Abstract
142+
143+
Blah Blah this is the abstract.
144+
145+
## Citation
146+
147+
Instructions/code block for citation
148+
149+
## Acknowledgements
150+
151+
This work is funded by blah blah organization
141152
```
142153

143154
4. **Commit and push your changes:**

layouts/publication.vue

+21
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@
1515
<li v-if="frontmatter.links.publisher"><a :href="frontmatter.links.publisher" target="_blank"><v-icon size="16" icon="mdi-earth"/>Link to Publisher</a></li>
1616
</ul>
1717
</div>
18+
<div class="author-list">
19+
<h2>Authors</h2>
20+
<ul>
21+
<li v-if="frontmatter.authors" v-for="author in frontmatter.authors.split(',')" :key="author">
22+
<span>{{ author.trim() }}</span>
23+
</li>
24+
</ul>
25+
</div>
1826
</aside>
1927
</div>
2028
</template>
@@ -23,6 +31,11 @@
2331
import { Content, useData } from 'vitepress';
2432
2533
const { frontmatter } = useData();
34+
35+
function getAuthorsList() {
36+
console.log(frontmatter.authors)
37+
return frontmatter.authors
38+
}
2639
</script>
2740

2841
<style>
@@ -69,4 +82,12 @@ const { frontmatter } = useData();
6982
margin-bottom: 10px;
7083
}
7184
85+
.author-list {
86+
margin-top: 20px;
87+
}
88+
89+
.author-list ul {
90+
list-style-type: none;
91+
padding: 0;
92+
}
7293
</style>

pages/publications/2020_uncertain_deepssm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: publication
33
title: "Uncertain-DeepSSM: From Images to Probabilistic Shape Models"
4-
authors: "Jadie Adams, Riddhish Bhalodia, Shireen Elhabian. "
4+
authors: "Jadie Adams, Riddhish Bhalodia, Shireen Elhabian"
55
conference: "Shape in Medical Imaging (ShapeMI) at MICCAI"
66
year: "2020"
77
links:

pages/publications/2022_sharedboundary.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: publication
33
title: "Statistical Shape Modeling of Biventricular Anatomy with Shared Boundaries"
4-
authors: "Krithika Iyer, Alan Morris, Brian Zenger, Karthik Karnath, Benjamin A. Orkild, Oleksandre Korshak, Shireen Elhabian. "
4+
authors: "Krithika Iyer, Alan Morris, Brian Zenger, Karthik Karnath, Benjamin A. Orkild, Oleksandre Korshak, Shireen Elhabian"
55
conference: "Statistical Atlases and Computational Models of the Heart (STACOM) at MICCAI"
66
year: "2022"
77
links:

pages/publications/2023_ADASSM.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: publication
33
title: "ADASSM: Adversarial Data Augmentation in Statistical Shape Models From Images"
4-
authors: "Mokshagna Sai Teja Karanam, Tushar Kataria, , Krithika Iyer, Shireen Elhabian. "
4+
authors: "Mokshagna Sai Teja Karanam, Tushar Kataria, , Krithika Iyer, Shireen Elhabian"
55
conference: "Shape in Medical Imaging (ShapeMI) at MICCAI"
66
year: "2023"
77
links:

pages/publications/2024_scorp.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: publication
33
title: "SCorP: Statistics-Informed Dense Correspondence Prediction Directly from Unsegmented Medical Images"
4-
authors: "Krithika Iyer, Jadie Adams, Shireen Elhabian. "
4+
authors: "Krithika Iyer, Jadie Adams, Shireen Elhabian"
55
conference: "Medical Image Understanding and Analysis (MIUA)"
66
year: "2024"
77
links:

pages/publications/2024_spicorrnet.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: publication
33
title: "Probabilistic 3D Correspondence Prediction from Sparse Unsegmented Images"
4-
authors: "Krithika Iyer, Shireen Elhabian. "
4+
authors: "Krithika Iyer, Shireen Elhabian"
55
conference: "Machine Learning in Medical Imaging Workshop (MLMI) at MICCAI"
66
year: "2024"
77
links:

pages/publications/2024_weaklydeepssm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: publication
33
title: "Weakly Supervised Bayesian Shape Modeling from Medical Images"
4-
authors: "Jadie Adams, Krithika Iyer, Shireen Elhabian. "
4+
authors: "Jadie Adams, Krithika Iyer, Shireen Elhabian"
55
conference: "Shape in Medical Imaging (ShapeMI) at MICCAI"
66
year: "2024"
77
links:

0 commit comments

Comments
 (0)