Live data from Hacker News

Show HN: my "My Latex resume" project

github.com

71–76 of 76 posts

Re: Show HN: my "My Latex resume" project

#71
post #70
post #69

Earlier quoted context omitted.

The joke is less funny when you change the punchline and restrict it to resumes only but its still pretty funny. Typography? Seriously? In the context of a resume I would gloss over typography but you mentioned it explicitly. Html/css does not play on the same level as text when it comes to kerning, ligatures, letter spacing, expansion/protrusion, etc. Can you do any of the things microtype does with CSS? Searching t…

>kerning ... letter spacing http://www.w3schools.com/cssref/pr_text_letter-spacing.asp --- >ligatures @font-face supports this. --- >expansion/protrusion http://www.w3schools.com/cssref/css3_pr_hanging-punctuation.... (Simple workaround for browsers without support: http://csshowto.com/typography/hanging-punctuation-with-css/ ) --- >Searching the issues of wkhtmlpdf lists 50 something issues with fonts. I don't know…

It is cute that you pasted a lot of reference links mentioning css support. It would have been somewhat more effective if there were actual working examples occasionally. You certainly did not demonstrate that any of it would be easy...

kerning ... letter spacing -- It works "best" when pixels are used as the unit? Joke. Do you know the right amount of pixels for different line heights/font sizes? Calculating it every time is an easy implementation?

ligatures -- I could not find any good real world examples of @font-face, and none with examples of not inserting ligatures into words that should not have characters replaced by ligatures.

expansion/protrusion -- According to your reference NO MAJOR BROWSERS support it and the simple workaround is a kludge and does not work inside of flowed text. Joke.

wkhtmlpdf lists 50 something issues with fonts -- You don’t know what I am referring to? I am referring to the 50+ issues for wkhtmlpdf on their project. That is complicated?

negative letter spacing -- Letter spacing does not require a lot of effort with latex.

period after Dr. versus the end of a sentence -- You think manually specifying the behavior is easy?

frenchspacing -- You realize that your link has nothing to do with frenchspacing right?

babel/pollyglossia -- Yet again your link has nothing to do with the aforementioned packages.

Line breaking -- Do you really need a citation for html/css's awful line breaking behavior? Maybe this discussion is a bit out of your wheelhouse? To get html/css quality line breaks in latex you have to turn \sloppy on.

http://news.ycombinator.com/item?id=1974963 or http://web.archive.org/web/20070203140340/http://www.nat.vu....

bibtex -- What kind of question is the "ability to build a list of publications with bibtex in a resume/cv?" Vitally important for any academic field. (FYI by referencing I meant point your resume at a .bib file and having them seamlessly included) Have you tested this or do you have any examples of it playing nicely with all of the other hacks/kludges/might-work solutions you posted? What about changing the formats to a different industry standard? You think creating your own template to handle all the many corner cases is an easy solution compared to bibtex?

siunits -- Mathjax has nothing to do with siunits. Seriously this was almost as bad as your babel/pollyglossia solution.

page breaks? -- Awesome you found some css documents that mention page breaks and orphan control. Did you notice how widely supported this is? And how about these caveats:

"You cannot use this property on absolutely positioned elements.

Use the page-breaking properties as few times as possible and avoid page-breaking properties inside tables, floating elements, and block elements with borders."

headers/footers -- Should be? Lets try and discuss the things you know about and have a little experience with?

book quality publication -- I should have read this first. It seems that you do not really understand the requirements of publication quality documents. FYI, when you publish something most of the emphasis is on your consumer/audience. So while its wonderful that your prefer writing in markdown I am not sure why the consumer is going to care about your "syntactic perspective." Take a look at the highest voted answers for beautifully published documents:

http://tex.stackexchange.com/q/1319/7490

Or better yet try take a look at a tufte book and tell me that an html implementation would be perfectly fine.

wkthtmlpdf -- Its in the creator/producer field of your resume. You do understand your toolset right? You needed an additional tool to add metadata to your resume? You cant just add it easily by hand at the top of your document? Joke.

Re: Show HN: my "My Latex resume" project

#72

This is all very nice, but a surprisingly large number of recruitment agencies still demand CVs in word format.

I was at an interview recently and was disgusted to see my CV in the hands of the interviewers with the formatting totally messed up and the logo of the recruiters all over it. They had obviously cut and pasted into a word document even though I wouldn't give them this originally.

Re: Show HN: my "My Latex resume" project

#73
post #72

This is all very nice, but a surprisingly large number of recruitment agencies still demand CVs in word format.

I was at an interview recently and was disgusted to see my CV in the hands of the interviewers with the formatting totally messed up and the logo of the recruiters all over it. They had obviously cut and pasted into a word document even though I wouldn't give them this originally.

Perhaps a PDF with an embedded image per page is the way forward.

Re: Show HN: my "My Latex resume" project

#74
post #73
post #72

Earlier quoted context omitted.

I was at an interview recently and was disgusted to see my CV in the hands of the interviewers with the formatting totally messed up and the logo of the recruiters all over it. They had obviously cut and pasted into a word document even though I wouldn't give them this originally.

Perhaps a PDF with an embedded image per page is the way forward.

Problem with doing that is recruiters are lazy and you are giving them an extra step to go through. They probably like to just have a folder full of .docs for each posting.

A few times I've sent applications in PDF format just to be auto rejected.

Re: Show HN: my "My Latex resume" project

#76
post #5

Have you looked at docutils? A few years ago I rewrote my résumé in reStructuredText where you can use rst2html.py, rst2latex.py, etc. to generate various formats from one text source. And the source file is so free of obvious markup that it serves as a "plain text" version.

Never looked at it.. Do you have a link to your resume so I can see the end result? For me all that matters was to make it look 'damn' good on paper, as resumes are usually consumed from paper. I knowingly compromised on a more web-integrated version. (Or in other words: I think a PDF with clickable links is web-integrated enough)

The HTML/CSS that's generated by Docutils is very basic; you'd want to customize it (which is fairly straightforward) to have a more interesting layout or custom fonts, etc.

An example of RST-generated HTML is Docutils' own documentation: http://docutils.sourceforge.net/README.html

Original source markup (also a suitable plain-text version): http://docutils.sourceforge.net/README.txt

Unfortunately I don't see a good example of PDF output online, but it basically generates LaTeX and PDF from that.

The nice thing is having the flexibility to produce all these formats with one edit.

Post reply on HN