1
0
Fork 0

awesomecv fix cventry arguments

This commit is contained in:
Oscar Najera 2023-10-22 02:57:16 +02:00
parent 70bab953d9
commit 25fdcbfa01
1 changed files with 11 additions and 12 deletions

View File

@ -275,9 +275,9 @@ as a communication channel."
)
((string= entrytype "cventry")
(format "\n\\cventry\n{%s}\n{%s}\n{%s}\n{%s}\n{%s%s}\n"
title
employer
location
title
(org-cv-utils--format-time-window from-date to-date)
(org-awesomecv--cventry-right-img-code right-img)
contents))
@ -347,18 +347,17 @@ as a communication channel."
(when pagebreak "\\clearpage\n")
(cond
;; is a cv entry or subentry
((or (string= environment "cventry")
(string= environment "cvsubentry")
(string= environment "cvemployer")
(string= environment "cvschool")
(string= environment "cvhonor")
(string= environment "cvletter")
(string= environment "cvletter_notitle")
(string= environment "lettersection")
(string= environment "letterheader")
)
((member environment '("cventry"
"cvsubentry"
"cvemployer"
"cvschool"
"cvhonor"
"cvletter"
"cvletter_notitle"
"lettersection"
"letterheader"))
(org-awesomecv--format-cventry headline contents info))
((or (string= environment "cventries") (string= environment "cvhonors"))
((member environment '("cventries" "cvhonors"))
(org-awesomecv--format-cvenvironment environment headline contents info))
((org-export-with-backend 'latex headline contents info)))))))