├── .gitignore ├── README.md ├── slides.key └── slides.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | gifs/ 2 | images/ 3 | screenshots/ 4 | overview-slide.001.jpeg 5 | 6 | # Created by https://www.toptal.com/developers/gitignore/api/r,macos 7 | # Edit at https://www.toptal.com/developers/gitignore?templates=r,macos 8 | 9 | ### macOS ### 10 | # General 11 | .DS_Store 12 | .AppleDouble 13 | .LSOverride 14 | 15 | # Icon must end with two \r 16 | Icon 17 | 18 | # Thumbnails 19 | ._* 20 | 21 | # Files that might appear in the root of a volume 22 | .DocumentRevisions-V100 23 | .fseventsd 24 | .Spotlight-V100 25 | .TemporaryItems 26 | .Trashes 27 | .VolumeIcon.icns 28 | .com.apple.timemachine.donotpresent 29 | 30 | # Directories potentially created on remote AFP share 31 | .AppleDB 32 | .AppleDesktop 33 | Network Trash Folder 34 | Temporary Items 35 | .apdisk 36 | 37 | ### macOS Patch ### 38 | # iCloud generated files 39 | *.icloud 40 | 41 | ### R ### 42 | # History files 43 | .Rhistory 44 | .Rapp.history 45 | 46 | # Session Data files 47 | .RData 48 | .RDataTmp 49 | 50 | # User-specific files 51 | .Ruserdata 52 | 53 | # Example code in package build process 54 | *-Ex.R 55 | 56 | # Output files from R CMD build 57 | /*.tar.gz 58 | 59 | # Output files from R CMD check 60 | /*.Rcheck/ 61 | 62 | # RStudio files 63 | .Rproj.user/ 64 | 65 | # produced vignettes 66 | vignettes/*.html 67 | vignettes/*.pdf 68 | 69 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 70 | .httr-oauth 71 | 72 | # knitr and R markdown default cache directories 73 | *_cache/ 74 | /cache/ 75 | 76 | # Temporary files created by R markdown 77 | *.utf8.md 78 | *.knit.md 79 | 80 | # R Environment Variables 81 | .Renviron 82 | 83 | # pkgdown site 84 | docs/ 85 | 86 | # translation temp files 87 | po/*~ 88 | 89 | # RStudio Connect folder 90 | rsconnect/ 91 | 92 | ### R.Bookdown Stack ### 93 | # R package: bookdown caching files 94 | /*_files/ 95 | 96 | # End of https://www.toptal.com/developers/gitignore/api/r,macos 97 | speaker_training 98 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Quarto for Knowledge Management 2 | 3 | Slides and links for "Quarto for Knowledge Management" talk at posit::conf(2024) 4 | 5 | ### Resources by yours truly 6 | 7 | - Quarto Websites 8 | - [Template for conference scrapbook](https://github.com/cynthiahqy/quarto-conf-scrapbook) 9 | - [posit::conf(2023) example](https://cynthiahqy.quarto.pub/positconf2023-scrapbook/) 10 | - [Template for internal wiki](https://github.com/cynthiahqy/quarto-wiki-template) based on an early version of my PhD Log 11 | - Quarto Computations & Extensions: 12 | - Interactive calendar: [ggtilecal](https://github.com/cynthiahqy/ggtilecal/tree/main) package 13 | - README for research graphics: 14 | - [Tutorial for using R code generate markdown image links in a Quarto document](https://www.cynthiahqy.com/posts/layout-folder-images/) 15 | - [Tutorial for organising my research graphics](https://www.cynthiahqy.com/posts/reusing-images-with-git-submodules/) 16 | - Extensions: 17 | - [Explainer on types of Quarto extensions](https://www.cynthiahqy.com/posts/quarto-extensions-explainer/) 18 | - [Tutorial for creating masonry-style image gallery](https://www.cynthiahqy.com/posts/masonry-gallery/) 19 | - Private (to Public) Experiments 20 | - [Tutorial for Multi-Format CV](https://www.cynthiahqy.com/posts/cv-html-pdf/) 21 | 22 | ### Bonus links 23 | 24 | - Template for adding static encryption to a quarto website via `staticrypt`: 25 | - List of Quarto Extensions: 26 | - Quarto Manuscripts: 27 | -------------------------------------------------------------------------------- /slides.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cynthiahqy/positconf2024/0277ffa5db0c26fa49ff13e6850324ea2c96f09c/slides.key -------------------------------------------------------------------------------- /slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cynthiahqy/positconf2024/0277ffa5db0c26fa49ff13e6850324ea2c96f09c/slides.pdf --------------------------------------------------------------------------------