-
-
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
allow options in native column div for latex #4150
Comments
One possibility would be
That would leave room for other options like |
Please also allow absolute Currently (Pandoc 2.1.1) this snippet ::: {.column width=40mm}
::: would be translated to \begin{column}{40mm\textwidth}
\end{column} Relative |
Any news? |
The correct syntax for the column alignment option is yet unclear. Can we please clarfy this? |
Note that the inner I usually need columns spanning |
Yes it would indeed be very practical to be able to add options to the column environment, such as onlytextwidth.. |
pandoc (2.9.2) writes Add the following to a file, %% configure columns environment to use totalwidth=\textwidth only
\let\origcolumns\columns
\let\endorigcolumns\endcolumns
\renewenvironment{columns}[1][]{\origcolumns[onlytextwidth,#1]}{\endorigcolumns} Include this file when converting to "beamer", e.g., via pandoc's argument |
In beamer, the column environment accepts options, mostly for the vertical alignment of content in the columns. Currently,
pandoc
's latex writer gives theT
option, hardwiring a top alignment. Beamer's default, though, isc
unless the globalt
option is used.One solution to give more flexibility would be to allow the following syntax in native divs:
There are other options available to that environment though, in the beamer user guide:
So maybe a syntax of:
I'm not sure how to handle:
options=totalwidth=x
)The text was updated successfully, but these errors were encountered: