Can we suppress or change the initial descriptive comments with tikzDevice?

15 views Asked by At

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?

0

There are 0 answers