-
DescriptionI have following format: ```SQL
SELECT * FROM weather;
```
```TEXT
┌───────────────┬─────────┬─────────┬───────┬────────────┐
│ city │ temp_lo │ temp_hi │ prcp │ date │
│ varchar │ int32 │ int32 │ float │ date │
├───────────────┼─────────┼─────────┼───────┼────────────┤
│ San Francisco │ 46 │ 50 │ 0.25 │ 1994-11-27 │
│ San Francisco │ 41 │ 55 │ 0.0 │ 1994-11-29 │
└───────────────┴─────────┴─────────┴───────┴────────────┘
``` The output is The borders were omitted from the output. ```TEXT
┌──123────456────┬789
``` |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
If the monospace font doesn't have those glyphs, then there's unfortunately nothing quarto can do about that. I suspect that's the case (and you can verify by adding |
Beta Was this translation helpful? Give feedback.
-
Here is the portion from the \begin{Shaded}
\begin{Highlighting}[]
\KeywordTok{SELECT}\NormalTok{ city, temp\_lo, temp\_hi, prcp, }\DataTypeTok{date}
\KeywordTok{FROM}\NormalTok{ weather;}
\end{Highlighting}
\end{Shaded}
The output should be:
\begin{Shaded}
\begin{Highlighting}[]
\NormalTok{city temp\_lo temp\_hi prcp date}
\NormalTok{{-}{-}{-}{-}{-}{-}{-}{-}{-}{-}{-}{-}{-} {-}{-}{-}{-}{-}{-}{-} {-}{-}{-}{-}{-}{-}{-} {-}{-}{-}{-}{-} {-}{-}{-}{-}{-}{-}{-}{-}{-}{-}}
\NormalTok{San Francisco 46 50 0.25 1994{-}11{-}27}
\NormalTok{San Francisco 43 57 0.0 1994{-}11{-}29}
\NormalTok{Hayward 37 54 1994{-}11{-}29}
\NormalTok{San Francisco 46 50 0.25 1994{-}11{-}27}
\NormalTok{San Francisco 43 57 0.0 1994{-}11{-}29}
\NormalTok{Hayward 37 54 1994{-}11{-}29}
\end{Highlighting}
\end{Shaded} I am not familiar with Latex, does it require special font? Thanks. |
Beta Was this translation helpful? Give feedback.
-
Thanks |
Beta Was this translation helpful? Give feedback.
The bars are not ASCII, they are special glyphs, you need a font that has them.
For example, in my case, I can use Courier New