-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LaTeX reader - pandoc ignores \part #1905
Comments
I would vote for a When converting from markdown to latex/pdf with the option |
I have just realized that a |
I'm not sure what the best way to support this is. |
'part' also exists in epub (at least in epub3). Indeed, it would be great to have a correspondance with the latex command \part. |
@mpickering, wouldn’t it be possible to implement |
Hi, I stumbled upon the same issue today. As I used to MultiMarkdown's behavior, I thought setting It seems mapping level 1-6 markdown headings to level 0-5 LaTeX headings is natural. In terms of command line option, from markdown to LaTeX should accept Currently, from LaTeX to Markdown seems to map LaTeX 1-5 to Markdown 1-5, when no option or |
We have a |
However, if you can live without numbered chapters, there is much you can do via CSS: nav#TOC ul {
list-style: none;
}
nav#TOC > ul > li {
margin-top: 1em;
}
nav#TOC > ul > li > ul {
margin-top: 1em;
}
nav#TOC > ul > li > a {
margin-top: 4em;
text-transform: uppercase;
}
nav#TOC > ul > li > ul > li {
margin-top: 0.5em;
}
nav#TOC > ul > li > ul > li > a {
font-weight: bold;
} |
Converting the following LaTeX code:
in markdown format gives the following code:
\part
is ignored.I wonder whether it would make sense to convert it to
# Part {.part}
or to enable a--part
option in pandoc.The text was updated successfully, but these errors were encountered: