Skip to content

Commit 9aedd1e

Browse files
committed
Added FDL TECS paper
1 parent 5aef94e commit 9aedd1e

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,7 @@ yarn docusaurus docs:version <major>.<minor>.<patch>
3535
git add versioned_docs/*
3636
git add versioned_sidebars/*
3737
git commit -a -m 'Docs v<major>.<minor>.<patch>'
38-
```
38+
```
39+
40+
### Adding Publications
41+
To add a new publication, add a new entry to `src/components/Publications/copypasta.tsx` file and to the `src/components/Publications/citations.bib` file.

src/components/Publications/citations.bib

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
% Cleaned by https://flamingtempura.github.io/bibtex-tidy
22
% Run `pandoc citations.bib -t csljson -o citations.json`
3+
@article{LohstrohEtAl:24:DeterministicCoordination,
4+
author = {Lohstroh, Marten and Bateni, Soroush and Menard, Christian and Schulz-Rosengarten, Alexander and Castrillon, Jeronimo},
5+
title = {Deterministic Coordination across Multiple Timelines},
6+
journal = {ACM Transactions on Embedded Computing Systems},
7+
volume = {23},
8+
number = {5},
9+
pages = {1-29},
10+
DOI = {10.1145/3615357},
11+
year = {2024},
12+
type = {Journal Article}
13+
}
14+
315
@article{lin2023towards,
416
title = {Towards Building Verifiable CPS Using Lingua Franca},
517
author = {Lin, Shaokai and Manerkar, Yatin A. and Lohstroh, Marten and Polgreen, Elizabeth and Yu, Sheng-Jung and Jerad, Chadlia and Lee, Edward A. and Seshia, Sanjit A.},

src/components/Publications/copypasta.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ import Link from "@docusaurus/Link";
66

77
export const copypastaPublications: ReactNode = (
88
<ul>
9+
<li>
10+
<p>
11+
<strong>TECS '24</strong>: Marten Lohstroh, Soroush Bateni, Christian Menard, Alexander Schulz-Rosengarten, Jeronimo Castrillon, and Edward A. Lee.
12+
"<Link href="https://doi.org/10.1145/3615357">Deterministic Coordination across Multiple Timelines</Link>",
13+
ACM Trans. Embedd. Comput. Syst. 23, 5, Article 77, August 2024.
14+
</p>
15+
</li>
916
<li>
1017
<p>
1118
<strong>Doctoral Thesis</strong>: Christian Menard,

src/components/Publications/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default () => {
5656
as="h2"
5757
className={clsx("margin-bottom--lg", "text--center")}
5858
>
59-
Featured publications of the Lingua Franca
59+
Featured publications of the Lingua Franca Project
6060
</Heading>
6161
{notablePapers.map((value) => (
6262
<NotablePaper {...value} />

0 commit comments

Comments
 (0)