如何在markdown(pandoc)中左对齐整个表格?
你如何将Markdown / Pandoc中的整个表格对齐? 我知道指定表的不同方式以及列的对齐方式,但我无法找到一种方法将表格从中心对齐到左对齐(甚至尝试嵌入<div style="float: left>..</div>
没有工作)。我必须切换到乳胶做到这一点?我会导出为PDF以后,如果有差别。
我现在在tex.stackexchange.com找到了这个问题的解决方案。 显然,pandoc为文档中的每个浮点值插入centering
center。 这可以通过将letcenteringrelax
插入到pandoc的自定义预采样(作为pandoc参数-H custompreample.tex
)来取消。 该链接还介绍了更详细的方法,例如为表格和图形定义不同的浮点数。
我无法在这里找到解决方案 - 在LaTeX中。 我创造了一个新的长效环境,以我想要的方式制作表格。 最后这很容易。 这是一个Rmd文件的例子。
---
title: "Custom table"
header-includes:
- usepackage{longtable,booktabs}
output: pdf_document
---
newenvironment{mylong}
{begin{longtable}[l]{p{.25in}p{3in}p{3in}}Line & Statements & Reasons
topruleaddlinespace }
{ addlinespacebottomruleend{longtable} }
begin{mylong}
1& $a+b=a+d$ & Given P10, if $b=d$, then 1 is true
2& $a+b=c$ & Given
3& $a+d=c$ & Given P9, if 1 and 2 are true, then 3 is true. QED
end{mylong}
链接地址: http://www.djcxy.com/p/76757.html
上一篇: How to left align a whole table in markdown (pandoc)?
下一篇: How to programmatically run unit tests with Gallio and MBUnit?