Closed
Description
Explain the problem.
I have a 1.md like this:
---
author:
- name: XXX
email: XXX@xxx.com
---
XXX
Then I run:
pandoc ./1.md --standalone -o 1.typ
I got 1.typ as:
// Some definitions presupposed by pandoc's typst output.
#let horizontalrule = [
#line(start: (25%,0%), end: (75%,0%))
]
#let endnote(num, contents) = [
#stack(dir: ltr, spacing: 3pt, super[#num], contents)
]
#show terms: it => {
it.children
.map(child => [
#strong[#child.term]
#block(inset: (left: 1.5em, top: -0.4em))[#child.description]
])
.join()
}
#set table(
inset: 6pt,
stroke: none
)
#let conf(
title: none,
authors: (),
keywords: (),
date: none,
abstract: none,
cols: 1,
margin: (x: 1.25in, y: 1.25in),
paper: "us-letter",
lang: "en",
region: "US",
font: (),
fontsize: 11pt,
sectionnumbering: none,
doc,
) = {
set document(
title: title,
author: authors.map(author => author.name),
keywords: keywords,
)
set page(
paper: paper,
margin: margin,
numbering: "1",
)
set par(justify: true)
set text(lang: lang,
region: region,
font: font,
size: fontsize)
set heading(numbering: sectionnumbering)
if title != none {
align(center)[#block(inset: 2em)[
#text(weight: "bold", size: 1.5em)[#title]
]]
}
if authors != none and authors != [] {
let count = authors.len()
let ncols = calc.min(count, 3)
grid(
columns: (1fr,) * ncols,
row-gutter: 1.5em,
..authors.map(author =>
align(center)[
#author.name \
#author.affiliation \
#author.email
]
)
)
}
if date != none {
align(center)[#block(inset: 1em)[
#date
]]
}
if abstract != none {
block(inset: 2em)[
#text(weight: "semibold")[Abstract] #h(1em) #abstract
]
}
if cols == 1 {
doc
} else {
columns(cols, doc)
}
}
#show: doc => conf(
authors: (
( name: "XXX",
affiliation: "",
email: "XXX\@xxx.com" ),
),
cols: 1,
doc,
)
XXX
The problem is that email: "XXX\@xxx.com"
, which make the pdf output of 1.typ looks like this:
Note:
pandoc/src/Text/Pandoc/Writers/Typst.hs
Line 467 in c19b44b
I think we maybe need a new context type like this:
pandoc/src/Text/Pandoc/Writers/Typst.hs
Line 476 in c19b44b
Pandoc version?
❯ pandoc --version
pandoc 3.2
Features: +server +lua
Scripting engine: Lua 5.4
User data directory: /home/black_desk/.local/share/pandoc
Copyright (C) 2006-2024 John MacFarlane. Web: https://pandoc.org
This is free software; see the source for copying conditions. There is no
warranty, not even for merchantability or fitness for a particular purpose.