Consider the following R-code:
## Uncomment the following line if tikzDevice is absent
## install.packages('tikzDevice')
library(tikzDevice)
tikz('test.tex')
dev.off()
This produces a test.tex
in the working directory with the following content:
% Created by tikzDevice version 0.12.3.1 on 2022-11-12 18:17:25
% !TEX encoding = UTF-8 Unicode
I want to either suppress these comments or change their comment character. Is there any way to achieve this?