{"id":3459,"date":"2023-04-12T15:33:17","date_gmt":"2023-04-12T15:33:17","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/"},"modified":"2026-01-21T16:33:00","modified_gmt":"2026-01-21T16:33:00","slug":"using-latex-formatting-in-planning-analytics","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/","title":{"rendered":"How can you use LaTeX formatting with IBM Planning Analytics?"},"content":{"rendered":"<p>A file with a latex extension (.tex) is\u00a0a text-based markup language file created with the typesetting system known as <a href=\"https:\/\/www.latex-project.org\/about\/\">LaTeX<\/a> which can be used to define type settings for publications, letters, books, and other similar cataloging in various fields. Specifically, for academic publishing, LaTeX (pronounced &#8220;LAY-tech&#8221;) is a staple.<\/p>\n<p>But what is LaTeX? \u201c\u2026LaTeX is a high-quality typesetting system; it includes features designed for the production of technical and scientific documentation. LaTeX is the de facto standard for the communication and publication of scientific documents\u2026\u201d \u2013 <a href=\"https:\/\/research.library.gsu.edu\/latex#:~:text=LaTeX%20is%20a%20high%2Dquality,is%20an%20online%20LaTeX%20editor.\">Georgia State University Research Guide<\/a>.<\/p>\n<p>What this means is that you can use LaTeX to create documents with text and formatting that would be difficult in a standard word processor. LaTeX is founded on the belief that it is better to leave document<em> design<\/em> to document<em> designers<\/em>, and to let <em>authors<\/em> focus on <em>authoring<\/em> documents.<\/p>\n<p><strong>Planning Analytics<\/strong><\/p>\n<p>But what about publishing documents using IBM Planning Analytics data? I thought it might be fun to set up a parameter driven TurboIntegrator process to format cube data into LaTeX format and as it turns out, it was a pretty simple endeavor.<\/p>\n<p>For this exercise I started with corporate Capital Assets data stored in a cube named \u201cCapital\u201d:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2137 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX1-min.jpg\" alt=\"\" width=\"900\" height=\"341\" \/><\/p>\n<p>The first step was to create a new TurboIntegrator process an add parameters to allow the selection of an organization, a year, version, and asset type:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2128 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX2-min.jpg\" alt=\"\" width=\"554\" height=\"145\" \/><\/p>\n<p>Next, I added some simple scripting (in the <strong>Prolog<\/strong> section of the process) to perform some housekeeping. For example, I don\u2019t want any \u201cquote characters\u201d showing up in my output given that they may interfere with LaTeX syntax, so I set the <a href=\"ibm.com\/docs\/en\/planning-analytics\/2.0.0?topic=variables-datasourceasciiquotecharacter\">DatasourceASCIIQuoteCharacter<\/a> to an \u201cempty string\u201d so NO quote character would be used:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2129 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX3-min.jpg\" alt=\"\" width=\"883\" height=\"431\" \/><\/p>\n<p>The <a href=\"https:\/\/www.ibm.com\/docs\/en\/cognos-tm1\/10.2.2?topic=functions-asciioutput\">ASCIIOUTPUT<\/a> function is easy enough to use to format and write the selected output in the format I want o a couple of \u201cstatic\u201d lines are written first to set the <strong>document class<\/strong> (article) and then start a table:<\/p>\n<p>There are a number of LaTeX document classes, but articles are typically used for scientific journals, presentations, short reports, and program documentation, so that\u2019s what I chose to use. The next 3 lines build the document caption from the process parameters and then set table column alignments:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2130 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX4-min.jpg\" alt=\"\" width=\"887\" height=\"111\" \/><\/p>\n<p>Yep, I cheated! I know that there are going to be 7 columns (or measures) so I hard-coded the number of alignments (it would be a trivial task to make that more dynamic) and then I wrote the following loop to write the 7 individual column headings (using element names in the \u201cCapital\u201d dimension):<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2131 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX5-min.jpg\" alt=\"\" width=\"576\" height=\"291\" \/><\/p>\n<p>Since the headings in my output document are set now, I added another loop with some CELLGET function calls to get values from the Capital cube and populate my document table:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2132 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX6-min.jpg\" alt=\"\" width=\"900\" height=\"586\" \/><\/p>\n<p>Once the data values are written, again I add some simple static statements to close the table and end the document:<\/p>\n<p><strong>TexMaker<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2133 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX7-min.jpg\" alt=\"\" width=\"500\" height=\"208\" \/><\/p>\n<p>When I run the process, it creates a LaTeX formatted text file. To check it, you can open it up using an application like MS Windows notepad, but <a href=\"https:\/\/www.xm1math.net\/texmaker\/download.html\"><em>TexMaker<\/em><\/a> is a free, cross-platform open-source LaTeX editor with an integrated PDF viewer so it\u2019s a better choice. TexMaker supports Linux, macOS and Windows systems and integrates many tools needed to create and edit documents with LaTeX formatting. Below is the generated output file opened in TexMaker:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2134 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX8-min.jpg\" alt=\"\" width=\"900\" height=\"436\" \/><\/p>\n<p><strong>Converting to Word<\/strong><\/p>\n<p>A LaTeX formatted document can be converted easily to many different formats and still maintain its specific internal formatting. In my world, a MS Windows world, I most often deliver documents in MS Word format so it would be helpful to automatically convert the output file to a Word document as a final step in the processing. <a href=\"https:\/\/www.pandoc.org\/installing.html\">Pandoc<\/a> is a free and open-source document converter, widely used as a writing tool and as a basis for publishing workflows and we can leverage it here.<\/p>\n<p>In the <strong>Epilog<\/strong> section of the process, I added the <a href=\"https:\/\/www.ibm.com\/docs\/en\/planning-analytics\/2.0.0?topic=pctf-executecommand\">ExecuteCommand<\/a> function to run the Pandoc utility to create an MS Word document from our LaTex formatted text file:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2135 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX9-min.jpg\" alt=\"\" width=\"680\" height=\"189\" \/><\/p>\n<p>Now, after the process completes, we have both the raw LaTeX formatted document as well as a professionally looking MS Word document:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2136 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX10-min.jpg\" alt=\"\" width=\"900\" height=\"466\" \/><\/p>\n<p><strong>Conclusion<\/strong><\/p>\n<p>This is a simple example but in concept could be used as the basis for creating a more dynamic and flexible solution. The point is to become aware of the value of using LaTeX formatting to present professionally looking documents. LaTeX tables merely scratch the surface of what is possible with LaTeX. To learn more about the benefits of LaTeX go <a href=\"https:\/\/marktomforde.com\/academic\/miscellaneous\/images\/LaTeX-benefits.html\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A file with a latex extension (.tex) is\u00a0a text-based markup language file created with the typesetting system known as LaTeX which can be used to define type settings for publications, letters, books, and other similar cataloging in various fields. Specifically, for academic publishing, LaTeX (pronounced &#8220;LAY-tech&#8221;) is a staple. But what is LaTeX? \u201c\u2026LaTeX is&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[24],"tags":[38,36,51],"class_list":["post-3459","post","type-post","status-publish","format-standard","hentry","category-ibm","tag-how-tos","tag-planning-analytics","tag-planning-analytics-how-tos"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How can you use LaTeX formatting with IBM Planning Analytics? - QueBIT<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How can you use LaTeX formatting with IBM Planning Analytics? - QueBIT\" \/>\n<meta property=\"og:description\" content=\"A file with a latex extension (.tex) is\u00a0a text-based markup language file created with the typesetting system known as LaTeX which can be used to define type settings for publications, letters, books, and other similar cataloging in various fields. Specifically, for academic publishing, LaTeX (pronounced &#8220;LAY-tech&#8221;) is a staple. But what is LaTeX? \u201c\u2026LaTeX is&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-12T15:33:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-21T16:33:00+00:00\" \/>\n<meta name=\"author\" content=\"agoddard\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"agoddard\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/\"},\"author\":{\"name\":\"agoddard\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"headline\":\"How can you use LaTeX formatting with IBM Planning Analytics?\",\"datePublished\":\"2023-04-12T15:33:17+00:00\",\"dateModified\":\"2026-01-21T16:33:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/\"},\"wordCount\":761,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/TX1-min.jpg\",\"keywords\":[\"How To\u2019s\",\"Planning Analytics\",\"Planning Analytics How To's\"],\"articleSection\":[\"IBM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/\",\"name\":\"How can you use LaTeX formatting with IBM Planning Analytics? - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/TX1-min.jpg\",\"datePublished\":\"2023-04-12T15:33:17+00:00\",\"dateModified\":\"2026-01-21T16:33:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/#primaryimage\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/TX1-min.jpg\",\"contentUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/TX1-min.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-latex-formatting-in-planning-analytics\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How can you use LaTeX formatting with IBM Planning Analytics?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\",\"name\":\"QueBIT\",\"description\":\"QueBIT\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\",\"name\":\"agoddard\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"caption\":\"agoddard\"},\"sameAs\":[\"https:\\\/\\\/quebit.com\\\/askquebit\"],\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/agoddard\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How can you use LaTeX formatting with IBM Planning Analytics? - QueBIT","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/","og_locale":"en_US","og_type":"article","og_title":"How can you use LaTeX formatting with IBM Planning Analytics? - QueBIT","og_description":"A file with a latex extension (.tex) is\u00a0a text-based markup language file created with the typesetting system known as LaTeX which can be used to define type settings for publications, letters, books, and other similar cataloging in various fields. Specifically, for academic publishing, LaTeX (pronounced &#8220;LAY-tech&#8221;) is a staple. But what is LaTeX? \u201c\u2026LaTeX is&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/","og_site_name":"QueBIT","article_published_time":"2023-04-12T15:33:17+00:00","article_modified_time":"2026-01-21T16:33:00+00:00","author":"agoddard","twitter_card":"summary_large_image","twitter_misc":{"Written by":"agoddard","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/"},"author":{"name":"agoddard","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"headline":"How can you use LaTeX formatting with IBM Planning Analytics?","datePublished":"2023-04-12T15:33:17+00:00","dateModified":"2026-01-21T16:33:00+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/"},"wordCount":761,"commentCount":0,"image":{"@id":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX1-min.jpg","keywords":["How To\u2019s","Planning Analytics","Planning Analytics How To's"],"articleSection":["IBM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/","url":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/","name":"How can you use LaTeX formatting with IBM Planning Analytics? - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"primaryImageOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/#primaryimage"},"image":{"@id":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX1-min.jpg","datePublished":"2023-04-12T15:33:17+00:00","dateModified":"2026-01-21T16:33:00+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/#primaryimage","url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX1-min.jpg","contentUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/TX1-min.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/using-latex-formatting-in-planning-analytics\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"How can you use LaTeX formatting with IBM Planning Analytics?"}]},{"@type":"WebSite","@id":"https:\/\/quebit.com\/askquebit\/#website","url":"https:\/\/quebit.com\/askquebit\/","name":"QueBIT","description":"QueBIT","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quebit.com\/askquebit\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084","name":"agoddard","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","caption":"agoddard"},"sameAs":["https:\/\/quebit.com\/askquebit"],"url":"https:\/\/quebit.com\/askquebit\/author\/agoddard\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3459","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=3459"}],"version-history":[{"count":2,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3459\/revisions"}],"predecessor-version":[{"id":5118,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3459\/revisions\/5118"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=3459"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=3459"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=3459"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}