MattCrumpLab, to random
@MattCrumpLab@fosstodon.org avatar

Noticed a issue when rendering a citation for a quarto article. I write my name with initials in the author yml:

author: "Matthew J. C. Crump"

The bibtex citation generated at the bottom of the article merges the initials onto the last name.

author = {J.C.Crump, Matthew}

It should be

author = {Crump, Matthew J. C.}

Anyone come across this and know of a solution?

MattCrumpLab,
@MattCrumpLab@fosstodon.org avatar

@RossGayler Ha, ya that person is out of luck. I tried a few different things already, including Matthew {J. C.} Crump, and similar, to no avail.

I happened on this a couple weeks back and recall finding a discussion of this on a github issues page, but I can't find that now. I'll likely head over there and report this.

Otherwise, it happens that I am using the Zotero workflow you mentioned earlier, and that has worked flawlessly. Thanks #QuartoPub and @zotero !

maelle, to random French
@maelle@mastodon.social avatar

#RStats 📦 {babelquarto} helps creating and rendering multilingual #QuartoPub online books. 📖 It was crucial for the translation of @rOpenSci dev guide!

After a FR, I extended {babelquarto} to Quarto websites.

I am not sure at all it's a good idea, vs using a tool with official multilingual support (Hugo?), or waiting for Quarto support. 😰 🤔

Thoughts?

Context:

MickaelCanouil,
@MickaelCanouil@fosstodon.org avatar

@maelle good/bad 🤷‍♂️, I think it’s a “right now” solution for a problem that has no timetable yet.
It could help later on design the multilingual feature native to #QuartoPub #Quarto

@rOpenSci

nrennie, to random
@nrennie@fosstodon.org avatar

I'm in the process of putting my slides together for next week's PyData Lancaster talk using #QuartoPub 🎨

The slides from @emilhvitfeldt's talk at New York R conference on "Slidecraft: The Art of Creating Pretty Presentations" have been incredibly useful in making them look good!

Emil's slides: https://emilhvitfeldt.github.io/talk-nyr-slidecraft/#/section

#RStats

andrew, (edited ) to random

#QuartoPub v1.3 added the ability to add line-based annotations to code and it's super neat #rstats https://quarto.org/docs/authoring/code-annotation.html

(see here for original https://datavizs23.classes.andrewheiss.com/news/2023-07-05_messy-broken-code-tips.html)

maelle, to random French
@maelle@mastodon.social avatar

From @rOpenSci's multilingual publishing project,

Multilingual #QuartoPub books with {babeldown} and {babelquarto} 🌐 📖

https://docs.ropensci.org/babeldown/articles/quarto.html

#RStats

MattCrumpLab, to random
@MattCrumpLab@fosstodon.org avatar

Some notes on using #QuartoPub and listing pages to create a basic art portfolio website.

https://crumplab.com/blog/662_quarto_portfolio/

MattCrumpLab, to random
@MattCrumpLab@fosstodon.org avatar

A day late for #portfolioday but I needed an extra day to give my art website a facelift. #rstats #QuartoPub

https://crumplab.com/things/

MattCrumpLab, to random
@MattCrumpLab@fosstodon.org avatar

Today's mission is to update my art website using #QuartoPub listing pages.

MattCrumpLab,
@MattCrumpLab@fosstodon.org avatar

Pretty much done with using #QuartoPub to redo my art website.

https://crumplab.com/things/

posit_glimpse, to python

Join @thomas_mock at the Data Umbrella Live Webinar this week!

He'll be sharing about Reproducible Publications with Python and Quarto.

Tuesday, July 11th at 16:00 UTC

Information on how to join: https://www.meetup.com/data-umbrella/events/294319559/

#quartopub #python #scipy

@dataumbrella

djnavarro, to random

Today, thanks to a random github comment by @grrrck, I discovered that #QuartoPub has pre-render and post-render options that allow you to execute custom scripts before and after rendering a project. Just add something like this to the _quarto.yml file and... it works 🎉

project:  
 type: website  
 post-render: ./post-render.sh  

I'm way too excited by this, aren't I? Yeah, even I can see that

matti, to random

#rstats #QuartoPub extension/feature request: Code chunk output option that automatically wraps multiple plots/figures/outputs into a tabset. Is this already a thing @MickaelCanouil?

MickaelCanouil,
@MickaelCanouil@fosstodon.org avatar

@matti use 'panel: tabset' code cell option and print level 2 headers for tabs name.
It’s all already in Quarto.
#Quarto #QuartoPub

MickaelCanouil,
@MickaelCanouil@fosstodon.org avatar

@matti See the following example.

#Quarto #QuartoPub


title: "Quarto Playground"
format: html

#| panel: tabset  
#| output: asis  
list_of_tables <- rep(list(head(mtcars)), 3)  
names(list_of_tables) <- c("Table 1", "Table 2", "Table 3")  
for (itable in names(list_of_tables)) {  
 cat(sprintf("## %s\n", itable))  
 print(knitr::kable(list_of_tables[[itable]]))  
}  
brodriguesco, to random
@brodriguesco@fosstodon.org avatar

New blog post: How to self-publish a technical book on Leanpub and Amazon using Quarto

https://www.brodrigues.co/blog/2023-06-29-book_quarto/

#RStats #Quartopub

MickaelCanouil, to python
@MickaelCanouil@fosstodon.org avatar

🥳🎉 1,000 stars on GitHub for the Quarto Awesome list!

I am very glad what I started for me is useful to others!

https://github.com/mcanouil/awesome-quarto#readme

#AwesomeQuarto #QuartoPub #Quarto #Python #RStats #JuliaLang #ObservableHQ

dlakelan, to random
@dlakelan@mastodon.sdf.org avatar

hive mind. I'm working on a project where I want to generate graphs in Julia but I don't want to show any of the code that generates the graph. The point of the project is to discuss how to do mathematical models without reference to any particular kind of code, so I want to plot data, but not distract the reader with syntax. Are there options to include "hidden" cells to do the plots, but still show the graphical output?

MickaelCanouil,
@MickaelCanouil@fosstodon.org avatar

@dlakelan In your case you are interested in the following pages of the documentation:

#QuartoPub #Quarto
@ellakaye

andrew, to random

I've been using a #QuartoPub blog as a replacement for e-mails for my dataviz class this summer and it's been neat to be able to throw out helpful tips with code+output, including this section on why/how I size my figures as golden rectangles #rstats https://datavizs23.classes.andrewheiss.com/news/2023-06-19_faqs_session-03-04.html#how-can-i-control-the-dimensions-of-my-figures

Screenshot from a blog post showing a shortcut to figuring out φ, just using 5/3
Screenshot from a blog post showing a Fibonacci spiral

MattCrumpLab, to random
@MattCrumpLab@fosstodon.org avatar

Accidentally spent the day reformatting my lab website, oopsie.

https://crumplab.com/

It should flow a bit better across multiple devices and screen sizes, and at the very least I learned about ejs files and custom listings in quarto, which I will use again for sure. #QuartoPub

sophie, to random
@sophie@social.lol avatar

Feeling a bit like Goldilocks trying different slide platforms. iA Presenter is dreamy to write slides in, but doesn't support sound (a must-have for this talk), Keynote doesn't support code snippets, and the JS frameworks are out because I hate writing slides in code and farting around with weirdly specific CSS.

jimgar,

@sophie #QuartoPub might be what you’re looking for. You can do your slides with different output types, reveal.js being one of them. Has multi-language support for syntax highlighting and step-through. You can use markdown, embed yt videos, etc. This is a very popular tool among #RStats users so there’s a bunch of blog posts and examples out there too, but the docs are also very good imo:

https://quarto.org/docs/presentations/

simonpcouch, to random
@simonpcouch@fosstodon.org avatar

The tidymodels team recently converted our website to use , allowing us to more easily maintain and contribute content.

There are a few bonus features that came along with this conversion too, though! One that's super exciting to me is the searchable broom method table—if you have a model object to summarize but can't find tidier methods for it, you can search across all CRAN packages here🤯

https://www.tidymodels.org/find/broom/

kfitz, to random
@kfitz@hcommons.social avatar

Can anyone tell me how customized Quarto's version of reveal.js is? Are the modifications all handled through available plugins? #Quarto #Reveal

MickaelCanouil,
@MickaelCanouil@fosstodon.org avatar

@kfitz depending of the amount of customisation you have for your Reveal.js presentation, you can put most (if not all) in your markdown/Quarto document.
If you host your “qmd” file on GitHub, there are GitHub Actions to render and publish to GitHub Pages and other platforms.
Note that you can also publish manually.

#QuartoPub #Quarto

MickaelCanouil,
@MickaelCanouil@fosstodon.org avatar

@kfitz in addition and regarding Quarto format extensions:

Finally the Awesome Quarto list: https://github.com/mcanouil/awesome-quarto#readme

#Quarto #QuartoPub

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • mdbf
  • ngwrru68w68
  • modclub
  • magazineikmin
  • thenastyranch
  • rosin
  • khanakhh
  • InstantRegret
  • Youngstown
  • slotface
  • Durango
  • kavyap
  • DreamBathrooms
  • megavids
  • GTA5RPClips
  • tacticalgear
  • normalnudes
  • tester
  • osvaldo12
  • everett
  • cubers
  • ethstaker
  • anitta
  • provamag3
  • Leos
  • cisconetworking
  • lostlight
  • All magazines