Brian A. Danielak
Brian A. Danielak
@reitzig We just merged #49, which may solve your issue? It allows you to specify bibliographic info in a YAML-formatted metadata block at the top of your document. Please let...
@reitzig It may actually be even simpler! It *looks* like @focus built in support for using TEX root. So, all you should need to do is step 2; no YAML...
@reitzig - ah. Just trying to help. So, is there anything else you need to solve your problem? If not, we can probably close the issue :-)
@hendrikbl hmm. Would you be able to create a simple reproducible example? Also, a few questions: 1. What version of the package are you using? 2. Which version of atom...
@focus I think we can use the npm package `chokidar` to watch any bibfiles for changes. And then if there's a change, we asynchronousky rebuild the SQLite database.
https://www.npmjs.com/package/chokidar
I'm also curious how the Parcel/Electron integration is going
@michaelerobertsjr and @pvorb - One workaround I'm currently trying is passing an explicit `--output=FILE.pdf` argument to my `pdc()` call, like so ``` js // In this case, my input to...
@WilDoane you were right on the money: it was failing because of the tibbles. The hard part was figuring out which *part* was failing. Turns out it was the `t.test()`...
Yeah, the problem is in [these lines](https://github.com/briandk/granovaGG/blob/305fe25f8210e767329fbf33214b436bff5ec255/R/granovagg.1w.R#L1010-1011) of the .1w function: ``` r t.test(unstacked.data[, 1], unstacked.data[, 2], var.equal = TRUE ) ``` If `unstacked.data` is a list (which is what...