blog ici Use Inkscape as a command line tool to batch convert svg to pdf files.
ls *svg | xargs -I{} inkscape -z -f {} -A {}.pdf
blog ici Use Inkscape as a command line tool to batch convert svg to pdf files.
ls *svg | xargs -I{} inkscape -z -f {} -A {}.pdf
Lineno package, which makes LaTeX and PDF reviews easier by printing line numbers.
http://ctan.mackichan.com/macros/latex/contrib/ednotes/ulineno.pdf
Review PDF file with multi-reviewers.
http://crocodoc.com/
Save ggplot in pdf
Use dev.copy2pdf(file=”plot.pdf”)
Example)
plotA <- ggplot() + geom_line(data=nucleosome.mono.colsum, aes(seq, y=A, colour="A") )
plotT <- ggplot() + geom_line(data=nucleosome.mono.colsum, aes(seq, y=T, colour="T") )
arranged.plot <- grid.arrange(plotA, plotT, nrow=2)
dev.copy2pdf(file="arranged.plot")
dev.off()