5.0 KiB
Command Line Interface (CLI)
This page lists the available commands and options of the RenderCV CLI.
Options of the rendercv command
-
#!bash --versionor#!bash -vShows the version of RenderCV.
rendercv --version -
#!bash --helpor#!bash -hShows the help message.
rendercv --help
Options of the rendercv new command
-
#!bash --theme "THEME_NAME"Generates files for a specific built-in theme, instead of the default
classictheme. Currently, the available themes are: {{available_themes}}.rendercv new "Full Name" --theme "THEME_NAME" -
#!bash --dont-create-theme-source-filesor#!bash -nolatexPrevents the creation of the theme source files. By default, the theme source files are created.
rendercv new "Full Name" --dont-create-theme-source-files -
#!bash --dont-create-markdown-source-filesor#!bash -nomdPrevents the creation of the Markdown source files. By default, the Markdown source files are created.
rendercv new "Full Name" --dont-create-markdown-source-files -
#!bash --helpor#!bash -hShows the help message.
rendercv new --help
Options of the rendercv render command
-
#!bash --use-local-latex-command "LATEX_COMMAND"or#!bash -use "LATEX_COMMAND"Generates the CV with the local
\LaTeXinstallation, i.e., runsLATEX_COMMAND. By default, RenderCV uses its own TinyTeX distribution.rendercv render "Full_Name_CV.yaml" --use-local-latex-command "pdflatex" -
#!bash --output-folder-name "OUTPUT_FOLDER_NAME"or#!bash -o "OUTPUT_FOLDER_NAME"Generates the output files in a folder with the given name. By default, the output folder name is
rendercv_output. The output folder will be created in the current working directory.rendercv render "Full_Name_CV.yaml" --output-folder-name "OUTPUT_FOLDER_NAME" -
#!bash --latex-path "PATH"or#!bash -latex "PATH"Copies the generated
\LaTeXsource code from the output folder and pastes it to the specified path.rendercv render "Full_Name_CV.yaml" --latex-path "PATH" -
#!bash --pdf-path "PATH"or#!bash -pdf "PATH"Copies the generated PDF file from the output folder and pastes it to the specified path.
rendercv render "Full_Name_CV.yaml" --pdf-path "PATH" -
#!bash --markdown-path "PATH"or#!bash -md "PATH"Copies the generated Markdown file from the output folder and pastes it to the specified path.
rendercv render "Full_Name_CV.yaml" --markdown-path "PATH" -
#!bash --html-path "PATH"or#!bash -html "PATH"Copies the generated HTML file from the output folder and pastes it to the specified path.
rendercv render "Full_Name_CV.yaml" --html-path "PATH" -
#!bash --png-path "PATH"or#!bash -png "PATH"Copies the generated PNG files from the output folder and pastes them to the specified path.
rendercv render "Full_Name_CV.yaml" --png-path "PATH" -
#!bash --dont-generate-markdownor#!bash -nomdPrevents the generation of the Markdown file.
rendercv render "Full_Name_CV.yaml" --dont-generate-markdown -
#!bash --dont-generate-htmlor#!bash -nohtmlPrevents the generation of the HTML file.
rendercv render "Full_Name_CV.yaml" --dont-generate-html -
#!bash --dont-generate-pngor#!bash -nopngPrevents the generation of the PNG files.
rendercv render "Full_Name_CV.yaml" --dont-generate-png -
#!bash --ANY.LOCATION.IN.THE.YAML.FILE "VALUE"Overrides the value of
ANY.LOCATION.IN.THE.YAML.FILEwithVALUE. This option can be used to avoid storing sensitive information in the YAML file. Sensitive information, like phone numbers, can be passed as a command-line argument with environment variables. This method is also beneficial for creating multiple CVs using the same YAML file by changing only a few values. Here are a few examples:rendercv render "Full_Name_CV.yaml" --cv.phone "+905555555555"rendercv render "Full_Name_CV.yaml" --cv.sections.education.1.institution "Your University"Multiple
#!bash --ANY.LOCATION.IN.THE.YAML.FILE "VALUE"options can be used in the same command. -
#!bash --helpor#!bash -hShows the help message.
rendercv render --help
Options of the rendercv create-theme command
-
#!bash --based-on "THEME_NAME"Generates a custom theme based on the specified built-in theme, instead of the default
classictheme. Currently, the available themes are: {{available_themes}}.rendercv create-theme "mycustomtheme" --based-on "THEME_NAME" -
#!bash --helpor#!bash -hShows the help message.
rendercv create-theme --help