Search found 17 matches

by thag1987
Tue Dec 15, 2015 8:42 am
Forum: Text Formatting
Topic: Hyphenation on flushleft
Replies: 1
Views: 2888

Hyphenation on flushleft

Looks like \flushleft doesn't support hyphenation. Found out that you can load the package ragged2e to support it, but isn't there an easier solution?
Feels kind of messy to load additional packages for such small/basic things.
by thag1987
Mon Dec 14, 2015 6:00 am
Forum: Graphics, Figures & Tables
Topic: Line break after each entry but last
Replies: 7
Views: 4896

Re: Line break after each entry but last

:( ok, I'll leave it for now in this case.

In a perfect scenario I'd like to have no formatting in the document at all. Just text formatted by references on the macros.
by thag1987
Mon Dec 14, 2015 5:58 am
Forum: Graphics, Figures & Tables
Topic: Conditional formatting based on argument
Replies: 1
Views: 3118

Conditional formatting based on argument

\documentclass{article}
\usepackage[utf8]{inputenc}

\setlength{\tabcolsep}{0cm}
\newenvironment{entrylist}{
\begin{tabular*} % create table
{\textwidth}{@{\extracolsep{0.2cm}}ll} % two columns left-aligned with 0.2cm space in between
}{
\end{tabular*}
}

\newcommand{\entry}[4]{
#1&\parbox[t ...
by thag1987
Sun Dec 13, 2015 9:32 pm
Forum: Graphics, Figures & Tables
Topic: Line break after each entry but last
Replies: 7
Views: 4896

Re: Line break after each entry but last

Problem with the removed one is that it removes the space after each entry, instead of just after the last entry.

That would obviously work if you add the line break manually after each (but the last) entry. But that's not very 'clean'.
by thag1987
Sun Dec 13, 2015 9:24 pm
Forum: Text Formatting
Topic: Phone number link \href tel:
Replies: 3
Views: 22301

Re: Phone number link \href tel:

Kind of. Most companies have some kind of VOIP setup, so they could make an instant call from their computer with one click.

That's sad :(
by thag1987
Sun Dec 13, 2015 1:03 am
Forum: Graphics, Figures & Tables
Topic: Line break after each entry but last
Replies: 7
Views: 4896

Re: Line break after each entry but last

I can't stop now ;)

But I think I get the hang of it slowly. Should have figured out most of the template and have adjusted the structure. Just have to learn all the tweaks now to make it perfect.

Any hint on the line break?
by thag1987
Sun Dec 13, 2015 1:00 am
Forum: Text Formatting
Topic: Phone number link \href tel:
Replies: 3
Views: 22301

Phone number link \href tel:

Hey, I was trying to have the phone number as a clickable link in the pdf, similar to \href{mailto:email@gmail.com}{email@gmail.com} but \href{tel:1999999999}{+1 999 999 999} is not working and also not referenced in the hyperref package.

Is there an easy way to achieve this?

Reference html would ...
by thag1987
Sat Dec 12, 2015 11:04 pm
Forum: Graphics, Figures & Tables
Topic: Line break after each entry but last
Replies: 7
Views: 4896

Line break after each entry but last

\documentclass{article}
\usepackage[utf8]{inputenc}

\setlength{\tabcolsep}{0cm}
\newenvironment{entrylist}{
\begin{tabular*} % create table
{\textwidth}{@{\extracolsep{0.2cm}}ll} % two columns left-aligned with 0.2cm space in between
}{
\end{tabular*}
}

\newcommand{\entry}[4]{
#1&\parbox[t ...
by thag1987
Sat Dec 12, 2015 10:11 pm
Forum: Fonts & Character Sets
Topic: Moderncv XeTeX: \textit ignored
Replies: 3
Views: 8039

Moderncv XeTeX: \textit ignored


\documentclass{article}
\usepackage[utf8]{inputenc}

\newcommand{\entry}[4]{
#1&\parbox[t]{7.2cm}{
\textbf{#2}
\hfill
{\footnotesize\color{lightgray} #3}\\
#4\\}\\}

\begin{document}

\entry
{2010 - 2014}
{Bachelor of Science}
{University}
{
lorem ipsum\\
lorem ipsum\\
lorem ipsum ...
by thag1987
Sat Dec 12, 2015 6:41 am
Forum: Fonts & Character Sets
Topic: Moderncv XeTeX: \textit ignored
Replies: 3
Views: 8039

Moderncv XeTeX: \textit ignored


\newcommand{\entry}[4]{
#1&\parbox[t]{7.2cm}{
\textbf{#2}
\hfill
{\footnotesize\color{lightgray} #3}\\
#4\\}\\}

\entry
{2010 - 2014}
{Bachelor of Science}
{University}
{
lorem ipsum\\
lorem ipsum\\
lorem ipsum\\
\textit{italic textpart}
}


Looks like I can't do additional ...