as the title states I'm trying to have my json arrays be posted as text in LaTeX. I'm using VSCode as editor.
I'd like to have this json array be posted as a list in LaTeX but can't figure out how to do it.
"tags": [
"laboris",
"exercitation",
"enim",
"laboris",
"minim",
"incididunt",
"excepteur"
],
Here's my LaTeX code:
\documentclass{report}
\begin{document}
\chapter{Chapter 1}
\section{Tags}
Here should the tags be posted
\section{friends}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Etiam lobortis facilisissem. Nullam nec mi et neque pharetra
sollicitudin. Praesent imperdiet mi necante...
\subsection{Friend 1}
Praesent imperdietmi nec ante. Donec ullamcorper, felis non sodales...
\subsection{Friend 2}
Praesent imperdietmi nec ante. Donec ullamcorper, felis non sodales...
\subsection{Friend 3}
Praesent imperdietmi nec ante. Donec ullamcorper, felis non sodales...
\end{document}

listingsormintedpackages? – samcarter_is_at_topanswers.xyz Feb 07 '23 at 10:43So for example I have a json array of the temperature of the past 7 days. I'd like display the temperature in a nice manner in a PDF file, not the raw json code in a PDF file.
So what I'm trying to get is to be able to access specific values in my array which is in a json file, and have them called in my LaTeX file.
– Robert Feb 07 '23 at 10:58filecontentsenvironment). You can delete that part from the LaTeX file and it would still work the same (i.e., by reading the external.jsonfile). – Marijn Feb 07 '23 at 11:55