{"id":66348,"date":"2022-08-10T09:01:34","date_gmt":"2022-08-10T09:01:34","guid":{"rendered":"https:\/\/www.cryptocabaret.com\/?p=66348"},"modified":"2022-08-10T09:01:34","modified_gmt":"2022-08-10T09:01:34","slug":"create-beautiful-pdfs-in-latex","status":"publish","type":"post","link":"https:\/\/www.cryptocabaret.com\/?p=66348","title":{"rendered":"Create beautiful PDFs in LaTeX"},"content":{"rendered":"<p><span class=\"field field--name-title field--type-string field--label-hidden\">Create beautiful PDFs in LaTeX<\/span><br \/>\n<span class=\"field field--name-uid field--type-entity-reference field--label-hidden\"><a title=\"View user profile.\" href=\"https:\/\/opensource.com\/users\/jim-hall\" class=\"username\">Jim Hall<\/a><\/span><br \/>\n<span class=\"field field--name-created field--type-created field--label-hidden\">Wed, 08\/10\/2022 &#8211; 03:00<\/span><\/p>\n<div data-drupal-selector=\"rate-node-70141\" class=\"rate-widget-thumbs-up\" title=\"Register or Login to like.\">\n<div class=\"rate-thumbs-up-btn-up vote-pending\">1 reader likes this<\/div>\n<div class=\"rate-score\">1 reader likes this<\/div>\n<\/div>\n<div class=\"clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item\">\n<p>The LaTeX document preparation system has an interesting history. When programmer Don Knuth wrote his first book, The Art of Computer Programming, in 1968, it was produced using an old-style printing press method. When he published the second edition in 1976, the publisher had moved to modern phototypesetting.<\/p>\n<p>Knuth was unhappy with how the new edition looked. Addressing the problem from a programmer&#8217;s perspective, Knuth decided to create his own text processing system so his future books could be formatted to look the same way, for every book in the series. And so it was that Don Knuth wrote the first version of TeX in 1978.<\/p>\n<p>A few years later, Leslie Lamport created a set of macros that help authors write complex documents more easily. Lamport&#8217;s macro extensions, LaTeX, essentially extends TeX to easily produce all kinds of documents. For example, many academic organizations use LaTeX to publish journals and proceedings.<\/p>\n<h2>Writing documents in LaTeX<\/h2>\n<p>It&#8217;s easy to learn the basics of LaTeX by writing a short article. Let&#8217;s start by borrowing from the <a href=\"https:\/\/opensource.com\/about\" target=\"_blank\" rel=\"noopener\">About Opensource.com<\/a> page to create this sample input file:<\/p>\n<pre>\n<div class=\"geshifilter\"><div class=\"text geshifilter-text\">$ cat about.tex <br>\ndocumentclass{article}<br>\nbegin{document}<br><br>\nOpensource.com is a premier, daily publication focused on<br>\nopen source and Linux tutorials, stories, and resources.<br><br>\nWe're a diverse and inviting group, made up of staff<br>\neditors, Correspondents, contributors, and readers. We<br>\nvalue differences in skills, talents, backgrounds, and<br>\nexperiences. There are a few different ways to get involved<br>\nas a reader or a writer.<br><br>\nend{document}<\/div><\/div><\/pre>\n<p>Like other document formatting programs, LaTeX collects words and fills paragraphs. That means you can add new text in the middle of a paragraph and not worry about how the final document will look. As long as you don&#8217;t add a blank line in the middle of a paragraph, LaTeX creates fully justified paragraphs. When it finds a blank line, LaTeX starts a new paragraph.<\/p>\n<p>LaTeX needs a few control statements to define the document. Every LaTeX document should start with a declaration of the document&#8217;s <em>class<\/em>. LaTeX supports several kinds of documents, including letters, books, and articles. For this example, I used <code>documentclass{article}<\/code> to set the <em>article<\/em> class.<\/p>\n<p>Tell LaTeX where the text begins and ends with the <code>begin{document}<\/code> and <code>end{document}<\/code> statements. If you add text before the <code>begin{document}<\/code>, LaTeX generates an error. Any text after <code>end{document}<\/code> is ignored.<\/p>\n<p>Process this document using LaTeX with the <code>latex<\/code> command:<\/p>\n<pre>\n<div class=\"geshifilter\"><div class=\"text geshifilter-text\">$ latex about.tex<br>\nThis is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=latex)<br>\n\u00a0restricted write18 enabled.<br>\nentering extended mode<br>\n(.\/about.tex<br>\nLaTeX2e  patch level 4<br>\n(\/usr\/share\/texlive\/texmf-dist\/tex\/latex\/base\/article.cls<br>\nDocument Class: article 2020\/04\/10 v1.4m Standard LaTeX document class<br>\n(\/usr\/share\/texlive\/texmf-dist\/tex\/latex\/base\/size10.clo))<br>\n(\/usr\/share\/texlive\/texmf-dist\/tex\/latex\/l3backend\/l3backend-dvips.def)<br>\nNo file about.aux.<br>\n[1] (.\/about.aux) )<br>\nOutput written on about.dvi (1 page, 736 bytes).<br>\nTranscript written on about.log.<\/div><\/div><\/pre>\n<p>LaTeX produces a lot of text so you can see what it is doing. If your document contains errors, LaTeX prints a message, and possibly prompt for what it should do. In most cases, you can type <code>exit<\/code> at the prompt to force LaTeX to quit.<\/p>\n<p>If LaTeX was successful in generating a document, it produces a file with a <code>.dvi<\/code> extension. The <em>DVI<\/em> stands for <em>Device Independent<\/em> because you can use a variety of tools to create other kinds of output. For example, the <strong>dvipdf<\/strong> program converts the DVI file to a PDF file.<\/p>\n<pre>\n<span class=\"geshifilter\"><code class=\"text geshifilter-text\">$ dvipdf about.dvi<\/code><\/span><\/pre>\n<article class=\"align-center media media--type-image media--view-mode-default\">\n<div class=\"field field--name-field-media-image field--type-image field--label-hidden field__item\">  <img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.cryptocabaret.com\/wp-content\/uploads\/2022\/08\/latex-output.jpg\" width=\"1612\" height=\"351\" alt=\"LaTeX output\"><\/div>\n<div class=\"field field--name-field-caption field--type-text-long field--label-hidden caption field__item\"><span class=\"caption__byline\">Image by: <\/span><\/p>\n<p>(Jim Hall, CC BY-SA 4.0)<\/p>\n<\/div>\n<\/article>\n<h2>Adding lists<\/h2>\n<p>LaTeX supports two kinds of lists: an <em>enumerated<\/em> list where each item starts with a number, and an <em>itemized<\/em> or &#8220;bullet&#8221; list. Add a short enumerated list after the second paragraph to list the ways that folks can get involved with Opensource.com:<\/p>\n<pre>\n<div class=\"geshifilter\"><div class=\"text geshifilter-text\">begin{enumerate}<br>\nitem Be a writer<br>\nitem Be a reader<br>\nend{enumerate}<\/div><\/div><\/pre>\n<p>Similar to how you need to provide <code>begin<\/code> and <code>end<\/code> statements around a document definition, you also need to provide <code>begin<\/code> and <code>end<\/code> statements around a list. Within the list, start each new item with an <code>item<\/code> command. When you process this new file with LaTeX and convert it to PDF format, you see your list formatted as a numbered list:<\/p>\n<article class=\"align-center media media--type-image media--view-mode-default\">\n<div class=\"field field--name-field-media-image field--type-image field--label-hidden field__item\">  <img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.cryptocabaret.com\/wp-content\/uploads\/2022\/08\/latex-output-list.jpg\" width=\"1585\" height=\"534\" alt=\"LaTeX output\"><\/div>\n<div class=\"field field--name-field-caption field--type-text-long field--label-hidden caption field__item\"><span class=\"caption__byline\">Image by: <\/span><\/p>\n<p>(Jim Hall, CC BY-SA 4.0)<\/p>\n<\/div>\n<\/article>\n<div class=\"embedded-resource-list callout-float-right\">\n<div class=\"field field--name-title field--type-string field--label-hidden field__item\">More Linux resources<\/div>\n<div class=\"field field--name-links field--type-link field--label-hidden field__items\">\n<div class=\"field__item\"><a href=\"https:\/\/developers.redhat.com\/cheat-sheets\/linux-commands-cheat-sheet\/?intcmp=70160000000h1jYAAQ\">Linux commands cheat sheet<\/a><\/div>\n<div class=\"field__item\"><a href=\"https:\/\/developers.redhat.com\/cheat-sheets\/advanced-linux-commands\/?intcmp=70160000000h1jYAAQ\">Advanced Linux commands cheat sheet<\/a><\/div>\n<div class=\"field__item\"><a href=\"https:\/\/www.redhat.com\/en\/services\/training\/rh024-red-hat-linux-technical-overview?intcmp=70160000000h1jYAAQ\">Free online course: RHEL technical overview<\/a><\/div>\n<div class=\"field__item\"><a href=\"https:\/\/opensource.com\/downloads\/cheat-sheet-networking?intcmp=70160000000h1jYAAQ\">Linux networking cheat sheet<\/a><\/div>\n<div class=\"field__item\"><a href=\"https:\/\/opensource.com\/downloads\/cheat-sheet-selinux?intcmp=70160000000h1jYAAQ\">SELinux cheat sheet<\/a><\/div>\n<div class=\"field__item\"><a href=\"https:\/\/opensource.com\/downloads\/linux-common-commands-cheat-sheet?intcmp=70160000000h1jYAAQ\">Linux common commands cheat sheet<\/a><\/div>\n<div class=\"field__item\"><a href=\"https:\/\/opensource.com\/resources\/what-are-linux-containers?intcmp=70160000000h1jYAAQ\">What are Linux containers?<\/a><\/div>\n<div class=\"field__item\"><a href=\"https:\/\/opensource.com\/tags\/linux?intcmp=70160000000h1jYAAQ\">Our latest Linux articles<\/a><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<p>You can also add lists within a list. This is a neat feature if you need to provide a list with several options for each item. For example, you can add a few different resources for folks who want to become writers at Opensource.com. The embedded list uses its own <code>begin<\/code> and <code>end<\/code> statements. I&#8217;ll add some extra space around this example so it&#8217;s easier to see, but LaTeX doesn&#8217;t really care about the blank lines and extra spaces:<\/p>\n<pre>\n<div class=\"geshifilter\"><div class=\"text geshifilter-text\">begin{enumerate}<br>\nitem Be a writer<br><br>\n\u00a0 begin{itemize}<br>\n\u00a0 item Resources for writers<br>\n\u00a0 item Contributor Club<br>\n\u00a0 item Correspondent Program<br>\n\u00a0 end{itemize}<br><br>\nitem Be a reader<br>\nend{enumerate}<\/div><\/div><\/pre>\n<p>The new list is inserted as an embedded list inside item number 1 because you added the list between the two original <code>item<\/code> statements. You could have instead inserted this list after item number 2 by adding the new list before the <code>end{enumerate}<\/code> statement.<\/p>\n<article class=\"align-center media media--type-image media--view-mode-default\">\n<div class=\"field field--name-field-media-image field--type-image field--label-hidden field__item\">  <img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.cryptocabaret.com\/wp-content\/uploads\/2022\/08\/latex-output-list-2.jpg\" width=\"1580\" height=\"770\" alt=\"LaTeX output\"><\/div>\n<div class=\"field field--name-field-caption field--type-text-long field--label-hidden caption field__item\"><span class=\"caption__byline\">Image by: <\/span><\/p>\n<p>(Jim Hall, CC BY-SA 4.0)<\/p>\n<\/div>\n<\/article>\n<h2>Sections and subsections<\/h2>\n<p>You can make a long document easier to read by breaking it up into sections. To add a section title to a LaTeX document, use the <code>section{...}<\/code> statement, and write the section&#8217;s title inside the braces. For example, you can add a new section titled &#8220;About Opensource.com&#8221; to the top of the document with this:<\/p>\n<pre>\n<div class=\"geshifilter\"><div class=\"text geshifilter-text\">$ head about.tex <br>\ndocumentclass{article}<br>\nbegin{document}<br><br>\nsection{About Opensource.com}<br><br>\nOpensource.com is a premier, daily publication focused on<br>\nopen source and Linux tutorials, stories, and resources.<br><br>\nWe're a diverse and inviting group, made up of staff<br>\neditors, Correspondents, contributors, and readers. We<\/div><\/div><\/pre>\n<p>The <em>article<\/em> document class adds a number before each major section, and increases the font size so it stands out in the document.<\/p>\n<article class=\"align-center media media--type-image media--view-mode-default\">\n<div class=\"field field--name-field-media-image field--type-image field--label-hidden field__item\">  <img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.cryptocabaret.com\/wp-content\/uploads\/2022\/08\/latex-output-heading.jpg\" width=\"1344\" height=\"746\" alt=\"LaTeX output\"><\/div>\n<div class=\"field field--name-field-caption field--type-text-long field--label-hidden caption field__item\"><span class=\"caption__byline\">Image by: <\/span><\/p>\n<p>(Jim Hall, CC BY-SA 4.0)<\/p>\n<\/div>\n<\/article>\n<p>For documents that require more organization, you can add subsections using the <code>subsection{...}<\/code> command. Like the <code>section{...}<\/code> command, enter the subsection&#8217;s title between the curly braces.<\/p>\n<pre>\n<div class=\"geshifilter\"><div class=\"text geshifilter-text\">$ head about.tex<br>\ndocumentclass{article}<br>\nbegin{document}<br><br>\nsection{About Opensource.com}<br><br>\nOpensource.com is a premier, daily publication focused on<br>\nopen source and Linux tutorials, stories, and resources.<br><br>\nsubsection{Welcome to the Opensource.com community}<\/div><\/div><\/pre>\n<article class=\"align-center media media--type-image media--view-mode-default\">\n<div class=\"field field--name-field-media-image field--type-image field--label-hidden field__item\">  <img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.cryptocabaret.com\/wp-content\/uploads\/2022\/08\/latex-output-subheading.jpg\" width=\"1343\" height=\"873\" alt=\"LaTeX output\"><\/div>\n<div class=\"field field--name-field-caption field--type-text-long field--label-hidden caption field__item\"><span class=\"caption__byline\">Image by: <\/span><\/p>\n<p>(Jim Hall, CC BY-SA 4.0)<\/p>\n<\/div>\n<\/article>\n<h2>Title and author<\/h2>\n<p>Scientific articles meant for publication require a title, author, and publication date. LaTeX provides a method to add this information by inserting commands that define each, then generates the article&#8217;s title with a separate <code>maketitle<\/code> command.<\/p>\n<p>Add &#8220;About Us&#8221; as the article&#8217;s title, &#8220;Opensource.com Editors&#8221; for the author, and &#8220;July 10, 2022&#8221; as the publication date. You must enter this block after the <code>begin{document}<\/code> and before the rest of the content, such as the first section:<\/p>\n<pre>\n<div class=\"geshifilter\"><div class=\"text geshifilter-text\">title{About Us}<br>\nauthor{Opensource.com Editors}<br>\ndate{July 10, 2022}<br>\nmaketitle<\/div><\/div><\/pre>\n<p>When you process the document, LaTeX adds the title, author, and date to the top of the artcle:<\/p>\n<article class=\"align-center media media--type-image media--view-mode-default\">\n<div class=\"field field--name-field-media-image field--type-image field--label-hidden field__item\">  <img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.cryptocabaret.com\/wp-content\/uploads\/2022\/08\/latex-output-about.jpg\" width=\"895\" height=\"833\" alt=\"LaTeX output\"><\/div>\n<div class=\"field field--name-field-caption field--type-text-long field--label-hidden caption field__item\"><span class=\"caption__byline\">Image by: <\/span><\/p>\n<p>(Jim Hall, CC BY-SA 4.0)<\/p>\n<\/div>\n<\/article>\n<h2>Adding emphasis<\/h2>\n<p>Scientific and other technical documents often include terms and phrases that need to carry special emphasis. LaTeX provides several font effects you can use in technical documents, including emphasis text (usually displayed in italics), bold text, and small caps.<\/p>\n<p>Update your LaTeX document to put the phrase &#8220;staff editors, Correspondents, contributors, and readers&#8221; in italics text, and the specific words &#8220;reader&#8221; and &#8220;writer&#8221; later in the paragraph in emphasis text. You can also put the phrase &#8220;skills, talents, backgrounds, and experiences&#8221; in bold. And while it&#8217;s not the correct way to style it, you can use small caps to type &#8220;Linux.&#8221;<\/p>\n<pre>\n<div class=\"geshifilter\"><div class=\"text geshifilter-text\">$ head -20 about.tex <br>\ndocumentclass{article}<br>\nbegin{document}<br><br>\ntitle{About Us}<br>\nauthor{Opensource.com Editors}<br>\ndate{July 10, 2022}<br>\nmaketitle<br><br>\nsection{About Opensource.com}<br><br>\nOpensource.com is a premier, daily publication focused on<br>\nopen source and textsc{Linux} tutorials, stories, and resources.<br><br>\nsubsection{Welcome to the Opensource.com community}<br><br>\nWe're a diverse and inviting group, made up of textit{staff<br>\neditors, Correspondents, contributors, and readers}. We<br>\nvalue differences in textbf{skills, talents, backgrounds, and<br>\nexperiences}. There are a few different ways to get involved<br>\nas a emph{reader} or a emph{writer}.<\/div><\/div><\/pre>\n<p>This sample shows different ways to apply different styles to text. When you need to add emphasis, use the <code>emph{...}<\/code> command, with the word or phrase between the curly braces. To display text in italics, boldface, or small caps, use a variation of the <code>text<\/code> command: <code>textit{...}<\/code> for italics, <code>textbf{...}<\/code> for boldface, and <code>textsc{...}<\/code> for small caps. LaTeX supports lots of other ways to style text, but these styles get you pretty far in writing scientific documents.<\/p>\n<article class=\"align-center media media--type-image media--view-mode-default\">\n<div class=\"field field--name-field-media-image field--type-image field--label-hidden field__item\">  <img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.cryptocabaret.com\/wp-content\/uploads\/2022\/08\/latex-output-emphasis.jpg\" width=\"908\" height=\"835\" alt=\"LaTeX output\"><\/div>\n<div class=\"field field--name-field-caption field--type-text-long field--label-hidden caption field__item\"><span class=\"caption__byline\">Image by: <\/span><\/p>\n<p>(Jim Hall, CC BY-SA 4.0)<\/p>\n<\/div>\n<\/article>\n<h2>Using LaTeX<\/h2>\n<p>I&#8217;ve only touched on a few ways to write scientific and technical documents in LaTeX. Depending on your needs, you can also use LaTeX to insert footnotes and typeset mathematical equations and expressions. To explore other ways to use LaTeX for scientific writing, also read <a href=\"https:\/\/opensource.com\/article\/17\/6\/introduction-latex\" target=\"_blank\" rel=\"noopener\">A introduction to creating documents in LaTeX<\/a> here on Opensource.com.<\/p>\n<\/div>\n<div class=\"clearfix text-formatted field field--name-field-article-subhead field--type-text-long field--label-hidden field__item\">\n<p>Use the LaTeX markup language to compose documents.<\/p>\n<\/div>\n<div class=\"field field--name-field-lead-image field--type-entity-reference field--label-hidden field__item\">\n<article class=\"media media--type-image media--view-mode-caption\">\n<div class=\"field field--name-field-media-image field--type-image field--label-hidden field__item\">  <img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.cryptocabaret.com\/wp-content\/uploads\/2022\/08\/coffee_tea_laptop_computer_work_desk.png\" width=\"520\" height=\"292\" alt=\"Person drinking a hat drink at the computer\" title=\"Person drinking a hat drink at the computer\"><\/div>\n<div class=\"field field--name-field-caption field--type-text-long field--label-hidden caption field__item\"><span class=\"caption__byline\">Image by: <\/span><\/p>\n<p><a href=\"https:\/\/unsplash.com\/@jonasleupe?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText\" target=\"_blank\" rel=\"ugc noopener\">Jonas Leupe<\/a>\u00a0on\u00a0<a href=\"https:\/\/unsplash.com\/s\/photos\/tea-cup-computer?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText\" target=\"_blank\" rel=\"ugc noopener\">Unsplash<\/a><\/p>\n<\/div>\n<\/article>\n<\/div>\n<div class=\"field field--name-field-tags field--type-entity-reference field--label-hidden field__items\">\n<div class=\"field__item\"><a href=\"https:\/\/opensource.com\/tags\/linux\" hreflang=\"en\">Linux<\/a><\/div>\n<div class=\"field__item\"><a href=\"https:\/\/opensource.com\/tags\/documentation\" hreflang=\"en\">Documentation<\/a><\/div>\n<\/p><\/div>\n<div class=\"hidden field field--name-field-listicle-title field--type-string field--label-hidden field__item\">What to read next<\/div>\n<div class=\"field field--name-field-listicles field--type-entity-reference field--label-hidden field__items\">\n<div class=\"field__item\"><a href=\"https:\/\/opensource.com\/article\/22\/7\/fmt-trivial-text-formatter\" hreflang=\"en\">How I use the Linux fmt command to format text<\/a><\/div>\n<div class=\"field__item\"><a href=\"https:\/\/opensource.com\/article\/22\/8\/automate-file-edits-sed-linux\" hreflang=\"en\">How I use the Linux sed command to automate file edits<\/a><\/div>\n<div class=\"field__item\"><a href=\"https:\/\/opensource.com\/article\/22\/8\/old-school-technical-writing-groff\" hreflang=\"en\">Old-school technical writing with groff<\/a><\/div>\n<\/p><\/div>\n<div class=\"field field--name-field-default-license field--type-list-string field--label-hidden field__item\"><a rel=\"license\" href=\"http:\/\/creativecommons.org\/licenses\/by-sa\/4.0\/\"><br \/>\n        <img decoding=\"async\" alt=\"Creative Commons License\" src=\"https:\/\/www.cryptocabaret.com\/wp-content\/uploads\/2022\/08\/cc-by-sa--13.png\" title=\"This work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.\"><\/a>This work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.<\/div>\n<section class=\"field field--name-field-comments field--type-comment field--label-hidden comment-wrapper\">\n<div class=\"comments__count\">\n<div class=\"login\"><a href=\"https:\/\/opensource.com\/user\/register?absolute=1\">Register<\/a> or <a href=\"https:\/\/opensource.com\/user\/login?current=\/rss.xml&amp;absolute=1\">Login<\/a> to post a comment.<\/div>\n<\/p><\/div>\n<\/section>\n<p class=\"wpematico_credit\"><small>Powered by <a href=\"http:\/\/www.wpematico.com\" target=\"_blank\" rel=\"noopener\">WPeMatico<\/a><\/small><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Create beautiful PDFs in LaTeX Jim Hall Wed, 08\/10\/2022 &#8211; 03:00 1 reader likes this 1 reader likes this The LaTeX document preparation system has an interesting history. When programmer Don Knuth wrote his first book, The Art of Computer Programming, in 1968, it was produced using an old-style printing press method. When he published [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":66349,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[307],"tags":[],"class_list":["post-66348","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-open-source"],"_links":{"self":[{"href":"https:\/\/www.cryptocabaret.com\/index.php?rest_route=\/wp\/v2\/posts\/66348","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.cryptocabaret.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.cryptocabaret.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.cryptocabaret.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cryptocabaret.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=66348"}],"version-history":[{"count":0,"href":"https:\/\/www.cryptocabaret.com\/index.php?rest_route=\/wp\/v2\/posts\/66348\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.cryptocabaret.com\/index.php?rest_route=\/wp\/v2\/media\/66349"}],"wp:attachment":[{"href":"https:\/\/www.cryptocabaret.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=66348"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.cryptocabaret.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=66348"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.cryptocabaret.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=66348"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}