I was wondering if anyone knew how to beautify or format JSON inside a Latex document. I am using Lyx as a front-end for writing the latex file. Are there any addons that people use? I tried to search but am not able to get anything relevant.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

I do embed code into lyx mostly as program listings imported from external textfiles. There are numerous options that you could apply to the program listing, from line numbers to word wraps and many more.

link|improve this answer
Autoformatting isn't one of those, though. At least listings doesn't have the option as the approach to prettifying is rather braindead anyway (just literal/keyword highlighting instead of understanding the grammar). – Joey Nov 22 '09 at 21:32
I guess I'm missing something here. So, I've used listing to insert the JSON but what am I expecting here because I don't see any significant difference in the generated PDF. I mean, leave alone the keyword highlighting, I don't even see any formatting. Any inputs? – Legend Nov 22 '09 at 21:40
Never mind. I missed the settings option. I'm playing with it now. – Legend Nov 22 '09 at 21:42
And of course, unfortunately, there is no option for JSON. – Legend Nov 22 '09 at 21:44
What options do you use right now? – BeowulfOF Nov 23 '09 at 11:10
feedback

you could define your own listing-language: just found this link here http://lenaherrmann.net/2010/05/20/javascript-syntax-highlighting-in-the-latex-listings-package

link|improve this answer
feedback

I'm using minted package.

First you have to install and configure it (do not forget to add pygmentize.cmd file on Windows 7). Then you have to add \usepackage{minted} to the LaTeX Preambel and finally insert following code into TeX Code box (for JSON you can use js code type):

\begin{listing}
\begin{minted}[frame=single,
               framesep=3mm,
               linenos=true,
               xleftmargin=21pt,
               tabsize=4]{js}
{     
    "firstName": "John"
    "lastName" : "Smith",
    "age" : 25
}
\end{minted}
\caption{JSON example} 
\label{json-example}
\end{listing}

It is not perfect solution, but it works and produce really nice listing: minted json example

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.