Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Difficulty organising layout in PDF view (Left hand labels, hanging bullet points, bold in italics) #17

Open
JonTheNiceGuy opened this issue Oct 11, 2016 · 1 comment

Comments

@JonTheNiceGuy
Copy link

I'm trying to use this for my Resume. Here's a sample of the input

----

**Key Skills & Attributes**

:   * Proven track record of achieving challenging targets and standards of service.

Which results in:

capture

Now, I think this is related to #15, but later in the document I have:

**Recent <br />Employment**

:   *2014 - Present Day **Security Operations Centre - Platforms Support**: Fujitsu*

Which now renders as:

capture

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:

:   *2014 - Present Day **Security Operations Centre - Platforms Support**: Fujitsu*

Should look like:

capture

But is not performing the bold action for the middle section.

Any thoughts on what I could do to fix this?

@JonTheNiceGuy
Copy link
Author

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>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant