You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Create the "compiled" subfolder if it doesn't existif (!(Test-Path -Path "output")) { New-Item -ItemType Directory -Path "output"}# Run XeLaTeX twice and move the output to the "compiled" subfolderxelatex -interaction=nonstopmode -output-directory=output cv.texxelatex -interaction=nonstopmode -output-directory=output cv.texWrite-Host "Compilation complete."# Delete all files except PDF files from the "compiled" subfolderGet-ChildItem -Path "output" -Exclude *.pdf | Remove-Item -ForceWrite-Host "Cleaned up output folder."