diff --git a/poster.css b/poster.css new file mode 100644 index 0000000..ccb4730 --- /dev/null +++ b/poster.css @@ -0,0 +1,355 @@ +/* +Copyright © 2020 Clément Pit-Claudel +https://github.com/cpitclaudel/academic-poster-template + +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. +*/ +a { + color: inherit; +} +address { + font-style: normal; +} +h1, +h2, +h3 { + margin: 0; +} +pre, +code, +samp, +.monospace { + font-family: "Ubuntu Mono", monospace; +} +b { + display: block; + text-align: center; + font-weight: 500; +} +@media all and (min-width: 60rem) { + body { + display: grid; + grid-template-rows: auto 1fr auto; + } + body > header, + body > footer { + grid-auto-flow: column; + justify-content: space-between; + } + body > header { + grid-template-columns: auto 1fr auto; + } + main { + align-content: flex-start; + display: flex; + flex-direction: column; + flex-wrap: wrap; + overflow: auto; + padding: 0.5rem; + } + main::after { + content: " "; + display: block; + flex-basis: 100%; + width: 0.5rem; + } + main > * { + flex-grow: 1; + margin: 0.5rem; + max-width: 30rem; + min-width: 22.5rem; + width: 24%; + width: calc(100% / 4 - 1rem); + } +} +@media not all and (min-width: 60rem) { + body > header, + body > footer { + grid-auto-flow: row; + justify-content: center; + } + body > header > div { + margin-bottom: 0.75rem; + } + main > * { + margin: 1rem; + } + article { + overflow-x: auto; + overflow-y: hidden; + } +} +html, +body { + height: 100%; + width: 100%; +} +body { + font-family: 'Fira Sans Condensed', 'Fira Sans', sans-serif; + margin: 0; +} +body > header, +body > footer { + align-items: center; + background: #bf5700; + color: white; + display: grid; + grid-gap: 0.5rem; + padding: 0.5rem; + text-align: center; +} +body > header { + font-size: 80%; +} +body > header img { + max-height: 5rem; +} +body > header h1 { + font-size: 1.5rem; + font-weight: 600; +} +body > header h2 { + font-size: 1.15rem; + font-weight: 500; +} +body > header address { + margin-bottom: 0.25rem; + margin-top: 0.75rem; +} +body > header .publication-info { + display: none; +} +body > header time { + margin-top: 0.25rem; +} +main { + box-sizing: border-box; + min-height: 0; +} +main > * { + box-sizing: border-box; +} +main > figure { + align-content: center; + display: flex; + justify-content: center; +} +main img, +main object { + align-self: center; + justify-self: center; + max-width: 100%; + vertical-align: middle; +} +main figure { + text-align: center; +} +main figure img { + width: 100%; +} +main figure img:first-of-type:last-of-type, +main figure object:first-of-type:last-of-type { + display: block; + margin: auto; +} +main figure figcaption { + display: block; + margin-top: 0.5rem; +} +article { + background: #eeeeec; + display: flex; + flex-direction: column; + hyphens: auto; + line-height: 1.35; + padding: 0 0.5rem 0.5rem 0.5rem; +} +article p, +article ul, +article ol, +article pre, +article div, +article figure, +article hr { + margin: 0; +} +article > *, +article > p, +article > ul, +article > ol, +article > pre, +article > div, +article > figure, +article > hr { + margin: 0.5rem 0 auto 0; +} +article > mjx-container, +article > .MJXc-display, +article > .MJXp-display, +article > .MathJax_Display, +article > .MathJax_Preview, +article > .MathJax_SVG_Display, +article > .MathJax_SVG_Preview, +article > .MathJax_PHTML_Display, +article > .MathJax_PHTML_Preview, +article > .MathJax_MathML { + /* override MathJaX */ + margin: 0.5rem 0 auto 0 !important; +} +article > header { + background: #333f48; + color: #ffffff; + margin: 0 -0.5rem auto -0.5rem; + padding: 0.25rem 0.5rem; +} +article > header > h3 { + font-weight: 500; +} +article pre { + overflow-x: auto; + overflow-y: hidden; + max-width: 100%; +} +article hr { + border-width: thin 0 0 0; +} +article ul, +article ol { + padding: 0; +} +article ul > li, +article ol > li { + list-style-type: none; + margin-left: 1.25em; + margin-bottom: 0.25rem; +} +article ul > li::before, +article ol > li::before { + display: inline-block; + margin-left: -1em; +} +article ul > li:last-child, +article ol > li:last-child { + margin-bottom: 0; +} +article ol { + counter-reset: item; +} +article ol > li::before { + content: counter(item) ". "; + counter-increment: item; + font-weight: 500; + width: 1em; +} +article ul > li::before { + background: #333f48; + border-radius: 100%; + content: " "; + height: 0.35em; + vertical-align: middle; + width: 0.35em; + margin-right: 0.65em; +} +article ul.inline { + padding-left: 0; + display: flex; + flex-wrap: wrap; + justify-content: space-around; +} +article ul.inline li { + display: inline; + margin: 0.25em 0.5em; + padding: 0; +} +article ul.inline li::before { + display: none; +} +.boxed { + border: thin solid #333f48; + padding: 0.25rem; +} +.center { + text-align: center; +} +.center-self { + justify-self: center; + align-self: center; +} +.justify-center { + justify-self: center; +} +.align-center { + align-self: center; +} +.xxs { + font-size: xx-small; +} +.xs { + font-size: x-small; +} +.small { + font-size: small; +} +.medium { + font-size: medium; +} +.large { + font-size: large; +} +.xl { + font-size: x-large; +} +.xxl { + font-size: xx-large; +} +.xxxl { + font-size: xxx-large; +} +.columns, +.columns-top, +.columns-center, +.columns-bottom { + display: grid; + grid-auto-flow: column; + grid-gap: 0.5rem; +} +.columns-top { + align-items: start; +} +.columns-center { + align-items: center; +} +.columns-bottom { + align-items: end; +} +br.qquad { + content: " "; + margin-right: 4em; +} +.separator:empty { + display: block; +} +.contents { + display: contents; +} +mjx-container, +.MJXc-display, +.MJXp-display, +.MathJax_Display, +.MathJax_Preview, +.MathJax_SVG_Display, +.MathJax_SVG_Preview, +.MathJax_PHTML_Display, +.MathJax_PHTML_Preview, +.MathJax_MathML { + margin: 0 !important; + overflow-x: auto; + overflow-y: hidden; +} +.MathJax_Preview:empty { + display: none; +} diff --git a/summer.html b/summer.html new file mode 100644 index 0000000..5c9a1c3 --- /dev/null +++ b/summer.html @@ -0,0 +1,152 @@ + + + + + What's the name of your project? a subtitle might be useful + + + + + + + + + + + + +
+ +
+

What's the name of your project?

+

a subtitle might be useful

+
+ FirstName LastName11 + FirstName LastName21 + FirstName LastName31 + Jesse R. Pisel1,2 + Michael J. Pyrcz3,4 +
1College of Natural Science, UT Austin + 2Texas Institute for Discovery Education in Science, UT Austin + 3Cockrell School of Engineering, UT Austin + 4Jackson School of Geosciences, UT Austin +
+ + Unpublished, + + +
+ +
+ +
+
+

Executive Summary

+ +

What is the problem?

+ +

How did you approach it?

+ +

What did you learn?

+ +

What are your recommendations

+ +
+ +
+

Problem

+

A bit of text here and some images if they are useful. SVG images work best for HTML and CSS. Below is an example of a SVG figure

+ +
+ An orange shield with a white 5 emblazoned on it and the letters HTML above it. + +
The HTML5 logo (Source: W3C)
+
+ +
+ +
+

Approach

+ +

Tell us how you approached the problem. Code, diagrams, flowcharts are handy here. + + We can also write out unordered lists: +

+ + +

We can also add numbered lists as well:

+
    +
  1. First item
  2. +
  3. Second item
  4. +
+

You can also add inline math with MathJax

+

\((\lambda x. e) v \downarrow e[x/v]\)

+ + \[\frac + {\langle \mathtt{expr}, s\rangle \Downarrow v} + {\langle \mathtt{var := expr}, s\rangle \downarrow s\left[\mathtt{var} \leftarrow v\right]} + \small{\text{Assign}}\] + +

Using MathJax allows users of assistive technology to browse the equations.

+ + +
+ +
+

Results and Lessons Learned

+

Show us some cool images of the results from your project. You can emphasize + parts of your text for readers. You can also make it strong to get your + point across as well. Italics are also useful for scientific terms and foreign words. +

+
+ A 3x3 image of geologic maps, generated outputs and desired outputs. +
Comparison of generated output and desired output from geologic maps for three examples.
+
+
+ +
+

Recommendations

+

Here you can tell us what you recommend. Should we keep training the model? How should we + plug wells? Should we continue predicting orphan well dates? Tell us what we need to + do next for the research project and also for the problem as a whole. +

+
+ +
+

Acknowledgements markup

+

Thanks to:

+ +
+ + +
+ Project logo +
Freshman Research Initiative Energy Analytics
+
+
+ + + + \ No newline at end of file diff --git a/summer_template.jinja2 b/summer_template.jinja2 new file mode 100644 index 0000000..16eca3c --- /dev/null +++ b/summer_template.jinja2 @@ -0,0 +1,158 @@ +{% extends "poster.jinja2" %} + +{## Header ##} + +{% set poster_title = "What's the name of your project?" %} +{# ‘poster_subtitle’ is optional; use "" to hide it #} +{% set poster_subtitle = "a subtitle might be useful" %} +{# Change ‘venue’ to a conference or workshop name if any #} +{% set venue = "Unpublished" %} +{# ‘webpage_title’ is displayed in the browser’s top bar #} +{% set webpage_title = poster_title + " — " + poster_subtitle %} +{# ‘project_url’ is used in the footer and for the logo #} +{% set project_url = "https://github.com/FRI-Energy-Analytics/2021_summer_fellows" %} + +{# Publication info is hidden by default (.publication-info in CSS) #} +{% set pub_datetime_iso = "2021-07-23" %} +{% set pub_date = "July 23 2021" %} + +{% block custom_head %} + +{% endblock %} + +{% block authors %} + {# Put authors here, with one link per author. #} + FirstName LastName11 + FirstName LastName21 + FirstName LastName31 + Jesse R. Pisel1,2 + Michael J. Pyrcz3,4 +{% endblock %} + +{% block affiliations %} + 1College of Natural Science, UT Austin + 2Texas Institute for Discovery Education in Science, UT Austin + 3Cockrell School of Engineering, UT Austin + 4Jackson School of Geosciences, UT Austin +{% endblock %} + +{# Project logos shown on the left side #} +{% block project_logos %} + Energy Analytics logo +{% endblock %} + +{# Extra logos shown on the right side #} +{% block logos %} + UT Logo +{% endblock %} + +{### Footer ##} + +{% block project_link %} + {{ project_url }} +{% endblock %} + +{% block contact_information %} + youremailhere@utexas.edu +{% endblock %} + +{### Contents ###} + +{# Contents are individual boxes (typically ‘article’s or ‘figure’s). Each + ‘article’ contains a header and some contents. #} +{% block contents %} +
+ {# Using

inside the
makes the structure evident to screen readers #} +

Executive Summary

+ +

What is the problem?

+ +

How did you approach it?

+ +

What did you learn?

+ +

What are your recommendations

+ +

+ +
+

Problem

+

A bit of text here and some images if they are useful. SVG images work best for HTML and CSS. Below is an example of a SVG figure

+ +
+ An orange shield with a white 5 emblazoned on it and the letters HTML above it. + +
The HTML5 logo (Source: W3C)
+
+ +
+ +
+

Approach

+ +

Tell us how you approached the problem. Code, diagrams, flowcharts are handy here. + + We can also write out unordered lists: +

+ + +

We can also add numbered lists as well:

+
    +
  1. First item
  2. +
  3. Second item
  4. +
+

You can also add inline math with MathJax

+

\((\lambda x. e) v \downarrow e[x/v]\)

+ + \[\frac + {\langle \mathtt{expr}, s\rangle \Downarrow v} + {\langle \mathtt{var := expr}, s\rangle \downarrow s\left[\mathtt{var} \leftarrow v\right]} + \small{\text{Assign}}\] + +

Using MathJax allows users of assistive technology to browse the equations.

+ + +
+ +
+

Results and Lessons Learned

+

Show us some cool images of the results from your project. You can emphasize + parts of your text for readers. You can also make it strong to get your + point across as well. Italics are also useful for scientific terms and foreign words. +

+
+ A 3x3 image of geologic maps, generated outputs and desired outputs. +
Comparison of generated output and desired output from geologic maps for three examples.
+
+
+ +
+

Recommendations

+

Here you can tell us what you recommend. Should we keep training the model? How should we + plug wells? Should we continue predicting orphan well dates? Tell us what we need to + do next for the research project and also for the problem as a whole. +

+
+ +
+

Acknowledgements markup

+

Thanks to:

+ +
+ + +
+ Project logo +
Freshman Research Initiative Energy Analytics
+
+{% endblock %}