How to cite secondary sources in APA style?

Thank you very much for your reply. Your solution is more elegant than what I came up with.

I was inspired by this post to just remove the the parentheses with a regex.

My personal solution was this one:

#let cited-in(label) = {
  show regex("\(|\)"): none
  "cited it "
  cite(label, form: "normal") 
}

Yours is better because the syntax is more in line with the default way to cite in Typst, and by this, it also allows you to put in multiple sources.

Generally speaking, it would be very nice to have a built-in way to do this, but for now this seems like the most elegant solution.

1 Like