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

Is there a way to use the theme to create bullet points upon indents? #4

Closed
dnk8n opened this issue Dec 9, 2019 · 6 comments
Closed

Comments

@dnk8n
Copy link

dnk8n commented Dec 9, 2019

e.g. Here is a part of a Hugo generated website with orbit theme, showing just the bullet points in action (Under Experience section).

Screenshot from 2019-12-09 17-23-43

This possible to reproduce in this project?

@mvarela
Copy link
Owner

mvarela commented Dec 9, 2019

Sure, you can just use normal LaTeX list environments (itemize, enumeration, description), and if you want some specific bullet styles, you can customize them as needed.

@dnk8n
Copy link
Author

dnk8n commented Dec 9, 2019

@mvarela I could do that, but struggled with the formatting.

E.g.

I had to do this:

\workexp{Student Intern}{Jan. 2015 - present}{Somewhere}{}
\begin{easylist}
  & 1
  & 2
  && 3a
  && 3b
  && 3c
\end{easylist}

which makes the list extra to the work experience section

I couldn't include the last bit in brackets like this:

\workexp{Student Intern}{Jan. 2015 - present}{Somewhere}{
  \begin{easylist}
    & 1
    & 2
    && 3a
    && 3b
    && 3c
  \end{easylist}
}

FYI, the top of the .tex file became:

\documentclass[9pt]{orbit-cv}
\urlstyle{rm}
\usepackage[ampersand]{easylist}
\ListProperties(Hide=100, Hang=true, Progressive=2ex, Style*=$\bullet$ , Style2*=$\circ$ )
\begin{document}

@dnk8n
Copy link
Author

dnk8n commented Dec 9, 2019

Looks good enough though. Just the section line spacings are a bit out.

@mvarela
Copy link
Owner

mvarela commented Dec 9, 2019

You can do without easylist (but you may want to include amssymb).

  \begin{itemize}
  \item[$\ast$] Did some stuff 
     \begin{itemize}
     \item[$\star$] sub-item 1
     \item[$\bullet$] sub-item 2
     \end{itemize}
   \item[$\blacktriangleright$] Did some more stuff 
   \end{itemize}

Screenshot-2019-12-09T18:54:02+02:00

You could also just put some unicode bullets in there, as long as they're provided by the font, too.

@mvarela mvarela closed this as completed Dec 9, 2019
@zxdawn
Copy link

zxdawn commented Sep 24, 2022

@mvarela Hi, any idea how to make the space between items smaller? I have tried this:

\usepackage{enumitem}

\workexp{test}{2021 — 2022}{test}
{
\begin{itemize}[noitemsep]
\item[$\bullet$]  item1
\item[$\bullet$] item2
\end{itemize}
}

Although the space is smaller, the things on the right become squares:
image

@mvarela
Copy link
Owner

mvarela commented Sep 27, 2022

Hi @zxdawn , off the top of my head, I don't know how to go about that (unfortunately I don't have time to dig into this atm). It would seem from the text after the icons, that you might have some font issues. Have you checked the logs?

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

3 participants