Hello. I tried to define following function:
#let title(title:"Paper Title", size: 17pt,align: center) = {
align(align,text(size)[#title])
}
for a result like
#align(center, text(17pt)[
Paper title
])
But this does not work because the name of argument 'align' and a function name ' align' are same. To avoid this batting, I wrote a code:
#let al = align
#let title(title: "Paper Title", size: 17pt, align: center) = {
al(align, text(size)[#title])
}
This solved the problem, but this is not good for others to read. How can I deal with this problem?