Skip to content

Commit

Permalink
Table geometry
Browse files Browse the repository at this point in the history
  • Loading branch information
couet committed Nov 15, 2024
1 parent e8e7a67 commit 2467da3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
13 changes: 7 additions & 6 deletions _includes/example-list
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{% assign tutorials_list = page[include.id] %}
{% assign ref_guide_url = "https://root.cern/doc/master/" %}

<table id="navtable">
<table id="navtable" class="fixed">
<col width="33%" />
<col width="33%" />
<col width="33%" />
{% assign i = 0 %}
{% for tut in tutorials_list %}
{% if i==0 %}
<tr>
{% endif %}
<td>
<td style="vertical-align:bottom;">
<a href="{{ ref_guide_url }}{{ tut.example | replace: '.C', '_8C'}}.html">
<img src="{{ ref_guide_url }}pict1_{{ tut.example }}.png" >
<img src="{{ ref_guide_url }}pict1_{{ tut.example }}.png">
</a>
<em>
{% if tut.title %}{{ tut.title }}{% endif %}
</em>
<em> {% if tut.title %}{{ tut.title }}{% endif %} </em>
</td>
{% if i==2 %}
</tr>
Expand Down
6 changes: 4 additions & 2 deletions gallery/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ list1:
title: This example demonstrates how to use the accessible color schemes with THStack.
- example: ratioplot1.C
title: Example creating a simple ratio plot of two histograms using the pois division option.
- example: fillrandom.C
title: Fill a 1-D histogram from a parametric function.
- example: ContourList.C
title: Getting Contours From TH2D.
- example: candleplotwhiskers.C
title: Example of candle plot showing the whiskers definition.
list2:
- example: annotation3d.C
title: This example show how to put some annotation on a 3D plot using 3D polylines.
Expand Down

0 comments on commit 2467da3

Please sign in to comment.