-
Notifications
You must be signed in to change notification settings - Fork 3
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 output, missing includes, malformed (wide) tables, numbered tables #68
Comments
Thanks for the input. The conversion to longtable has been more effort than I thought it would be and there are a lot of warts I'd like to shave off. I'd like it to be a switch for longtable or not, and maybe I'll get there. I had some struggles with the different LaTeX engines and had to get some reports out, so I focused on one for the time being. This helps a lot, and I'd love to have it working for all. I think I can fix these things easily. (I also accept pull requests....) |
Which LaTeX engine do you propose to use? |
I'm using XeLaTeX, but my goal is that one should be able to use any of them. |
When doing Rmd the \usepackage statements all come from the RStudio template. I think the xcolor issue you see is in their template. There is no way that I know of to add packages to rendering LaTeX since tangram is downstream of when that is generated by knitr. They make changes to their templates from time to time and I'm left scrambling to catch up. See https://github.com/spgarbet/tangram-vignettes/blob/master/example.Rmd for including extra from Rmd, and a currently working example. One can also in an Rmd document specify a different template to use rather than the default. If you're using the The |
It's frustrating the way pandoc keeps changing the target for LaTeX. I opened a few tickets to get this changed and fixed and most have not been addressed. |
Nice! In the end I just used the docx output, so it worked out for me and it is what most journals expect anyway. Btw I published my paper and mentioned your package in the methods :). Thanks again, tangram really allowed me to create multiple versions for summary statistics in quick succession. |
Great!! If you have use cases or suggestions I'm open to ideas. |
Hey its me again :).
First of all these are not breaking bugs for me, but I wanted to document them for you since they have not been reported yet, I will probably render my tables and figures manually. Although if you have a convenient way to render a tangram table to a .png directly I would love to know!
I have been trying to get Latex rendering to work with tangram and encountered three problems:
as per (1):
I am using tinytex with latex_engine: xelatex. The .tex file is missing includes for "longtable","relsize" and the "xcolor" include is malformed(required for rowcolors), it should say:
\usepackage[table]{xcolor}
rather than \usepackage{xcolor}
I have no idea how these includes are handled in the latex rendering engine and could not find anything in your code, otherwise I would love to provide possible fixes.
as per (2):
Tables are properly aligned with a left page-margin with the text/headings, maybe breaking that margin or reducing it could alleviate the issue? Tables with up to 5 columns seem fine. This is not a breaking bug for me personally since the finished tables should have only 5-6 columns but
as per (3):
I guess the relevant code is in: https://github.com/spgarbet/tangram/blob/master/R/render-latex.R#L307
This is not a breaking bug for me and I can understand that this is probably wanted behaviour, however since it doesn't happen in html_document I was a bit surprised at first.
Thanks for your effort of creating this package, it made my life a lot easier already :)
The text was updated successfully, but these errors were encountered: