Open JonTheNiceGuy opened 8 years ago
Strictly speaking, with the last item (the bold/not-bold) thing, I'd actually rather see something more like:
Recent Employment | 2014-Present Day | Security Operations Centre - Platforms Support | Fujitsu |
---|---|---|---|
I did some stuff | |||
Past Employment | 2012-2014 | Last Job | An Employer |
I did some stuff | |||
2010-2012 | Previous Job | An Employer | |
I did some stuff | |||
2008-2010 | Another Previous Job | An Employer | |
I did some stuff |
Which, when rendered in HTML would look something like the following (aside from the fact that using tables like that is so passe).
<table>
<tr>
<th rowspan=2>Recent Employment</th>
<td><i>2014-Present Day</i></td>
<td><b><i>Security Operations Centre - Platforms Support</i></b></td>
<td><i>Fujitsu</i></td>
</tr>
<tr><td colspan=3>I did some stuff</td></tr>
<tr>
<th rowspan=6>Past Employment</th>
<td><i>2012-2014</i></td>
<td><b><i>Last Job</i></b></td>
<td><i>An Employer</i></td>
</tr>
<tr><td colspan=3>I did some stuff</td></tr>
<tr>
<td><i>2010-2012</i></td>
<td><b><i>Previous Job</i></b></td>
<td><i>An Employer</i></td>
</tr>
<tr><td colspan=3>I did some stuff</td></tr>
<tr>
<td><i>2008-2010</i></td>
<td><b><i>Another Previous Job</i></b></td>
<td><i>An Employer</i></td>
</tr>
<tr><td colspan=3>I did some stuff</td></tr>
</table>
I'm trying to use this for my Resume. Here's a sample of the input
Which results in:
Now, I think this is related to #15, but later in the document I have:
Which now renders as:
Personally, I'd like to see the second layout than the former. I've tried tweaking the .tex file according to the suggestions in #15, and it's not making the changes I'm after (sadly).
I've also noticed that the HTML output from this line:
Should look like:
But is not performing the bold action for the middle section.
Any thoughts on what I could do to fix this?