EnergyAtlas Logo EnergyAtlas Wiki Edit on GitHub
  • Home
  • Install
  • UBEM
  • References
  • User Stories
  • Library
  • FAQ

Wiki Navigation

Browse topics and documentation pages.

Quick Start

New to Energy Atlas New to UBEM UBEM Wiki

EnergyAtlas References

Input Output Guide Workflows Guide Objects Guide

Resources

User Stories EnergyAtlas Library FAQ Wiki Guide Development Guide

Image Guide for EnergyAtlas Wiki¶

Best Practices¶

1. Where to Store Images¶

Place images in docs/assets/images/ directory:

1
2
3
4
5
6
docs/
  assets/
    images/
      screenshot-1.png
      diagram.svg
      logo.png

2. Basic Image Syntax¶

Standard markdown image:

1
![Alt text](assets/images/image.png)

3. Image Sizing Classes¶

Use CSS classes for sizing:

1
2
3
4
![Small image](assets/images/image.png){.small}
![Medium image](assets/images/image.png){.medium}
![Large image](assets/images/image.png){.large}
![Full width](assets/images/image.png){.full-width}

4. Image Alignment¶

Float images left or right:

1
2
![Left aligned](assets/images/image.png){.float-left}
![Right aligned](assets/images/image.png){.float-right}

5. Image with Caption¶

Using HTML for better control:

1
2
3
4
<div class="image-container">
  <img src="assets/images/image.png" alt="Description" />
  <p>Caption text here</p>
</div>

Or using markdown with emphasis:

1
2
3
![Description](assets/images/image.png)

*Caption text here*

6. External Images¶

External images work the same way:

1
![External image](https://example.com/image.jpg)

7. Image Styling Features¶

  • Automatic centering: Images in paragraphs are centered
  • Borders: All images have subtle borders
  • Responsive: Images scale down on smaller screens
  • Rounded corners: Images have border-radius

8. Examples¶

Centered medium image:

1
![EnergyAtlas Dashboard](assets/images/dashboard.png){.medium}

Left-aligned thumbnail:

1
![Icon](assets/images/icon.svg){.small .float-left}

Full-width hero image:

1
![Hero Image](assets/images/hero.jpg){.full-width}

Image with caption:

1
2
3
4
<div class="image-container">
  <img src="assets/images/diagram.svg" alt="Process diagram" />
  <p>Figure 1: Energy modeling workflow</p>
</div>

Tips¶

  1. Optimize images: Use compressed formats (WebP, optimized PNG/JPG)
  2. Descriptive alt text: Always include meaningful alt text
  3. Consistent naming: Use descriptive, lowercase filenames with hyphens
  4. SVG for icons: Use SVG for logos and icons (scalable, small file size)
  5. PNG for screenshots: Use PNG for screenshots with text
  6. JPG for photos: Use JPG for photographs
  • Image Guide for EnergyAtlas Wiki
    • Best Practices
      • 1. Where to Store Images
      • 2. Basic Image Syntax
      • 3. Image Sizing Classes
      • 4. Image Alignment
      • 5. Image with Caption
      • 6. External Images
      • 7. Image Styling Features
      • 8. Examples
    • Tips

WIP EnergyAtlas Wiki

EnergyAtlas Wiki is still under active development. Thank you for your patience while we improve the documentation. If you have any questions, please contact us.