Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/preview/simple-research-poster/0.1.0/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.pdf
22 changes: 22 additions & 0 deletions packages/preview/simple-research-poster/0.1.0/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
MIT License
===========

Copyright (c) 2025-present Jesse Cobb and Nate Annau

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
14 changes: 14 additions & 0 deletions packages/preview/simple-research-poster/0.1.0/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# simple-research-poster

`simple-research-poster` is a simple Typst template for university research posters.
To get started, run

```sh
typst init @preview/simple-research-poster:0.1.0
```

![Lorem Ipsum example](./thumbnail.svg)

## Example

![Coxeter Groups Example](./examples/coxeter-groups/poster.svg)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@book{thomas,
title={Geometric and Topological Aspects of Coxeter Groups and Buildings},
author={Anne Thomas},
year={2018},
publisher={European Mathematical Society}
}
@book{humphreys,
title={Reflection groups and Coxeter groups},
author={James E. Humphreys},
year={1990},
publisher={Cambridge University Press}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#let base-colors = (
bgcolor1: rgb("#E3F6E4"),
bgcolor2: rgb("#144a35"),
textcolor1: rgb("#2f0707"),
textcolor2: rgb("#ffffff")
)

#let acolor = rgb("#583b29")

#let ccolor0 = rgb("#5D4C6D")
#let ccolor1 = rgb("#9E1758")
#let ccolor2 = rgb("#0A5053")
#let ccolor3 = rgb("#8B5407")

#let ccolor4 = rgb("#7E3263")
#let ccolor5 = rgb("#543456")
#let ccolor6 = rgb("#4B522D")
#let ccolor7 = rgb("#74503A")

#let cfill = rgb("#97B6A1")

#let interp0 = rgb("#703661")
#let interp1 = rgb("#613A5F")
#let interp2 = rgb("#44415B")
#let interp3 = rgb("#274957")
#let interp4 = ccolor2
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#let gen(a) = $chevron.l #a chevron.r$ // cyclic subgroup
#let iso = sym.tilde.equiv
#let infty = sym.infinity
#let sim = sym.tilde.op
#let inv(a) = $#a^(-1)$
#let GL = $op("GL")$
23,143 changes: 23,143 additions & 0 deletions packages/preview/simple-research-poster/0.1.0/examples/coxeter-groups/poster.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#import "@preview/simple-research-poster:0.1.0": *
#import "./colors.typ": base-colors
#import "sections.typ": *

#show: poster.with(
title: [Geometric Realization of Coxeter Groups],
author: [Nate Annau and Jesse Cobb],
mentor: [Mentor: Benedict Lee],
subtitle: [University of California, Santa Barbara],
logo: image("assets/whitelogo.png", height: 100%),
base-colors: base-colors,
)
#let colored-poster-section = poster-section.with(base-colors: base-colors)


#let rgutter = 0.5cm
#pad(
grid(
columns: 3,
inset: 0.5in,
gutter: 30pt,
grid(
rows: 2,
row-gutter: rgutter,
colored-poster-section[Coxeter Systems][#coxeter-systems],
colored-poster-section(fill: true)[Chambers and Nerves][#chambers-and-nerves],
),
grid(
rows: 2,
row-gutter: rgutter,
colored-poster-section(fill: true)[The Davis Complex as a Basic Construction][#basic-construction],
colored-poster-section[The Davis Complex is _CAT(0)_][#Davis-complex-CAT0],
),
grid(
rows: 4,
row-gutter: rgutter,
colored-poster-section[Tits Representation][#tits-representation],
colored-poster-section(fill: true)[Buildings][#buildings],
colored-poster-section[Acknowledgements][#acknowledgements],
colored-poster-section[References][#references],
)
),
top: 0.3cm,
x: 1in,
)
Loading