Gabriel Wu

Results 61 issues of Gabriel Wu

`stroke: 0pt` still draws the grids ``` #table(columns: (auto, auto), stroke: 0pt, [H], [E]) ``` ![image](https://user-images.githubusercontent.com/13583761/232977347-cd82fc35-7c1a-4702-bc37-a02229a4238a.png) But `stroke: none` works: ``` #table(columns: (auto, auto), stroke: none, [H], [E]) ``` ![image](https://user-images.githubusercontent.com/13583761/232977417-30640ab6-b47f-4ab9-a697-22582893715c.png)

bug
visualize

![image](https://user-images.githubusercontent.com/13583761/231926682-d81ae9e1-63de-43a0-899e-be050e100663.png) This happens when setting `justify` to `true` while using `locate` in the show function for `link`s. Source ``` = Continue #show link: it => locate(loc => if query(it.dest, loc)...

bug
meta

The default language list of `syntect` is quite short, a possible solution is to use the much larger list maintained by https://github.com/sharkdp/bat/tree/master/assets/syntaxes and dump the syntax definitions to a binary...

feature request
text

### Description With `pagebreak(to: "odd")` we can skip pages to reach a certain parity. However, headers and footers still show up on the inserted blank page. It would be nice...

feature request
styling

```python import taichi as ti @ti.data_oriented class B(): def __init__(self): self.c = ti.field(dtype=float, shape=(5, 5)) @ti.data_oriented class A(): def __init__(self): self.b = B() @ti.kernel def print(self): print(self.b.c) ti.init() a =...

potential bug

```rust #[derive(Logos, Debug, PartialEq)] pub enum Token { #[regex("0[oO](_?[0-7])+")] IntegerOct, #[regex("[a-zA-Z_][a-zA-Z0-9_]*")] Identifier, #[error] #[regex(r"[ \t\n\f]+", logos::skip)] Error, } fn main() { let mut lex = Token::lexer("0o123_"); while let Some(token) =...

I just wrote a Typst backend for `Documenter.jl` and managed to build the latest Julia documentation. https://drive.google.com/file/d/1IlqEI5b4Qc0CjuJ5u0l0Ma_MymRpWcrD/view?usp=sharing Footnotes are not supported yet, while math equations are kept as is since...

Type: Feature
Type: Plugin

The original download url is invalid now.

I was training Uni-Mol using Uni-Core, on multiple GPUs (one node). However, I met the following error message: ``` diff = self.param - new_param diff = self.param - new_param diff...