{"id":18382411,"url":"https://github.com/ntd/tccv","last_synced_at":"2025-04-06T23:31:37.351Z","repository":{"id":19093834,"uuid":"22321806","full_name":"ntd/tccv","owner":"ntd","description":"Two columns curriculum vitae","archived":false,"fork":false,"pushed_at":"2021-12-16T22:35:37.000Z","size":87,"stargazers_count":80,"open_issues_count":0,"forks_count":20,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-22T09:01:59.238Z","etag":null,"topics":["curriculum-vitae","koma-script","latex"],"latest_commit_sha":null,"homepage":"","language":"TeX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ntd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-27T20:50:02.000Z","updated_at":"2024-04-25T16:40:16.000Z","dependencies_parsed_at":"2022-07-12T23:50:38.408Z","dependency_job_id":null,"html_url":"https://github.com/ntd/tccv","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntd%2Ftccv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntd%2Ftccv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntd%2Ftccv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntd%2Ftccv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ntd","download_url":"https://codeload.github.com/ntd/tccv/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247569123,"owners_count":20959758,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["curriculum-vitae","koma-script","latex"],"created_at":"2024-11-06T01:05:33.686Z","updated_at":"2025-04-06T23:31:32.338Z","avatar_url":"https://github.com/ntd.png","language":"TeX","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Overview\n\n**tccv** (two columns curriculum vitae) is a LaTeX class inspired by the\ntemplate found at\n[latextemplates](http://www.latextemplates.com/template/two-column-one-page-cv)\nby Alessandro Plasmati.\n\nFrom a TeXnical point of view this is a complete rewrite. From the user\nperspective, the most relevant differences from the original template are:\n\n* this is a class, not a template document;\n* more than one page are handled properly;\n* the fonts are selected from the\n  [psnfss](http://www.ctan.org/pkg/psnfss) collection, so no\n  custom font installation should be required;\n* it is plain LaTeX/Koma-script, so the CV can be compiled\n  with the usual tools, latex pdflatex and lualatex included;\n* the implementation is heavily based on custom environments\n  and macros, so the document should be much easier to read\n  (and customize);\n* tccv is based on scrartcl (from Koma-script), not on article.\n\n## How to use\n\nYou can download the [zipped\ntarball](https://github.com/ntd/tccv/archive/refs/heads/master.zip) that\nincludes a couple of examples or pick up only the relevant [LaTeX\nclass](https://github.com/ntd/tccv/raw/master/tccv.cls).\n\nThe code is maintained in a git repository [browsable\nonline](https://github.com/ntd/tccv): fill free to fork it and extends in any\nway you like.\n\nA sample PDF generated with the command `lualatex nicola.en.tex` can be\n[downloaded](https://github.com/ntd/tccv/raw/master/nicola.en.pdf).\n\n## Howto\n\n### Personal box on top\n\nThe `\\personal` box by default follows the text flow. If you want to\naffix it on the top (or on the bottom) you can make it a float, e.g.:\n\n    \\begin{figure}[b] % Push the figure at the bottom; use t for top\n    \\personal[url]\n             {address}\n             {phone}\n             {email}\n    \\end{figure}\n\nAlternatively you can use the myfloat package:\n\n    % In the preamble\n    \\usepackage{float}\n    \\newfloat{myfloat}{t}{} % 'myfloat' is arbitrary, 't' stands for 'top'\n\n    % Then wrap your personal data using the newly created custom float\n    \\begin{myfloat}\n    \\personal[url]\n             {address}\n             {phone}\n             {email}\n    \\end{myfloat}\n\n### Personal box broken in LyX\n\nFor some reason LyX (at least up to 2.1.3) escapes the brackets of the\n`\\personal` optional argument, scattering the URL letters all around.\nIf this is the case if you look at the source window you should see\nsomething like `{[}www.myweb.site{]}` instead of `[www.myweb.site]`.\n\nTo solve this problem just readd the argument as *TeX code* by\neventually using the `CTRL-l` shortcut.\n\n### Bullet points in ``eventlist``\n\n``Tccv`` does not support bullet points due to its ``\\eventlist`` environment that overrides the default ``\\item`` command. That's why code like the following would not work (see [#5](https://github.com/ntd/tccv/issues/5))\n\n```tex\n\\begin{eventlist}\n\n\\item{July 2007 -- Present}\n     {Furman University, Greenville, SC}\n     {Software Developer}\n\n\\begin{itemize}\n     \\item Development and testing of automatic and semiautomatic machines\n     \\item  Designing of electrical schematics\n\\end{itemize}\n```\n\nFixing this issue would either be an ugly hack or a breaking change to the existing APIs. Since backward-compatibility is desired, this repo won't fix this issue. However, you may view a variant of ``tccv`` that addresses bullet points (see demo here: [resume.pdf](https://costahuang.me/resume.pdf), and its corresponding repo here:  [vwxyzjn/tccv-bullet-points](https://github.com/vwxyzjn/tccv-bullet-points))\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fntd%2Ftccv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fntd%2Ftccv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fntd%2Ftccv/lists"}