I need to reconstruct a table/view I've seen online in my latex document.
The table I'm trying to make can be seen here:
https://www.instagram.com/developer/end ... locations/
Could you help me make that? I'm very new to latex and this is way over my capablities. The table should extend to the text width of the document.
The part with code should be formatted as lstlisting, I would also need one additional column in Parameters section. 2nd row is not necessary.
I tried making the entire thing a table, with \multicolumn spaning enitre table where needed, but I can't put a lstlisting inside it, it adds another column to the table. Also I tried to create a horizontal line with \xfill, but doesn't seem to work inside tables.
Here'san example code for the 3rd row:
Code: Select all
\begin{lstlisting}
{
"authorities": "string",
"dateOfBirth": "2016-11-19T16:48:15.682Z",
"description": "string",
"email": "string",
"firstName": "string",
"gender": "string",
"id": 0,
"lastActive": "2016-11-19T16:48:15.682Z",
"lastName": "string",
"latitude": 0,
"loginstreak": 0,
"longitude": 0,
"noTargetSince": "2016-11-19T16:48:15.683Z",
"notifications": "string",
"password": "string",
"profilePicture": "string",
"registerDate": "2016-11-19T16:48:15.683Z",
"score": 0,
"status": "string",
"targetDistance": 0,
"username": "string"
} \end{lstlisting}