gitextract__yr00ue_/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ └── workflows/ │ └── check-standard.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── export │ ├── export.rdb │ ├── export.rdx │ ├── graph2bitmap.R │ ├── graph2office.R │ ├── graph2vector.R │ ├── rgl2bitmap.R │ ├── table2office.R │ ├── table2spreadsheet.R │ ├── table2tex.R │ └── utils.R ├── README.md ├── examples/ │ ├── graph2bitmap.R │ ├── graph2office.R │ ├── graph2vector.R │ ├── rgl2bitmap.R │ ├── table2office.R │ ├── table2spreadsheet.R │ └── table2tex.R ├── inst/ │ └── templates/ │ ├── A1_landscape.pptx │ ├── A1_portrait.pptx │ ├── A2_landscape.pptx │ ├── A2_portrait.pptx │ ├── A3_landscape.docx │ ├── A3_landscape.pptx │ ├── A3_portrait.docx │ ├── A3_portrait.pptx │ ├── A4_landscape.docx │ ├── A4_landscape.pptx │ ├── A4_portrait.docx │ ├── A4_portrait.pptx │ ├── A5_landscape.docx │ ├── A5_landscape.pptx │ ├── A5_portrait.docx │ └── A5_portrait.pptx └── man/ ├── graph2bitmap.Rd ├── graph2office.Rd ├── graph2vector.Rd ├── rgl2bitmap.Rd ├── table2office.Rd ├── table2spreadsheet.Rd └── table2tex.Rd