This is an unofficial LaTeX CV template that closely follows Georgia Tech's CV template required for reappointment, promotion, and tenure of academic faculty. The official template is only available in MS Word, hence this unofficial repository. It closely matches the official one at the following timestamps:
- March 2023
- March 2024: Still up to date, now includes the newly required PDF table of contents/bookmarks
- May 2024: Updated to fix asterisk from items before Gatech to during Gatech
Note: This CV template is not useful for Gatech students.
Submit a PR to improve if needed.
Most of this is pretty straightforward. There are only a few hacks that you have to deal with.
-
Gatech wants your student's names in boldface
Accomplish this by putting your students' last names in the\makeauthorsbold{}
command at the top ofcv.tex
. This makes them bold everywhere in the document, which is required per the existing RPT template. Here is an example:Line 7 in e34f48d
-
Gatech wants asterisks in front of items that occurred during your time at Gatech.
Accomplished this by, inref.bib
, usingoptions = {extsym={*}}
for all items that occurred while you were at Georgia Tech. Here is an example:Lines 72 to 78 in e34f48d
-
You'll probably want a clean way to maintain one
.bib
file for your entire CV (I do).
To do this, while maintaining separation of different types of talks and publications maintain autosorting viabiblatex
. I used some keywords inref.bib
to this sorting:
- Add
keywords = "invited"
to an@incollection{}
type to indicate an invited talk. @report{}
and@thesis{}
types will go into section "B3. Other Refereed Material," which can be seen in this code snippet inpreamble.tex
Lines 32 to 36 in e34f48d
The same biblatex
+ ref.bib
configuration can be used with Jekyll Scholar for maintaining one .bib
file for your CV and your website.
I do this for my research group here, and the corresponding template is here.
MIT