How to produce .tex file directly from .qmd file in command line? #5062
-
In order to quickly convert article.qmd to article.tex without generating article.pdf, I tried the following in command line:
. But the output article.tex seems different from the article.tex produced by rendering. The citation part in the two .tex files differ. Can anyone help me? Any comment is appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You should be able to use
When you use Hth! |
Beta Was this translation helpful? Give feedback.
-
You can set the format directly in your Quarto document header.
|
Beta Was this translation helpful? Give feedback.
You should be able to use
quarto render
which will use all of quartos features. LikeWhen you use
quarto pandoc
you are running pandoc directly and no quarto features are available.Hth!