Congratulations!

[Valid Atom 1.0] This is a valid Atom 1.0 feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: http://tex.stackexchange.com/feeds

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <feed xmlns="http://www.w3.org/2005/Atom" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:re="http://purl.org/atompub/rank/1.0">
  3.    <title type="text">Recent Questions - TeX - LaTeX Stack Exchange</title>
  4.    <link rel="self" href="https://tex.stackexchange.com/feeds" type="application/atom+xml" />
  5.    <link rel="alternate" href="https://tex.stackexchange.com/questions" type="text/html" />
  6.    <subtitle>most recent 30 from tex.stackexchange.com</subtitle>
  7.    <updated>2024-04-26T11:49:22Z</updated>
  8.    <id>https://tex.stackexchange.com/feeds</id>
  9.    <creativeCommons:license>https://creativecommons.org/licenses/by-sa/4.0/rdf</creativeCommons:license>
  10.    <entry>
  11.        <id>https://tex.stackexchange.com/q/716537</id>
  12.        <re:rank scheme="https://tex.stackexchange.com">1</re:rank>
  13.        <title type="text">Atypical use of forest.sty</title>
  14.            <category scheme="https://tex.stackexchange.com/tags" term="forest" />
  15.        <author>
  16.            <name>sgmoye</name>
  17.            <uri>https://tex.stackexchange.com/users/11131</uri>
  18.        </author>
  19.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716537/atypical-use-of-forest-sty" />
  20.        <published>2024-04-26T11:02:44Z</published>
  21.        <updated>2024-04-26T11:14:12Z</updated>
  22.        <summary type="html">
  23.            &lt;p&gt;Most examples of output from &lt;code&gt;forest&lt;/code&gt; (not unnaturally) follow a pyramidal shape commonly encountered in linguistic trees. As an experiment in culinary recipe formatting, I&#x27;ve tried to invert the pyramid:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/ibq6Ggj8.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/ibq6Ggj8.png&quot; alt=&quot;pyramid recipe 1&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{article}&#xA;&#xA;\usepackage{xparse,tikz}% xparse for u{&amp;lt;...&amp;gt;}&#xA;\usepackage[edges]{forest}&#xA;&#xA;\newlength{\recitemwd}&#xA;\setlength{\recitemwd}{1.3in}&#xA;\newcounter{stepnum}&#xA;&#xA;\NewDocumentCommand{\ingreds}{ &amp;gt;{\SplitList{;}}m }{\ProcessList{#1}{\fooaux}}&#xA;\NewDocumentCommand{\fooaux}{ m } {\expandafter\fooauxa#1|}&#xA;%% #1*=\hrulefill?; #2=?; #3=ingredient&#xA;\NewDocumentCommand{\fooauxa}{s o u{|}}{% &#xA;    \hangindent1em\strut#3\strut\par&#xA;    \IfBooleanT{#1}{%&#xA;        \nointerlineskip&#xA;        \vskip1pt&#xA;        \textcolor{red}{\hrulefill\enskip}%&#xA;        \par&#xA;        \nointerlineskip&#xA;        \vskip1pt&#xA;    }%&#xA;}&#xA;&#xA;\def\ingfill{fill=yellow!80!orange!15}&#xA;&#xA;\NewDocumentCommand{\mking}{m}{%&#xA;    \parbox{\recitemwd}{\pretolerance10000\bfseries\ingreds{#1}}&#xA;}&#xA;&#xA;\NewDocumentCommand{\mkmth}{&#x2B;m}{%&#xA;    \begin{minipage}{\recitemwd}&#xA;        \parskip1ex#1&#xA;    \end{minipage}&#xA;}&#xA;&#xA;\parindent0pt&#xA;&#xA;\begin{document}&#xA;&#xA;\thispagestyle{empty}&#xA;&#xA;\small&#xA;&#xA;\begin{forest}{for tree={grow&#x27;=90,edge={semithick,&amp;lt;-},&#xA;%       forked edges, &#xA;        node options={draw,text width=1.25in,rounded corners=1.5pt}}}&#xA;    [\mkmth{Bake in a hot waffle iron}&#xA;        [\mkmth{Fold beaten egg whites into flour/egg yolk mixture.}&#xA;            [\mkmth{Mix together flour, BP and salt.\endgraf Add milk, butter and yolks, mix until smooth}&#xA;                [\mking{2 cups flour;2 teaspoons BP;*&#xBC; teaspoon salt;2 cups milk;&#xA;                    4 tablespoons butter, melted;4 egg yolks},\ingfill]&#xA;            ]&#xA;            [\mkmth{Beat egg whites and salt until foamy.\endgraf&#xA;                Continuing to beat, add sugar gradually to stiff peaks.}&#xA;                [\mking{4 egg whites;*1 pinch salt;2 tablespoons sugar},\ingfill]&#xA;            ]&#xA;        ]&#xA;    ]&#xA;\end{forest}&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;This works, but, clearly, there are some aspects of the setup that I&#x27;m overlooking: When &lt;code&gt;forked edges&lt;/code&gt; is uncommented, this is the result;&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/VCDxreSt.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/VCDxreSt.png&quot; alt=&quot;pyramid recipe oops&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;I realize that this may not be the best use-case for &lt;code&gt;forest&lt;/code&gt; and I am certainly not an expert. Still, I like the bracket syntax and would like to continue with this if possible.&lt;/p&gt;&#xA;&lt;p&gt;What do I need to fix?&lt;/p&gt;&#xA;
  24.        </summary>
  25.    </entry>
  26.    <entry>
  27.        <id>https://tex.stackexchange.com/q/716532</id>
  28.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  29.        <title type="text">How to integrate the cited references from bib file into the source tex file?</title>
  30.            <category scheme="https://tex.stackexchange.com/tags" term="bibtex" />
  31.        <author>
  32.            <name>Akira</name>
  33.            <uri>https://tex.stackexchange.com/users/161639</uri>
  34.        </author>
  35.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716532/how-to-integrate-the-cited-references-from-bib-file-into-the-source-tex-file" />
  36.        <published>2024-04-26T08:04:01Z</published>
  37.        <updated>2024-04-26T08:09:04Z</updated>
  38.        <summary type="html">
  39.            &lt;p&gt;I have a &lt;code&gt;bib.bib&lt;/code&gt; file with content&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;@article{otto2001geometry,&#xA;  title={The geometry of dissipative evolution equations: the porous medium equation},&#xA;  author={Otto, Felix},&#xA;  year={2001},&#xA;  publisher={Taylor \&amp;amp; Francis}&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;and a tex file &lt;code&gt;preprint.tex&lt;/code&gt; file content&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass[11pt]{article}&#xA;&#xA;\begin{document}&#xA;&#xA;The paper \cite{otto2001geometry} is seminal.&#xA;&#xA;\bibliographystyle{unsrt}&#xA;\bibliography{bib}&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;I have seen preprints (see, for instance, &lt;a href=&quot;https://arxiv.org/abs/2112.13026&quot; rel=&quot;nofollow noreferrer&quot;&gt;this&lt;/a&gt; and &lt;a href=&quot;https://arxiv.org/abs/2404.09572&quot; rel=&quot;nofollow noreferrer&quot;&gt;this&lt;/a&gt;) on arxiv.org where they contain only a single &lt;code&gt;.tex&lt;/code&gt; file. This means the bibliography is also contained in that single file.&lt;/p&gt;&#xA;&lt;p&gt;Could you explain how to combine &lt;code&gt;preprint.tex&lt;/code&gt; and the cited references from &lt;code&gt;bib.bib&lt;/code&gt; into a single &lt;code&gt;.tex&lt;/code&gt; file?&lt;/p&gt;&#xA;
  40.        </summary>
  41.    </entry>
  42.    <entry>
  43.        <id>https://tex.stackexchange.com/q/716530</id>
  44.        <re:rank scheme="https://tex.stackexchange.com">1</re:rank>
  45.        <title type="text">Placing nodes randomly on edges</title>
  46.            <category scheme="https://tex.stackexchange.com/tags" term="tikz-pgf" />
  47.        <author>
  48.            <name>Bubaya</name>
  49.            <uri>https://tex.stackexchange.com/users/27717</uri>
  50.        </author>
  51.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716530/placing-nodes-randomly-on-edges" />
  52.        <published>2024-04-26T07:48:03Z</published>
  53.        <updated>2024-04-26T07:48:03Z</updated>
  54.        <summary type="html">
  55.            &lt;p&gt;I am tring to set the &lt;code&gt;pos&lt;/code&gt; of an edge node randomly. The following works:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{article}&#xA;\usepackage{tikz}&#xA;\tikzset{&#xA;    X/.code={&#xA;        \pgfmathparse{rnd}&#xA;        \xdef\X{\pgfmathresult}&#xA;        \pgfkeysalso{pos=\X, label=\X}&#xA;    }&#xA;}&#xA;\begin{document}&#xA;    \tikz \draw (0,0) edge node[X] {} (10,0) edge node[X] {} (10,10) edge node[X] {} (0,10);&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;However, it does not work with an &lt;code&gt;\edef&lt;/code&gt; instead of the &lt;code&gt;\xdef&lt;/code&gt;. Why? Where is the group closed that &lt;code&gt;\X&lt;/code&gt; has been defined in? And is there a more element solution that doesn&#x27;t require me to do global definitions?&lt;/p&gt;&#xA;
  56.        </summary>
  57.    </entry>
  58.    <entry>
  59.        <id>https://tex.stackexchange.com/q/716529</id>
  60.        <re:rank scheme="https://tex.stackexchange.com">1</re:rank>
  61.        <title type="text">LaTeX infinite page height</title>
  62.            <category scheme="https://tex.stackexchange.com/tags" term="pdf" />
  63.            <category scheme="https://tex.stackexchange.com/tags" term="geometry" />
  64.            <category scheme="https://tex.stackexchange.com/tags" term="paper-size" />
  65.            <category scheme="https://tex.stackexchange.com/tags" term="height" />
  66.        <author>
  67.            <name>M. Pedersen</name>
  68.            <uri>https://tex.stackexchange.com/users/319142</uri>
  69.        </author>
  70.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716529/latex-infinite-page-height" />
  71.        <published>2024-04-26T07:47:51Z</published>
  72.        <updated>2024-04-26T07:47:51Z</updated>
  73.        <summary type="html">
  74.            &lt;p&gt;I want a single PDF page where the page continues for as much content I have on the page, i.e. the page height increase with the content.&lt;/p&gt;&#xA;&lt;p&gt;I have so far done so by manually increasing the geometry height like this:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\geometry{left=0.8cm,right=8.8cm,marginparwidth=6.8cm,marginparsep=1.2cm, top=0.8cm,bottom=0.8cm,footskip=2\baselineskip, paperheight=1100pt}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;However, I want this to be automatic so I don&#x27;t need to change the paperheight={1100pt} value if I edit the document.&lt;/p&gt;&#xA;&lt;p&gt;Furthermore, I want the resulting PDF to be printable, so it introduces new pages every &amp;quot;297 mm&amp;quot; on the printed version (or at some page break marker).&#xA;I have no idea if this is even possible or supported by the PDF format.&lt;/p&gt;&#xA;
  75.        </summary>
  76.    </entry>
  77.    <entry>
  78.        <id>https://tex.stackexchange.com/q/716527</id>
  79.        <re:rank scheme="https://tex.stackexchange.com">1</re:rank>
  80.        <title type="text">The action of \normalfont and \textit in the theorem heading</title>
  81.            <category scheme="https://tex.stackexchange.com/tags" term="theorems" />
  82.            <category scheme="https://tex.stackexchange.com/tags" term="amsthm" />
  83.        <author>
  84.            <name>Asigan</name>
  85.            <uri>https://tex.stackexchange.com/users/303488</uri>
  86.        </author>
  87.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716527/the-action-of-normalfont-and-textit-in-the-theorem-heading" />
  88.        <published>2024-04-26T07:20:58Z</published>
  89.        <updated>2024-04-26T09:14:08Z</updated>
  90.        <summary type="html">
  91.            &lt;p&gt;I want to write a document with a &lt;code&gt;remark&lt;/code&gt; environment, and the caption &amp;quot;Remark&amp;quot; should be Italics, with no bold.&#xA;I have tried three ways to declare it in the following example, namely &lt;code&gt;remark, remark1, remark2&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass[]{article}&#xA;\usepackage{amsthm}&#xA;&#xA;\newtheorem*{remark}{\textit{Remark}}&#xA;\newtheorem*{remark1}{{\normalfont\textit{Remark 1}}}&#xA;\newtheorem*{remark2}{\textit{\normalfont Remark 2}}&#xA;\begin{document}&#xA;\begin{remark}&#xA;    test.&#xA;\end{remark}    &#xA;    &#xA;\begin{remark1}&#xA;    test.&#xA;\end{remark1}&#xA;&#xA;\begin{remark2}&#xA;    test.&#xA;\end{remark2}&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;code&gt;remark1&lt;/code&gt; is what I want. &lt;code&gt;remark&lt;/code&gt; is bold and Italic (which I think I can understand).&#xA;&lt;code&gt;remark2&lt;/code&gt; is simply Roman font.&lt;/p&gt;&#xA;&lt;p&gt;I have two questions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Is &lt;code&gt;\newtheorem*{remark1}{{\normalfont\textit{Remark 1}}}&lt;/code&gt; a recommended way to write an environment with captions Italic but not bold?&lt;/li&gt;&#xA;&lt;li&gt;Is there some mechanism to explain why &lt;code&gt;\newtheorem*{remark1}{{\normalfont\textit{Remark 1}}}&lt;/code&gt; produces a caption in Italic but not bold,&#xA;and &lt;code&gt;\newtheorem*{remark2}{\textit{\normalfont Remark 2}}&lt;/code&gt; produces a Roman caption?&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;
  92.        </summary>
  93.    </entry>
  94.    <entry>
  95.        <id>https://tex.stackexchange.com/q/716525</id>
  96.        <re:rank scheme="https://tex.stackexchange.com">1</re:rank>
  97.        <title type="text">boxplot scaling</title>
  98.            <category scheme="https://tex.stackexchange.com/tags" term="boxplot" />
  99.        <author>
  100.            <name>O Y Jo</name>
  101.            <uri>https://tex.stackexchange.com/users/319139</uri>
  102.        </author>
  103.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716525/boxplot-scaling" />
  104.        <published>2024-04-26T07:00:38Z</published>
  105.        <updated>2024-04-26T10:49:22Z</updated>
  106.        <summary type="html">
  107.            &lt;pre&gt;&lt;code&gt;\documentclass{article}&#xA;\usepackage{graphicx} % Required for inserting images&#xA;\usepackage{subcaption}&#xA;\usepackage{pgfplots}&#xA;\pgfplotsset{compat=1.8}&#xA;\usepgfplotslibrary{statistics}&#xA;&#xA;\begin{document}&#xA;&#xA;\begin{tikzpicture}&#xA;  \begin{axis}&#xA;    [&#xA;    ytick={1,2,3},&#xA;    yticklabels={PT,RP-T,P-T},&#xA;    % xticklabels={1,2,3,4,5,6,7,a},&#xA;    ]&#xA;    \addplot&#x2B;[&#xA;    boxplot prepared={&#xA;      median=-0.052077,&#xA;      upper quartile=1.627744,&#xA;      lower quartile=-1.613357,&#xA;      upper whisker=9.878565,&#xA;      lower whisker=-8.484539&#xA;    },&#xA;    ] coordinates {};&#xA;    \addplot&#x2B;[&#xA;    boxplot prepared={&#xA;      median=0.893359,&#xA;      upper quartile=32.047894,&#xA;      lower quartile=-29.725945,&#xA;      upper whisker=219.879028,&#xA;      lower whisker=-242.360413&#xA;    },&#xA;    ] coordinates {};&#xA;    \addplot&#x2B;[&#xA;    boxplot prepared={&#xA;      median=357.228912,&#xA;      upper quartile=32866.879883,&#xA;      lower quartile=-31571.360840,&#xA;      upper whisker=149471.640625,&#xA;      lower whisker=-147415.8125&#xA;    },&#xA;    ] coordinates {};&#xA;  \end{axis}&#xA;\end{tikzpicture}&#xA;&#xA;\end{document}&#xA;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/oJGrOZ0A.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/oJGrOZ0A.png&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;I want to show you well for each data range, but the gap between each data range is so large that the two boxplots look just solid.&#xA;I tried to reduce the data range and replace it with exponential notation on the scale, but it was awkward because the range of graphs to be expressed is narrow.&#xA;Is there a good way for me?&lt;/p&gt;&#xA;
  108.        </summary>
  109.    </entry>
  110.    <entry>
  111.        <id>https://tex.stackexchange.com/q/716524</id>
  112.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  113.        <title type="text">Increasing the spacing around all tikzpictures</title>
  114.            <category scheme="https://tex.stackexchange.com/tags" term="tikz-pgf" />
  115.        <author>
  116.            <name>Bubaya</name>
  117.            <uri>https://tex.stackexchange.com/users/27717</uri>
  118.        </author>
  119.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716524/increasing-the-spacing-around-all-tikzpictures" />
  120.        <published>2024-04-26T06:49:27Z</published>
  121.        <updated>2024-04-26T06:49:27Z</updated>
  122.        <summary type="html">
  123.            &lt;p&gt;I know I can easily increase the space a tikzpicture takes by&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{article}&#xA;\usepackage{tikz}&#xA;\usetikzlibrary{fit}&#xA;\begin{document}&#xA;    y\tikz {\fill circle (2pt); \node[fit=(current bounding box), inner sep=2pt, draw] {};}x&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Now I have many tikzpictures, so I tried&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{article}&#xA;\usepackage{tikz}&#xA;\usetikzlibrary{fit}&#xA;\tikzset{every picture/.append code={\node[fit=(current bounding box), inner sep=2pt, draw] {};}}&#xA;\begin{document}&#xA;    y\tikz {\fill circle (2pt);}x&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;which fails with &lt;code&gt;dimension too large&lt;/code&gt;. I guess the code is evaluated multiple times, or what&#x27;s causing the error?&lt;/p&gt;&#xA;
  124.        </summary>
  125.    </entry>
  126.    <entry>
  127.        <id>https://tex.stackexchange.com/q/716522</id>
  128.        <re:rank scheme="https://tex.stackexchange.com">1</re:rank>
  129.        <title type="text">TikZ: Glow for rectangular node</title>
  130.            <category scheme="https://tex.stackexchange.com/tags" term="tikz-pgf" />
  131.        <author>
  132.            <name>user279611</name>
  133.            <uri>https://tex.stackexchange.com/users/256504</uri>
  134.        </author>
  135.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716522/tikz-glow-for-rectangular-node" />
  136.        <published>2024-04-26T05:55:30Z</published>
  137.        <updated>2024-04-26T06:42:15Z</updated>
  138.        <summary type="html">
  139.            &lt;p&gt;I would like to use a glow effect for colored nodes holding some text. Unfortunately, I can only find the key &lt;code&gt;circular glow&lt;/code&gt;, see the example below.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{standalone}&#xA;\usepackage{tikz}&#xA;\usetikzlibrary{shadows}&#xA;&#xA;\begin{document}&#xA;&#xA;\begin{tikzpicture}&#xA;\clip (-2, -3) rectangle (2,3);&#xA;\node[circular glow={fill=green}, rectangle, text width=2.5cm, align=justify] {Given the rectangular text area, rectangular glow would be desirable to also cover the corners.};&#xA;\end{tikzpicture}&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/XUg6ONcg.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/XUg6ONcg.png&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Is there a way to get a rectangular colored area with similar glow as the circular area above has, i.e., something like &amp;quot;rectangular glow&amp;quot;?&lt;/p&gt;&#xA;
  140.        </summary>
  141.    </entry>
  142.    <entry>
  143.        <id>https://tex.stackexchange.com/q/716521</id>
  144.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  145.        <title type="text">how to reduce the space in gb4e gloss example?</title>
  146.            <category scheme="https://tex.stackexchange.com/tags" term="gb4e" />
  147.            <category scheme="https://tex.stackexchange.com/tags" term="langsci-gb4e" />
  148.        <author>
  149.            <name>Lee12138</name>
  150.            <uri>https://tex.stackexchange.com/users/227433</uri>
  151.        </author>
  152.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716521/how-to-reduce-the-space-in-gb4e-gloss-example" />
  153.        <published>2024-04-26T05:26:56Z</published>
  154.        <updated>2024-04-26T07:52:31Z</updated>
  155.        <summary type="html">
  156.            &lt;p&gt;I&#x27;m writing a &lt;code&gt;linguistics paper&lt;/code&gt; and I use &lt;code&gt;gb4e&lt;/code&gt; package. For the sentence below, I don&#x27;t know how to reduce the space between the two consecutive example sentences. Any other solutions than using &lt;code&gt;\vspace{}&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Here is the code:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass[12pt]{report}&#xA;\usepackage{url}&#xA;\usepackage[numbers,sort]{natbib}&#xA;\usepackage[dvips]{graphicx}&#xA;\usepackage{amsmath}&#xA;\usepackage{amssymb}&#xA;\usepackage{xcolor}&#xA;\usepackage{tipa}  &#xA;\usepackage{tikz} &#xA;\usepackage{tikz-qtree} &#xA;\usepackage{gb4e} &#xA;&#xA;&#xA;\begin{document}&#xA;&#xA;\begin{exe}&#xA;\ex&#xA;\label{7}&#xA;\begin{xlist}&#xA;\ex &#xA;\label{7a}&#xA;\gll Ali [ men ket-t-im ] di-d-i.\\&#xA;Ali [ \textsc{1sg.nom} leave-\textsc{past-1sg} ] say-\textsc{past-3sg}\\&#xA;\textsc{Shifted}: \ding{51} `Ali_{i} said that he_{i} left.&#x27;&#xA;\vspace{-0.3cm}&#xA;     &#xA;\textsc{Nonshifted}: \ding{55} `Ali_{i} said that I_{speaker} left.&#x27;\\&#xA;&#xA;\ex &#xA;\label{7b}&#xA;\gll Ali [ meni ket-t-i ] di-d-i.\\&#xA;Ali [ \textsc{1sg.acc} leave-\textsc{past-3sg} ] say-\textsc{past-3sg}\\&#xA;\textsc{Shifted}: \ding{55} `Ali_{i} said that he_{i} left.&#x27;&#xA;\vspace{-0.3cm}&#xA;     &#xA;\textsc{Nonshifted}: \ding{51} `Ali_{i} said that I_{speaker} left.&#x27;\\&#xA;    \end{xlist}&#xA;\end{exe}&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/nSXw8VfP.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/nSXw8VfP.png&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;
  157.        </summary>
  158.    </entry>
  159.    <entry>
  160.        <id>https://tex.stackexchange.com/q/716516</id>
  161.        <re:rank scheme="https://tex.stackexchange.com">2</re:rank>
  162.        <title type="text">TeX variables become local within list environments?</title>
  163.            <category scheme="https://tex.stackexchange.com/tags" term="lists" />
  164.            <category scheme="https://tex.stackexchange.com/tags" term="enumerate" />
  165.            <category scheme="https://tex.stackexchange.com/tags" term="tex-core" />
  166.            <category scheme="https://tex.stackexchange.com/tags" term="arithmetic" />
  167.        <author>
  168.            <name>Mars</name>
  169.            <uri>https://tex.stackexchange.com/users/11250</uri>
  170.        </author>
  171.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716516/tex-variables-become-local-within-list-environments" />
  172.        <published>2024-04-26T03:04:07Z</published>
  173.        <updated>2024-04-26T08:31:59Z</updated>
  174.        <summary type="html">
  175.            &lt;p&gt;Apparently, when the value of a TeX counter is modified inside an &lt;code&gt;enumerate&lt;/code&gt; environment (and no doubt many other contexts), it acts like a local variable, so that any modifications to it are local to the environnent.  For example, this code&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{article}&#xA;&#xA;\newcount\total&#xA;\total = 5&#xA;&#xA;\begin{document}&#xA;&#xA;At first total = \number\total&#xA;&#xA;\begin{enumerate}&#xA;\item \advance \total by 10&#xA;      Now total = \number\total&#xA;\item \advance \total by 10&#xA;      Now total = \number\total&#xA;\end{enumerate}&#xA;&#xA;Outside of the enumerate environment, total reverts to its&#xA;original value: \number\total\\&#xA;&#xA;Does the same thing happen in embedded environments?&#xA;\begin{enumerate}&#xA;\item \advance \total by 100&#xA;      Now total = \number\total&#xA;      \begin{enumerate}&#xA;      \item \advance \total by 1000&#xA;      Now total = \number\total&#xA;      \end{enumerate}&#xA;      That didn&#x27;t do anything to this total = \number\total&#xA;\item \advance \total by 100&#xA;      Now total = \number\total&#xA;\end{enumerate}&#xA;Yes.  Now total = \number\total&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;produces:&#xA;&lt;img src=&quot;https://i.sstatic.net/TNFiuPJj.png&quot; alt=&quot;LaTeX image generated by the preceding source code, showing that the total counter becomes local to each enumerate environment when its value is modified by \advance.&quot; /&gt;&lt;/p&gt;&#xA;&lt;p&gt;Two questions:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;How should I understand what&#x27;s going on here?&lt;/li&gt;&#xA;&lt;li&gt;What is the simplest way to story modify a value inside an &lt;code&gt;enumerate&lt;/code&gt; environment so that the modified value is available outside of the environment? I&#x27;m fine with using LaTeX rather than TeX facilities here. I just want a simple solution that works.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Why? I&#x27;m writing a test, and for each question, I specify the number of points it&#x27;s worth.  When I display the points, I also want to update a variable that will give me a total at the end.  Sometimes I assign points to sub-questions that I list in an embedded environment.  I want those points added to the total as well.&lt;/p&gt;&#xA;&lt;p&gt;At present, I do it like this:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\newcount\totalpts&#xA;\totalpts = 0&#xA;\newcommand{\pts}[1]{(#1 points) \advance \totalpts by #1}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;and I use the &lt;code&gt;\pts&lt;/code&gt; command to display the number of points for each question.  It works if I only use one &lt;code&gt;enumerate&lt;/code&gt; environment to display questions, because I can display the total as part of the last question.  It doesn&#x27;t work if I assign points in an &lt;code&gt;enumerate&lt;/code&gt; environment that&#x27;s embedded in the outer questions environment: the points I list for questions in the embedded environment don&#x27;t affect the total in the outer environment.&lt;/p&gt;&#xA;&lt;p&gt;Of course, feel free to point me to earlier questions.  I feel certain that this kind of question must have been discussed in tex.SE previously, but I can&#x27;t figure out a strategy for searching for it.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/TNFiuPJj.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;1&lt;/a&gt;&lt;/p&gt;&#xA;
  176.        </summary>
  177.    </entry>
  178.    <entry>
  179.        <id>https://tex.stackexchange.com/q/716513</id>
  180.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  181.        <title type="text">Align Environment Select all of the following that are written correctly</title>
  182.            <category scheme="https://tex.stackexchange.com/tags" term="math-mode" />
  183.        <author>
  184.            <name>Jonathan</name>
  185.            <uri>https://tex.stackexchange.com/users/319133</uri>
  186.        </author>
  187.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716513/align-environment-select-all-of-the-following-that-are-written-correctly" />
  188.        <published>2024-04-26T01:55:10Z</published>
  189.        <updated>2024-04-26T04:34:30Z</updated>
  190.        <summary type="html">
  191.            &lt;pre&gt;&lt;code&gt;$\begin{align*} c^2 &amp;amp;= a^2 &#x2B; b^2 \\ c^2 &amp;amp;= 6^2 &#x2B; 8^2 \\ &#xA;c^2 &amp;amp;= 36 &#x2B; 64 \\ \sqrt{c^2} &amp;amp;= \sqrt{100} \\ c&amp;amp;=10 \end{align*}$&#xA;&#xA;$$\begin{aligned*} c^2 &amp;amp;= a^2 &#x2B; b^2 \\ c^2 &amp;amp;= 6^2 &#x2B; 8^2 \\ &#xA;c^2 &amp;amp;= 36 &#x2B; 64 \\ \sqrt{c^2} &amp;amp;= \sqrt{100} \\ c&amp;amp;=10\end{aligned*}$$&#xA;&#xA;$\begin{aligned} c^2 &amp;amp;= a^2 &#x2B; b^2 \\ c^2 &amp;amp;= 6^2 &#x2B; 8^2 \\ &#xA;c^2 &amp;amp;= 36 &#x2B; 64 \\ \sqrt{c^2} &amp;amp;= \sqrt{100} \\ c&amp;amp;=10 \end{aligned}$&#xA;&#xA;$\begin{align} c^2 &amp;amp;= a^2 &#x2B; b^2 \\ c^2 &amp;amp;= 6^2 &#x2B; 8^2 \\ &#xA;c^2 &amp;amp;= 36 &#x2B; 64 \\ \sqrt{c^2} &amp;amp;= \sqrt{100} \\ c&amp;amp;=10 \end{align}$&#xA;&#xA;$$\begin{aligned} c^2 &amp;amp;= a^2 &#x2B; b^2 \\ c^2 &amp;amp;= 6^2 &#x2B; 8^2 \\ &#xA;c^2 &amp;amp;= 36 &#x2B; 64 \\ \sqrt{c^2} &amp;amp;= \sqrt{100} \\ c&amp;amp;=10 \end{aligned}$$&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;
  192.        </summary>
  193.    </entry>
  194.    <entry>
  195.        <id>https://tex.stackexchange.com/q/716510</id>
  196.        <re:rank scheme="https://tex.stackexchange.com">2</re:rank>
  197.        <title type="text">Why do `ftcap` and `caption` produce different vertical spacing?</title>
  198.            <category scheme="https://tex.stackexchange.com/tags" term="tables" />
  199.            <category scheme="https://tex.stackexchange.com/tags" term="spacing" />
  200.            <category scheme="https://tex.stackexchange.com/tags" term="captions" />
  201.            <category scheme="https://tex.stackexchange.com/tags" term="article" />
  202.        <author>
  203.            <name>inavda</name>
  204.            <uri>https://tex.stackexchange.com/users/73612</uri>
  205.        </author>
  206.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716510/why-do-ftcap-and-caption-produce-different-vertical-spacing" />
  207.        <published>2024-04-25T22:23:51Z</published>
  208.        <updated>2024-04-26T08:08:13Z</updated>
  209.        <summary type="html">
  210.            &lt;p&gt;I usually load the &lt;code&gt;caption&lt;/code&gt; package to fix the spacing between tables and their captions in the &lt;code&gt;article&lt;/code&gt; class. Since I don&#x27;t use any other features of the &lt;code&gt;caption&lt;/code&gt; package, I decided to try using the dedicated package &lt;code&gt;ftcap&lt;/code&gt; to fix it instead. However, when I try each package, I get slightly different amounts of vertical space on the page. With the following MWE, when I use &lt;code&gt;ftcap&lt;/code&gt;, all of the text moves slightly higher up on the page compared to the output when I use &lt;code&gt;caption&lt;/code&gt;. As far as I can tell, the space between the table and caption is identical between the two (presumably 10.0pt).&lt;/p&gt;&#xA;&lt;p&gt;MWE:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{article}&#xA;&#xA;\usepackage{caption}  % a bit less than 1mm lower&#xA;%\usepackage{ftcap}  % a bit less than 1mm higher&#xA;&#xA;\begin{document}&#xA;    &#xA;This is a paragraph.&#xA;&#xA;\begin{table}&#xA;    \caption{This is a caption.}&#xA;    \begin{tabular}{c}&#xA;        This is a table.&#xA;    \end{tabular}&#xA;\end{table}&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;The following code can be used to see the difference more clearly:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{article}&#xA;&#xA;\usepackage{fgruler}&#xA;\textwidth=\paperwidth&#xA;\oddsidemargin=-1in&#xA;\parindent=0pt&#xA;&#xA;\usepackage{caption}  % a bit less than 1mm lower&#xA;%\usepackage{ftcap}  % a bit less than 1mm higher&#xA;&#xA;\begin{document}&#xA;    &#xA;\rule{2cm}{0.1pt}&#xA;This is a paragraph.&#xA;&#xA;\begin{table}&#xA;    \caption{This is a caption.}&#xA;    \begin{tabular}{c}&#xA;        \rule{2cm}{0.1pt}&#xA;        This is a table.&#xA;    \end{tabular}&#xA;\end{table}&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;I&#x27;ve tried going through the documentation and implementation of both packages. &lt;code&gt;caption&lt;/code&gt; is quite a bit more complex, so I haven&#x27;t been able to make as much sense of it.&lt;/p&gt;&#xA;
  211.        </summary>
  212.    </entry>
  213.    <entry>
  214.        <id>https://tex.stackexchange.com/q/716484</id>
  215.        <re:rank scheme="https://tex.stackexchange.com">-1</re:rank>
  216.        <title type="text">How to draw a quantum measurement in TikZ LaTeX</title>
  217.            <category scheme="https://tex.stackexchange.com/tags" term="tikz-pgf" />
  218.            <category scheme="https://tex.stackexchange.com/tags" term="circuitikz" />
  219.            <category scheme="https://tex.stackexchange.com/tags" term="quantikz" />
  220.        <author>
  221.            <name>Nick Cooper</name>
  222.            <uri>https://tex.stackexchange.com/users/319117</uri>
  223.        </author>
  224.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716484/how-to-draw-a-quantum-measurement-in-tikz-latex" />
  225.        <published>2024-04-25T16:12:10Z</published>
  226.        <updated>2024-04-26T11:24:08Z</updated>
  227.        <summary type="html">
  228.            &lt;p&gt;I want to draw a quantum measurement in TikZ LaTeX as the following image! Any ideas?&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/1FCwf73L.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/1FCwf73L.png&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;
  229.        </summary>
  230.    </entry>
  231.    <entry>
  232.        <id>https://tex.stackexchange.com/q/716473</id>
  233.        <re:rank scheme="https://tex.stackexchange.com">2</re:rank>
  234.        <title type="text">How do I connect my \optdetector and \optbox using the fibers/wires in the pst-optexp package?</title>
  235.            <category scheme="https://tex.stackexchange.com/tags" term="diagrams" />
  236.            <category scheme="https://tex.stackexchange.com/tags" term="pstricks" />
  237.            <category scheme="https://tex.stackexchange.com/tags" term="overleaf" />
  238.            <category scheme="https://tex.stackexchange.com/tags" term="pst-optexp" />
  239.            <category scheme="https://tex.stackexchange.com/tags" term="pst-optic" />
  240.        <author>
  241.            <name>Benzv2001</name>
  242.            <uri>https://tex.stackexchange.com/users/318916</uri>
  243.        </author>
  244.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716473/how-do-i-connect-my-optdetector-and-optbox-using-the-fibers-wires-in-the-pst-o" />
  245.        <published>2024-04-25T14:32:41Z</published>
  246.        <updated>2024-04-26T09:41:23Z</updated>
  247.        <summary type="html">
  248.            &lt;p&gt;I&#x27;ve spent today working with, and learning more about the pst-optexp package.&#xA;So far, I&#x27;ve managed to solve all the problems that I&#x27;ve encountered using it.&lt;/p&gt;&#xA;&lt;p&gt;But the &lt;em&gt;final&lt;/em&gt; part of the drawing is something I cannot fix at the moment, every single time another part of the drawing either disappears or is drawn incorrectly. I want to connect my APD \optdetector with my Receiver \optbox using either a wire or a fiber.&lt;/p&gt;&#xA;&lt;p&gt;I&#x27;m using Overleaf and the regular LaTeX compiler, as I noticed that neither XeLaTeX nor LuaLaTeX worked using these packages.&lt;/p&gt;&#xA;&lt;p&gt;What I&#x27;ve noticed is that every single time it starts giving errors that say:&#xA;&#x27;overfull \hbox (xxxpt too wide) in paragraph at lines xx-xx&#x27; where those are the last lines of the document.&lt;/p&gt;&#xA;&lt;p&gt;Here is my drawing if that helps:&#xA;&lt;a href=&quot;https://i.sstatic.net/nSi87vaP.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/nSi87vaP.png&quot; alt=&quot;Current Setup&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;And finally, my code:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass[11pt]{article}&#xA;\usepackage{pst-all}&#xA;\usepackage{pst-optexp}&#xA;\usepackage{xkeyval}&#xA;\usepackage{nicefrac}&#xA;\begin{document}&#xA;&#xA;\psset{unit=1}&#xA;\begin{pspicture}[showgrid](13,9)&#xA;\pnode(6,2.5){BoxUp}&#xA;&#xA;% Beam coordinates&#xA;\pnode(2,5){GreenEnd}&#xA;\pnode(6,1.5){GreenStart}&#xA;\pnode(GreenEnd){RedStart}&#xA;\pnode(11,2){RedEnd}&#xA;&#xA;% Mirror coordinates&#xA;\pnodes(5,5){Ldc}(6,5){Mdc}(6,4){Bdc}&#xA;\pnodes(8,5){Lfm}(9,5){Mfm}(9,4){Bfm}&#xA;\pnodes(9,4){Um1}(9,2){Mm1}(10,2){Rm1}&#xA;&#xA;% Lens coordinates&#xA;\pnodes(4,5){LPos}(2,5){LFoc}&#xA;&#xA;%Laser Diode&#xA;\optbox[position=start, compname=box](3,-1)(3,-1){Laser Diode}&#xA;&#xA;% Fiber&#xA;\optfiber[fiberloopradius=0.2,&#xA;linecolor=green,label=0.3,compname=ssmf](3,-1)(5,-1){SSMF}&#xA;&#xA;% Draw laser box&#xA;\optbox[position=start, labeloffset=0, labelref=relative, compname=LO](GreenStart)(BoxUp){Laser}&#xA;&#xA;% Draw ND filter&#xA;\optfilter[fiber=none,allowbeaminside=false,compname=nd,&#xA;labelref=relative,labeloffset=-1](6,2.5)(6,3.5){ND-Filter}&#xA;&#xA;% Draw CMOS Camera&#xA;\optbox[position=end, labeloffset=0](RedEnd)(11,2){CMOS}&#xA;&#xA;% Attempt 1 for receiver&#xA;\optbox[position=end, labeloffset=0,compname=apdrec](9.6,8)(9.6,8){Receiver}&#xA;&#xA;% Draw semitransparent mirror&#xA;\mirror[mirrortype=semitrans,compname=dc](Ldc)(Mdc)(Bdc){DC}&#xA;&#xA;% Draw the focusing objective&#xA;\lens[abspos=0,lensradius=2,lenswidth=1.5,&#xA;lensheight=0.75,compname=lens1](LPos)(LFoc){x40 Focusing objective}&#xA;\addtopsstyle{Beam}{opacity=0.1}&#xA;&#xA;% Draw the green laser beam&#xA;\drawwidebeam[beamwidth=0.4,opacity=0.4,&#xA;fillstyle=solid,fillcolor=green](GreenStart){nd}{dc}{lens1}(GreenEnd)&#xA;&#xA;% Draw the flip mirror&#xA;\mirror[labelangle=45,compname=fm](Lfm)(Mfm)(Bfm){Flip Mirror}&#xA;&#xA;% Edge Filter&#xA;\optfilter[filtertype=bandstop,compname=ef,labelref=relative](9,4)(9,3){Edge Filter}&#xA;&#xA;% Mirror to CMOS&#xA;\mirror[labelangle=45,compname=m1](Um1)(Mm1)(Rm1)&#xA;&#xA;% Draw the red laser beam&#xA;\drawwidebeam[beamwidth=0.2,opacity=0.6,fillstyle=solid, fillcolor=red,linestyle=none](RedStart){dc}{fm}{ef}{m1}(RedEnd)&#xA;&#xA;% Draw the NV-Centers&#xA;\crystal[crystalheight=2, crystalwidth=1,labelangle=0,labeloffset=-1.3](2,5)(1,5){NV-Centers}&#xA;&#xA;% Connect ssmf and laser output&#xA;\drawfiber[linecolor=green,fiberstyle=angle,linearc=0.5]{ssmf}{LO}&#xA;&#xA;% Draw ramp generator&#xA;\elecsynthesizer[synthshape=rectangle,synthsize=2 1,&#xA;synthtype=sawtooth,compname=rg,labelref=relative](6,8)(5,8){Ramp Generator}&#xA;&#xA;% Draw MW-source&#xA;\optbarcomp[fiber,compname=mw](5,8)(3,8){MW-Generator}&#xA;&#xA;% Connect Rampgenerator with MW-source&#xA;\drawfiber[linecolor=black]{rg}{mw}&#xA;&#xA;% Connect MW-source with MW-antenna&#xA;\drawfiber[linecolor=black,fiberstyle=angle,linearc=0.5]{mw}(0.5,4,5)&#xA;&#xA;% Extra node&#xA;\pnodes(10.8,5){ap}(11.2,5){apa}(12,5){apb}(12,8){apc}(11,8){apd}&#xA;&#xA;% Draw APD-receiver connection (stubborn version)&#xA;%\drawfiber[linecolor=black]{apdrec}(apa)(apb)(apc)(apd)&#xA;&#xA;% Draw APD&#xA;\optdetector[position=start,fiber,compname=apd,&#xA;labelangle=180](11.2,5)(11.2,5){APD}&#xA;&#xA;%\optbox[position=end, labeloffset=0,compname=apdrec](9.6,8)(9.6,8){Receiver}&#xA;&#xA;\drawwire{apd}(12,6.5){apdrec}&#xA;&#xA;% Optional beam to APD&#xA;\drawwidebeam[beamwidth=0.2,opacity=0.6,fillstyle=vlines,&#xA;fillcolor=red,linestyle=none]{fm}{apd}&#xA;&#xA;\end{pspicture}&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;
  249.        </summary>
  250.    </entry>
  251.    <entry>
  252.        <id>https://tex.stackexchange.com/q/716362</id>
  253.        <re:rank scheme="https://tex.stackexchange.com">4</re:rank>
  254.        <title type="text">Convert control sequence with a variable number of parameters into a token list</title>
  255.            <category scheme="https://tex.stackexchange.com/tags" term="macros" />
  256.            <category scheme="https://tex.stackexchange.com/tags" term="expl3" />
  257.            <category scheme="https://tex.stackexchange.com/tags" term="expansion" />
  258.        <author>
  259.            <name>Witiko</name>
  260.            <uri>https://tex.stackexchange.com/users/70941</uri>
  261.        </author>
  262.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716362/convert-control-sequence-with-a-variable-number-of-parameters-into-a-token-list" />
  263.        <published>2024-04-24T10:55:08Z</published>
  264.        <updated>2024-04-26T11:12:47Z</updated>
  265.        <summary type="html">
  266.            &lt;p&gt;In expl3, I can translate a token list &lt;code&gt;\l_greet_tl&lt;/code&gt; into a control sequence &lt;code&gt;\greet&lt;/code&gt; that takes two parameters as follows:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\tl_new:N&#xA;  \l_greet_tl&#xA;\tl_set:Nn&#xA;  \l_greet_tl&#xA;  { Hello,~#1!~How~is~#2~doing? }&#xA;\cs_generate_variant:Nn&#xA;  \cs_generate_from_arg_count:NNnn&#xA;  { NNnV }&#xA;\cs_generate_from_arg_count:NNnV&#xA;  \greet&#xA;  \cs_set:Npn&#xA;  { 2 }&#xA;  \l_greet_tl&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Then, I can write &lt;code&gt;\greet { world } { favorite~species~(humans,~presumably) }&lt;/code&gt; and receive the following expansion:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Hello, world! How is your favorite species (humans, presumably) doing?&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;However, I would now like to do the reverse, i.e. convert the replacement text of the control sequence &lt;code&gt;\greet&lt;/code&gt; back into a token list, so that I can append to it before I convert it back into a control sequence. I can do this manually for two parameters as follows:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\tl_set:No&#xA;  \l_greet_tl&#xA;  { \greet { #1 } { #2 } }&#xA;\tl_put_right:Nn&#xA;  \l_greet_tl&#xA;  { ~Have~a~great~#3! }&#xA;\cs_generate_from_arg_count:NNnV&#xA;  \greet&#xA;  \cs_set:Npn&#xA;  { 3 }&#xA;  \l_greet_tl&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Now, I can write &lt;code&gt;\greet { world } { favorite~species~(humans,~presumably) } { evolutionary~leap }&lt;/code&gt; and receive the following expansion:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Hello, world! How is your favorite species (humans, presumably) doing? Have a great evolutionary leap!&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;However, I would like to be able to do this in a way that works for any number of parameters, not just two, such as:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\tl_set_from_cs:NNn&#xA;  \l_greet_tl  % token list (output)&#xA;  \greet       % control sequence (input)&#xA;  { 2 }        % parameter count&#xA;\tl_put_right:Nn&#xA;  \l_greet_tl&#xA;  { ~Have~a~great~#3! }&#xA;\cs_generate_from_arg_count:NNnV&#xA;  \greet&#xA;  \cs_set:Npn&#xA;  { 3 }&#xA;  \l_greet_tl&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Unlike the existing function &lt;code&gt;\cs_replacement_spec:N&lt;/code&gt;, the new function &lt;code&gt;\tl_set_from_cs:NNn&lt;/code&gt; would maintain the category codes in the replacement text.&lt;/p&gt;&#xA;&lt;h2&gt;EDIT: Further clarifications (2024-04-26)&lt;/h2&gt;&#xA;&lt;p&gt;Unlike in the answer from Max Chernoff, the answer should apply to all TeX engines supported by expl3, not just LuaTeX.&lt;/p&gt;&#xA;&lt;p&gt;Unlike in the answers from me and @egreg, doubled &lt;code&gt;#&lt;/code&gt;s in the replacement text should be preserved. For example, assume the following redefinition of the control sequence &lt;code&gt;\greet&lt;/code&gt;:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\cs_new:Npn&#xA;  \greet&#xA;  #1#2&#xA;  {&#xA;    Hello,~#1!&#xA;    \group_begin:&#xA;    \cs_set:Npn&#xA;      \greet&#xA;      ##1&#xA;      { ~How~is~##1~doing? }&#xA;    \greet { #2 }&#xA;    \group_end:&#xA;  }&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Now, I can now write &lt;code&gt;\greet { world } { favorite~species~(humans,~presumably) }&lt;/code&gt; and still receive the following expansion:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Hello, world! How is your favorite species (humans, presumably) doing?&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;However, converting the control sequence to a token list as follows no longer behaves as expected:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\tl_set:No&#xA;  \l_greet_tl&#xA;  { \greet { #1 } { #2 } }&#xA;\tl_put_right:Nn&#xA;  \l_greet_tl&#xA;  { ~Have~a~great~#3! }&#xA;\cs_generate_from_arg_count:NNnV&#xA;  \greet&#xA;  \cs_set:Npn&#xA;  { 3 }&#xA;  \l_greet_tl&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;This is because, &lt;code&gt;\greet&lt;/code&gt; now contains the following replacement text:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;Hello,~#1!&#xA;\group_begin:&#xA;\cs_set:Npn&#xA;  \greet&#xA;  #1&#xA;  { ~How~is~#1~doing? }&#xA;\greet { #2 }&#xA;\group_end:&#xA;~Have~a~great~#3!&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;As you can see, the distinction between &lt;code&gt;#1&lt;/code&gt; and &lt;code&gt;##1&lt;/code&gt; has been lost. If I now write &lt;code&gt;\greet { world } { favorite~species~(humans,~presumably) } { evolutionary~leap }&lt;/code&gt;, TeX will produce the following error:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Use of \greet doesn&#x27;t match its definition.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;Preserving the doubled &lt;code&gt;#&lt;/code&gt;s is part of the challenge.&lt;/p&gt;&#xA;
  267.        </summary>
  268.    </entry>
  269.    <entry>
  270.        <id>https://tex.stackexchange.com/q/716361</id>
  271.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  272.        <title type="text">Issue with scaling every pic (angles tikzlibrary)</title>
  273.            <category scheme="https://tex.stackexchange.com/tags" term="tikz-pic" />
  274.            <category scheme="https://tex.stackexchange.com/tags" term="scale" />
  275.            <category scheme="https://tex.stackexchange.com/tags" term="tikz-angles" />
  276.        <author>
  277.            <name>Antonio</name>
  278.            <uri>https://tex.stackexchange.com/users/230568</uri>
  279.        </author>
  280.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716361/issue-with-scaling-every-pic-angles-tikzlibrary" />
  281.        <published>2024-04-24T10:43:24Z</published>
  282.        <updated>2024-04-26T06:19:33Z</updated>
  283.        <summary type="html">
  284.            &lt;p&gt;Hi everyone I need to scale a tikzpicture so I did it by &lt;code&gt;\begin{tikzpicture}[scale=&amp;lt;factor&amp;gt;]&lt;/code&gt; but pics don&#x27;t get scaled accordingly (It is reported in the TikzManual &lt;a href=&quot;https://tikz.dev/tikz-pics&quot; rel=&quot;nofollow noreferrer&quot;&gt;section 18.2 The Pic syntax&lt;/a&gt;). I want pics scaled too, so I tried the syntax &lt;code&gt;\begin{tikzpicture}[scale=0.4,every pic/.style={transform shape}]&lt;/code&gt; but it didn&#x27;t work.&#xA;Using transform shape as option of every single pic, i.e., &lt;code&gt;\pic[angle radius=5.3cm,transform shape]&lt;/code&gt; it&#x27;s ok but I don&#x27;t want to use it on very single option of \pic`. Maybe it is a problem only with angles library (I didn&#x27;t try with other pics).&#xA;Here is my MWEs, this doesn&#x27;t work as expected&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;    \documentclass[border=1cm]{standalone}&#xA;    \usepackage{tikz}&#xA;    \usetikzlibrary{calc,angles}&#xA;    \begin{document}&#xA;    %rotate vectors&#xA;\begin{tikzpicture}[vector/.style={thick,-stealth},scale=0.4,every pic/.style={transform shape}]&#xA;%drawing help lines&#xA;\newcommand*{\xmin}{-3}\newcommand*{\xmax}{4}&#xA;\newcommand*{\ymin}{-5}\newcommand*{\ymax}{1}&#xA;\draw[help lines](\xmin,\ymin)grid(\xmax,\ymax);&#xA;%vector coordinates and labels&#xA;\coordinate[label={above:$v$}] (O)at (0,0);&#xA;\coordinate (vec1)at (1,-2);&#xA;\coordinate (vec2)at(4,-1);&#xA;\draw[vector] (O)--(vec1)coordinate[label={[below]$u_1$}](u1);&#xA;%sum (vec1)&#x2B;(vec2)  &#xA;\draw[vector,very thick,blue](O)--($(vec1)&#x2B;(vec2)$)coordinate(u1&#x2B;u2);&#xA;%rotated sum (u1)&#x2B;(u2) -&amp;gt; u&#x27;1&#x2B;u&#x27;2&#xA;\draw[vector,very thick,orange](O)--([rotate=-90]u1&#x2B;u2)coordinate(u&#x27;1&#x2B;u&#x27;2);&#xA;%rotated vectors &#xA;\draw[red,vector] (0,0)--([rotate=-90]vec1)coordinate[label={[left]$u&#x27;_1$}](u&#x27;1); &#xA;%&#xA;\draw[red,vector] (0,0)--([rotate=-90]vec2)coordinate[label={[below]$u&#x27;_2$}](u&#x27;2);&#xA;%angles between vectors by angles library, issue with angle radius=  &#xA;%default angle radius=1cm and it does not scale accordingly&#xA;\pic[draw=gray] {angle = u&#x27;1--O--u&#x27;2};  &#xA;% rotation traces &#xA;\pic[draw=red,dashed,&amp;lt;-,angle radius=1.8cm]{angle=u&#x27;1--O--vec1}; &#xA;\pic[draw=blue,dashed,&amp;lt;-,angle radius=5.3cm,]  {angle=u&#x27;1&#x2B;u&#x27;2--O--u1&#x2B;u2}; &#xA;%vector sums labels &#xA;\coordinate[label={below:$w$}]() at(u1&#x2B;u2);&#xA;\coordinate[label={below:$w&#x27;$}] ()at(u&#x27;1&#x2B;u&#x27;2);&#xA;  % outgoing vector scaled accordingly but I&#x27;d rather prefer not&#xA;    \path[draw,fill=white] (O)circle[radius=2pt];&#xA;    \path[fill] (O)circle[radius=1pt];&#xA;    \end{tikzpicture}\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/pbV1qJfg.jpg&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/pbV1qJfg.jpg&quot; alt=&quot;Dashed arcs should be scaled in order to fit with arrows&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;The following one works properly,&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass[border=1cm]{standalone}&#xA;\usepackage{tikz}&#xA;\usetikzlibrary{calc,angles}&#xA;\begin{document}&#xA;%&#xA;%rotate vectors&#xA;\begin{tikzpicture}[vector/.style={thick,-stealth},scale=0.4 ] %every pic/.append style={transform shape}&#xA;%drawing help lines&#xA;\newcommand*{\xmin}{-3}\newcommand*{\xmax}{4}&#xA;\newcommand*{\ymin}{-5}\newcommand*{\ymax}{1}&#xA;\draw[help lines](\xmin,\ymin)grid(\xmax,\ymax);&#xA;%vector coordinates and labels&#xA;\coordinate[label={above:$v$}] (O)at (0,0);&#xA;\coordinate (vec1)at (1,-2);&#xA;\coordinate (vec2)at(4,-1);&#xA;\draw[vector] (O)--(vec1)coordinate[label={[below]$u_1$}](u1);&#xA;%sum (vec1)&#x2B;(vec2)  &#xA;\draw[vector,very thick,blue](O)--($(vec1)&#x2B;(vec2)$)coordinate(u1&#x2B;u2);&#xA;%rotated sum (u1)&#x2B;(u2) -&amp;gt; u&#x27;1&#x2B;u&#x27;2&#xA;\draw[vector,very thick,orange](O)--([rotate=-90]u1&#x2B;u2)coordinate(u&#x27;1&#x2B;u&#x27;2);&#xA;%rotated vectors &#xA;\draw[red,vector] (0,0)--([rotate=-90]vec1)coordinate[label={[left]$u&#x27;_1$}](u&#x27;1); &#xA;%&#xA;\draw[red,vector] (0,0)--([rotate=-90]vec2)coordinate[label={[below]$u&#x27;_2$}](u&#x27;2);&#xA;%angles between vectors by angles library, issue with angle radius=  &#xA;%default angle radius=1cm and it does not scale accordingly&#xA;\pic[transform shape,draw=gray] {angle = u&#x27;1--O--u&#x27;2};  &#xA;% rotation traces &#xA;\pic[draw=red,dashed,&amp;lt;-,angle radius=1.8cm,transform shape]{angle=u&#x27;1--O--vec1}; &#xA;\pic[transform shape,draw=blue,dashed,&amp;lt;-,angle radius=5.3cm,]  {angle=u&#x27;1&#x2B;u&#x27;2--O--u1&#x2B;u2}; &#xA;%vector sums labels &#xA;\coordinate[label={below:$w$}]() at(u1&#x2B;u2);&#xA;\coordinate[label={below:$w&#x27;$}] ()at(u&#x27;1&#x2B;u&#x27;2);&#xA;&#xA;    % outgoing vector scaled accordingly but I&#x27;d rather prefer not&#xA;    \path[draw,fill=white] (O)circle[radius=2pt];&#xA;    \path[fill] (O)circle[radius=1pt];&#xA;\end{tikzpicture}&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/zAYlvf5n.jpg&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/zAYlvf5n.jpg&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Maybe there is a better way to achieve that, I am open to that but I wouldn&#x27;t change my code from scratch.&lt;/p&gt;&#xA;&lt;p&gt;I tried with &lt;code&gt;every pic/.append style={transform shape}&lt;/code&gt; but with no apparent result.&#xA;As a side effect the radius of &lt;em&gt;outgoing vector&lt;/em&gt; in the last lines of the code is scaled, which I don&#x27;t want.&lt;/p&gt;&#xA;
  285.        </summary>
  286.    </entry>
  287.    <entry>
  288.        <id>https://tex.stackexchange.com/q/716341</id>
  289.        <re:rank scheme="https://tex.stackexchange.com">6</re:rank>
  290.        <title type="text">How do I change the page size for a pdf-file generated by plain-TeX?</title>
  291.            <category scheme="https://tex.stackexchange.com/tags" term="pdftex" />
  292.            <category scheme="https://tex.stackexchange.com/tags" term="pdf" />
  293.            <category scheme="https://tex.stackexchange.com/tags" term="plain-tex" />
  294.            <category scheme="https://tex.stackexchange.com/tags" term="texworks" />
  295.        <author>
  296.            <name>MS-SPO</name>
  297.            <uri>https://tex.stackexchange.com/users/245790</uri>
  298.        </author>
  299.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716341/how-do-i-change-the-page-size-for-a-pdf-file-generated-by-plain-tex" />
  300.        <published>2024-04-24T07:51:55Z</published>
  301.        <updated>2024-04-26T08:09:18Z</updated>
  302.        <summary type="html">
  303.            &lt;h3&gt;Situation, probably known&lt;/h3&gt;&#xA;&lt;p&gt;I know the pdf-page-size can be changed in &lt;code&gt;LaTeX&lt;/code&gt; using package &lt;code&gt;geometry&lt;/code&gt;. But how to do it in &lt;code&gt;plain-TeX&lt;/code&gt;?&lt;/p&gt;&#xA;&lt;p&gt;E.g. changing page related parameters, like &lt;code&gt;\vsize&lt;/code&gt; or &lt;code&gt;\hoffset&lt;/code&gt;, do introduce changes, but don&#x27;t seem to touch the paper format written into the pdf, here 8,27 x 11.69 in.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;% setting (some) page parameters&#xA;\vsize 3in&#xA;\pagegoal \vsize&#xA;\hsize 4in&#xA;\hoffset 2in&#xA;\topskip 1.5in&#xA;&#xA;&#xA;\headline{My head \hrulefill}\footline{\hrulefill Your foot - \the\pageno}&#xA;&#xA;Lorem ipsum dolor sit amet consectetuer nibh enim congue porta vel. Commodo hendrerit pellentesque Curabitur quis consectetuer Integer laoreet ante adipiscing aliquet. Congue condimentum tempus lorem nec leo et semper Aliquam senectus augue. Dolor massa vitae Nullam Sed est dignissim penatibus tellus orci Aliquam. Nulla sed iaculis aliquet massa ipsum Nullam id ipsum vitae sapien. Consequat Vestibulum Ut id morbi Aliquam lobortis Fusce Lorem at platea. Nibh.&#xA;&#xA;Justo elit montes nulla justo at quis nascetur diam Morbi Phasellus. Vestibulum enim Vestibulum semper Curabitur consequat ante penatibus quis ut auctor. Vestibulum nunc Aliquam interdum non wisi congue nec interdum Sed orci. Sed Nam consequat enim non sem dignissim vitae eleifend mauris mauris. Curabitur enim ligula massa orci aliquam ac Phasellus semper id tortor. Magna.&#xA;&#xA;Vitae laoreet lorem Nulla Nunc Nunc nunc convallis nibh venenatis Vivamus. Curabitur laoreet felis congue interdum condimentum augue at condimentum id Aliquam. Suspendisse adipiscing velit ipsum ipsum Ut Aenean pellentesque consequat enim et. &#xA;&#xA;\bye&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/2JuzUlM6.png&quot; rel=&quot;noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/2JuzUlM6.png&quot; alt=&quot;page size&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/2669i5eM.png&quot; rel=&quot;noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/2669i5eM.png&quot; alt=&quot;result&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h3&gt;Question&lt;/h3&gt;&#xA;&lt;p&gt;How to solve this? Couldn&#x27;t find an answer here, in books or on the web for days. I&#x27;m using current TexWorks from MikTeX, compiling with pdftex.&lt;/p&gt;&#xA;
  304.        </summary>
  305.    </entry>
  306.    <entry>
  307.        <id>https://tex.stackexchange.com/q/716338</id>
  308.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  309.        <title type="text">Boldface \Delta in EB Garamond</title>
  310.            <category scheme="https://tex.stackexchange.com/tags" term="ebgaramond" />
  311.            <category scheme="https://tex.stackexchange.com/tags" term="boldsymbol" />
  312.        <author>
  313.            <name>dicemaster666</name>
  314.            <uri>https://tex.stackexchange.com/users/316535</uri>
  315.        </author>
  316.        <link rel="alternate" href="https://tex.stackexchange.com/questions/716338/boldface-delta-in-eb-garamond" />
  317.        <published>2024-04-24T06:56:09Z</published>
  318.        <updated>2024-04-26T07:11:31Z</updated>
  319.        <summary type="html">
  320.            &lt;p&gt;I am trying to produce a boldface &lt;code&gt;\Delta&lt;/code&gt; symbol. When using the normal font Computer Modern, I can simply use &lt;code&gt;\mathbf{\Delta}&lt;/code&gt; which produced the right output. But in a document, I have to use the EB Garamond font. In this setup, the command &lt;code&gt;\mathbf{\Delta}&lt;/code&gt; just outputs a normal &lt;code&gt;\Delta&lt;/code&gt;. What can I do to remedy this situation?&lt;/p&gt;&#xA;&lt;p&gt;Many thanks in advance for your help !&lt;/p&gt;&#xA;&lt;p&gt;I suppose the EB Garamond font doesn&#x27;t support boldface Greek symbols. However, I am convinced there must be a way around that.&lt;/p&gt;&#xA;
  321.        </summary>
  322.    </entry>
  323.    <entry>
  324.        <id>https://tex.stackexchange.com/q/715946</id>
  325.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  326.        <title type="text">remove comma after author name in biblatex &#x2B; biber with style=authoryear [duplicate]</title>
  327.            <category scheme="https://tex.stackexchange.com/tags" term="biblatex" />
  328.            <category scheme="https://tex.stackexchange.com/tags" term="spacing" />
  329.            <category scheme="https://tex.stackexchange.com/tags" term="bibliographies" />
  330.            <category scheme="https://tex.stackexchange.com/tags" term="punctuation" />
  331.        <author>
  332.            <name>Fabio</name>
  333.            <uri>https://tex.stackexchange.com/users/169260</uri>
  334.        </author>
  335.        <link rel="alternate" href="https://tex.stackexchange.com/questions/715946/remove-comma-after-author-name-in-biblatex-biber-with-style-authoryear" />
  336.        <published>2024-04-19T10:08:57Z</published>
  337.        <updated>2024-04-26T09:27:23Z</updated>
  338.        <summary type="html">
  339.            &lt;p&gt;To adhere to the directives of the journal (IJAM) where I would like to submit a paper I am tweaking the &lt;code&gt;authoryear&lt;/code&gt; style. I found solutions for many problems, but still I lack of some details.&#xA;Here is the correct reference:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;Stewart R.B., Rouse W.R., 1976. A simple method for determining the evaporation from shallow lakes and ponds. Water Resources Research, 12 (4): 623-628.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;while, the ones I got until now are different:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;Stewart, R. B., Rouse, W. R., 1976. A simple method for determining the evaporation from shallow lakes and ponds. Water Resources Research, 12 (4): 623-628.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;So, I should remove spaces between the initials and remove the commas after the surnames.&#xA;Any help will be appreciated!&lt;/p&gt;&#xA;
  340.        </summary>
  341.    </entry>
  342.    <entry>
  343.        <id>https://tex.stackexchange.com/q/715887</id>
  344.        <re:rank scheme="https://tex.stackexchange.com">4</re:rank>
  345.        <title type="text">Moment of force</title>
  346.            <category scheme="https://tex.stackexchange.com/tags" term="tikz-pgf" />
  347.        <author>
  348.            <name>Dimitris</name>
  349.            <uri>https://tex.stackexchange.com/users/81162</uri>
  350.        </author>
  351.        <link rel="alternate" href="https://tex.stackexchange.com/questions/715887/moment-of-force" />
  352.        <published>2024-04-18T15:14:43Z</published>
  353.        <updated>2024-04-26T07:08:55Z</updated>
  354.        <summary type="html">
  355.            &lt;p&gt;I googled a lot but I did not find anything relevant.&#xA;How to create in Tikz the following figure?&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://fr.wikipedia.org/wiki/Moment_d%27une_force#/media/Fichier:Momento_de_uma_for%C3%A7a..png&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://fr.wikipedia.org/wiki/Moment_d%27une_force#/media/Fichier:Momento_de_uma_for%C3%A7a..png&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Here is what I did so far.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{standalone}&#xA;\usepackage{tikz}&#xA;\usetikzlibrary{calc}&#xA;&#xA;\begin{document}&#xA;&#xA;\begin{tikzpicture}&#xA;&#xA;    % Define angle and force magnitude&#xA;    \def\angle{70} % Angle in degrees&#xA;    \def\Fnorm{3} % Magnitude of the force vector&#xA;&#xA;    % Define coordinates&#xA;    \coordinate (O) at (0,0); % Origin&#xA;    \coordinate (P) at (1,1); % tail of force &#xA;    \coordinate (F) at ({1 &#x2B; \Fnorm * cos(\angle)}, {1 &#x2B; \Fnorm * sin(\angle)}); % Force head&#xA;% Calculate coordinates for point Q&#xA;\coordinate (Q) at ({1 &#x2B; 1.2*cos(\angle)}, {1 &#x2B; 1.2*sin(\angle)});&#xA;&#xA;    % Draw the force vector&#xA;    \draw[-latex, thick, blue] (P) -- (F) node[midway, right] {$\vec{F}$};&#xA;            &#xA;%      Draw position vectors&#xA;    \draw[-latex, thick, red] (O) -- (P) node[midway, right] {$\vec{r}$};&#xA;        \draw[-latex, thick, orange] (O) -- (Q) node[midway, left] {$\vec{r&#x27;}$};&#xA;    &#xA;        \fill (Q) circle[radius=1pt] node[  left] {$Q$};&#xA;        &#xA;                \fill (P) circle[radius=1pt] node[below right] {$P$};&#xA;&#xA;        \fill (O) circle[radius=1pt] node[ below] {$O$}; % origin&#xA;&#xA;\end{tikzpicture}&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.sstatic.net/Q26bemnZ.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.sstatic.net/Q26bemnZ.png&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;How can I get easily the projections along the direction of vector OP and normal to it, the moment arm, and the curly vector representing the moment vector?&lt;/p&gt;&#xA;&lt;p&gt;Thank you very much for any help.&lt;/p&gt;&#xA;
  356.        </summary>
  357.    </entry>
  358.    <entry>
  359.        <id>https://tex.stackexchange.com/q/709329</id>
  360.        <re:rank scheme="https://tex.stackexchange.com">1</re:rank>
  361.        <title type="text">Space between parts and indices in KOMA script (in the TOC)</title>
  362.            <category scheme="https://tex.stackexchange.com/tags" term="table-of-contents" />
  363.            <category scheme="https://tex.stackexchange.com/tags" term="koma-script" />
  364.        <author>
  365.            <name>Pygmalion</name>
  366.            <uri>https://tex.stackexchange.com/users/3450</uri>
  367.        </author>
  368.        <link rel="alternate" href="https://tex.stackexchange.com/questions/709329/space-between-parts-and-indices-in-koma-script-in-the-toc" />
  369.        <published>2024-02-11T20:37:19Z</published>
  370.        <updated>2024-04-26T07:57:51Z</updated>
  371.        <summary type="html">
  372.            &lt;p&gt;Consider the following code:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{scrbook}&#xA;&#xA;\begin{document}&#xA;&#xA;\frontmatter&#xA;\tableofcontents&#xA;&#xA;\mainmatter&#xA;&#xA;\chapter{Introduction}&#xA;&#xA;\part{A}&#xA;\chapter{First}&#xA;\chapter{Second}&#xA;\chapter{Third}&#xA;&#xA;\part{B}&#xA;\chapter{First}&#xA;\chapter{Second}&#xA;\chapter{Third}&#xA;&#xA;\appendix&#xA;&#xA;\chapter{Appendix}&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;As expected, there is a lot of space between Introduction and Part I, as Introduction does not belong to Part I.&lt;/p&gt;&#xA;&lt;p&gt;However, there is little space between Part II and the Appendix, even though Appendix does not belong to Part II.&lt;/p&gt;&#xA;&lt;p&gt;Is it possible to make the space between Part II and Appendix as large as the space between Introduction and Part I?&lt;/p&gt;&#xA;&lt;p&gt;I know I can do this manually &lt;a href=&quot;https://tex.stackexchange.com/questions/156271/space-between-conclusion-and-appendices-in-toc&quot;&gt;Space between conclusion and appendices in ToC&lt;/a&gt;, but I need to guess the correct spacing.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.stack.imgur.com/tBn6v.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/tBn6v.png&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;
  373.        </summary>
  374.    </entry>
  375.    <entry>
  376.        <id>https://tex.stackexchange.com/q/702462</id>
  377.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  378.        <title type="text">Adjust the margins of a book document class</title>
  379.            <category scheme="https://tex.stackexchange.com/tags" term="margins" />
  380.            <category scheme="https://tex.stackexchange.com/tags" term="book-class" />
  381.            <category scheme="https://tex.stackexchange.com/tags" term="single-sided" />
  382.        <author>
  383.            <name>b.als</name>
  384.            <uri>https://tex.stackexchange.com/users/304420</uri>
  385.        </author>
  386.        <link rel="alternate" href="https://tex.stackexchange.com/questions/702462/adjust-the-margins-of-a-book-document-class" />
  387.        <published>2023-11-27T17:04:23Z</published>
  388.        <updated>2024-04-26T05:09:16Z</updated>
  389.        <summary type="html">
  390.            &lt;p&gt;I used to use this&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass[a4paper, 12pt, oneside, openany]{book}&#xA;\usepackage{setspace}&#xA;\onehalfspacing&#xA;\usepackage{geometry}&#xA;\geometry{&#xA;   paperwidth=210mm, paperheight=297mm,&#xA;   left=35mm, right=35mm, top=25mm, bottom=25mm&#xA;}&#xA;\parskip=12pt&#xA;\parindent=0pt&#xA;\usepackage{float}&#xA;\usepackage{datetime}&#xA;\newdateformat{monthyeardate}{%&#xA;  \monthname[\THEMONTH], \THEYEAR}&#xA;\usepackage{appendix}&#xA;%\usepackage{tabularx}&#xA;\usepackage{tabularray}&#xA;\UseTblrLibrary{booktabs, siunitx}&#xA;\usepackage{ makecell}&#xA;&#xA;%LONG TABLE FEATURES&#xA;\DefTblrTemplate{contfoot-text}{normal}{} \SetTblrTemplate{contfoot-text}{normal} &#xA;%%%%%%%%%%%% CAPTION %%%%%%%%%%%%%%%%%&#xA;\usepackage{caption}&#xA;\captionsetup{labelfont=bf}&#xA;\RequirePackage[labelfont=bf, labelsep=space]{caption}&#xA;&#xA;\usepackage[justification=centering]{caption}&#xA;\NewTblrTheme{captionof}%   % &amp;lt;---&#xA;{\DefTblrTemplate{caption}{default}%&#xA;    {\addtocounter{table}{-1}%&#xA;     \captionof{table}{\InsertTblrText{caption}}%&#xA;    }&#xA; \DefTblrTemplate{capcont}{default}%&#xA;    {\addtocounter{table}{-1}%&#xA;     \captionof{table}{\InsertTblrText{caption} &amp;quot;continue...&amp;quot;}&#xA;    }%&#xA;}&#xA;%%%%%%%%%%%%%%%&#xA;\usepackage{adjustbox}&#xA;\usepackage{longtable}&#xA;\usepackage[utf8]{inputenc}&#xA;\usepackage[T1]{fontenc}&#xA;\usepackage{amsmath}&#xA;\usepackage{mathptmx}&#xA;\usepackage{mathtools}&#xA;\usepackage{subcaption}&#xA;\usepackage{graphicx}&#xA;&#xA;\usepackage{hyperref}&#xA;&#xA;%\geometry{margin=2cm}&#xA;\usepackage{fancyhdr}&#xA;\fancyhf{}&#xA;\cfoot{\thepage}&#xA;\renewcommand{\headrulewidth}{0pt}&#xA;\setcounter{secnumdepth}{4}&#xA;\pagestyle{plain}&#xA;\usepackage{emptypage}&#xA;&#xA;\renewcommand{\chaptername}{}&#xA;\usepackage{titlesec} &#xA;\titleformat{\chapter}[display]&#xA;  {\bfseries\Large}&#xA;  {\chaptername~\filleft\bfseries\fontsize{30}{00}\selectfont\thechapter}&#xA;  {14pt}&#xA;  {\vspace{-2em}\filleft\Large}&#xA;  [\vspace{0.5em}\titlerule]&#xA;&#xA;\titleformat{\section}&#xA;  {\bfseries\large}&#xA;  {\thesection}{1em}{}[\vspace{-1.5em}]&#xA;&#xA;\titleformat{\subsection}&#xA;  {\bfseries\normalsize}&#xA;  {\thesubsection}{1em}{}[\vspace{-1.5em}]&#xA;&#xA;\titleformat{\subsubsection}&#xA;  {\bfseries\normalsize}&#xA;  {\thesubsubsection}{1em}{}[\vspace{-1.5em}]&#xA;&#xA;\graphicspath{figure/}&#xA;\usepackage{array}&#xA;\renewcommand*{\arraystretch}{0.6}&#xA;\usepackage[nottoc]{tocbibind}&#xA;\usepackage{glossaries}&#xA;\usepackage{enumitem}&#xA;\usepackage{multirow}&#xA;\usepackage{ragged2e}&#xA;\usepackage{blindtext}&#xA;\renewcommand{\bibname}{REFERENCES}&#xA;\usepackage{setspace}&#xA;\usepackage{titlesec}&#xA;\newcommand*{\justifyheading}{\raggedleft}&#xA;&#xA;&#xA;\include{dedication}&#xA;\pagenumbering{roman}&#xA;\usepackage{marginnote}&#xA;\renewcommand*\contentsname{\null\hfill {TABLE OF CONTENTS}} &#xA;\usepackage{tocbibind}&#xA;&#xA;%\renewcommand\thechapter{\arabic{chapter}}&#xA;\let\oldaddcontentsline\addcontentsline&#xA;\newcommand{\ADDCONTENTSLINE}[3]{%&#xA;  \oldaddcontentsline{#1}{#2}{\MakeUppercase{#3}}%&#xA;}&#xA;\newcommand{\CAPinToC}{\let\addcontentsline\ADDCONTENTSLINE}&#xA;\newcommand{\noCAPinToC}{\let\addcontentsline\oldaddcontentsline}&#xA;\let\cleardoublepage=\clearpage %remove blank page&#xA;&#xA;\usepackage{nomencl}%%%% LIST OF SYMBOLS&#xA;\makenomenclature&#xA;\begin{document}&#xA;&#xA;\maketitle&#xA;&#xA;\chapter{INTRODUCTION}&#xA;\section{section one} the text starts from here. &#xA;\section{section tow} the text starts from here.&#xA;\section{section three} the text starts from here.&#xA;\chapter{OVERVIEW}&#xA;\section{section one} the text starts from here. &#xA;\section{section tow} the text starts from here.&#xA;\section{section three} the text starts from here.&#xA;\end{document}&#xA;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;to adjust the margins of my thesis, unfortunately, the margins I got are as shown&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.stack.imgur.com/hjqsB.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/hjqsB.png&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;How can I adjust the margins of my document as shown in the code above? By the way, I tried to use this one too &lt;code&gt;\usepackage[hmargin=3.5cm,vmargin=2.5cm]{geometry}&lt;/code&gt;&lt;/p&gt;&#xA;
  391.        </summary>
  392.    </entry>
  393.    <entry>
  394.        <id>https://tex.stackexchange.com/q/698488</id>
  395.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  396.        <title type="text">Persistent Installation Failure of TeX Live on Windows 11</title>
  397.            <category scheme="https://tex.stackexchange.com/tags" term="texlive" />
  398.            <category scheme="https://tex.stackexchange.com/tags" term="installing" />
  399.            <category scheme="https://tex.stackexchange.com/tags" term="windows" />
  400.            <category scheme="https://tex.stackexchange.com/tags" term="texmf" />
  401.        <author>
  402.            <name>HarryB</name>
  403.            <uri>https://tex.stackexchange.com/users/305960</uri>
  404.        </author>
  405.        <link rel="alternate" href="https://tex.stackexchange.com/questions/698488/persistent-installation-failure-of-tex-live-on-windows-11" />
  406.        <published>2023-10-14T09:55:43Z</published>
  407.        <updated>2024-04-26T04:17:03Z</updated>
  408.        <summary type="html">
  409.            &lt;p&gt;so I&#x27;m having a recurring issue while trying to install TeX Live on my Windows 11 system and am hoping to find some assistance here. A similar issue was had by &#x27;TeX Live Installation Failure on Windows&#x27; though there is no answer and I don&#x27;t understand the comment.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Background&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;So I had TeX Live, as a physics/maths student it&#x27;s like part of my everyday writing out my assignments, and I use markdown Mathjax for my notes. While making a R Markdown Stats Assignment, I was having issues knitting to PDF with TeX Live, so I updated the packages with the terminal, still had issues to I knitted to html instead. But when I went back to VSCode for LaTeX, I couldn&#x27;t make it compile, I was encountering persistent issues primarily related to &lt;code&gt;l3backend-pdftex.def&lt;/code&gt; with errors such as &amp;quot;Undefined control sequence&amp;quot; and issues with macro parameter characters and issues with an update or package inconsistency in  my TeX Live distribution.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Issue Description&lt;/strong&gt;:&lt;/p&gt;&#xA;&lt;p&gt;So I decided to reinstall. I couldn&#x27;t find the program in the control panel, so I deleted the file in C, and checked there wasn&#x27;t anything Tex-related in PATH in the Environment Variables in System Properties. Then I rebooted. I downloaded &lt;code&gt;install-tl-windows (1).exe&lt;/code&gt; from the website, (1) because I had it before from last time (deleted now). During the installation of TeX Live, the process consistently fails with error messages related to permission denial and an inability to create certain files (e.g., luaharfbuzz.pdf, pubring.gpg). The log suggests that tar is unable to create these files due to permission issues. However I run the executable as an administrator. Screenshots are attached at the end.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Error Messages&lt;/strong&gt;:&#xA;Some of the notable error messages include:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;tar: Could not create file texmf- dist/doc/luatex/base/graphics/luaharfbuzz.pdf: Permission denied&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;tar: Could not create file tlpkg/gpg/pubring.gpg: Permission denied&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;TLPDB: :_install_data: untar failed for https://mirror.aarnet.edu.au/pub/CTAN/systems/texlive/tlnet/archive/luatex.doc.tar.xz&lt;/code&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;strong&gt;Troubleshooting Steps Taken&lt;/strong&gt;:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Adjusting Permissions: I have attempted to resolve the permission issues by running the installer as an administrator, which changed nothing.&lt;/li&gt;&#xA;&lt;li&gt;Safe Mode Installation: Tried installing TeX Live in Safe Mode, but encountered network issues due to the seeming lack of internet access in Safe Mode lol.&lt;/li&gt;&#xA;&lt;li&gt;Changing Code Pages: I modified the system locale (code page settings for non-Unicode programs) and attempted the installation again, without success.&lt;/li&gt;&#xA;&lt;li&gt;Reinstallation Attempts: I&#x27;ve tried to reinstall TeX Live multiple times, ensuring that any potentially conflicting older versions were removed in C and checking that there wasn&#x27;t anything TeX related in PATH again beforehand.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;&lt;strong&gt;System Information&lt;/strong&gt;:&#xA;Operating System: Windows 11&#xA;Installation Path: C:/texlive/2023&#xA;Installer Version: install-tl-20231013&lt;/p&gt;&#xA;&lt;p&gt;I am attaching screenshots from the installation process to provide a clearer overview of the encountered issues.&lt;/p&gt;&#xA;&lt;p&gt;Apologies if something similar has been resolved before, and I would appreciate guidance to that because I don&#x27;t really know what I&#x27;m doing - I&#x27;m a physics student mostly so I have just a little bit of an idea about everything.&lt;/p&gt;&#xA;&lt;p&gt;Any guidance or suggestions on how to successfully install TeX Live without encountering these issues would be immensely appreciated. Thank you in advance for your time and assistance.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.stack.imgur.com/DLLxM.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/DLLxM.png&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;
  410.        </summary>
  411.    </entry>
  412.    <entry>
  413.        <id>https://tex.stackexchange.com/q/694768</id>
  414.        <re:rank scheme="https://tex.stackexchange.com">1</re:rank>
  415.        <title type="text">The result of \sTrue is drawn with left margin in struktex structured chart</title>
  416.            <category scheme="https://tex.stackexchange.com/tags" term="miktex" />
  417.            <category scheme="https://tex.stackexchange.com/tags" term="struktex" />
  418.        <author>
  419.            <name>Z.J</name>
  420.            <uri>https://tex.stackexchange.com/users/239148</uri>
  421.        </author>
  422.        <link rel="alternate" href="https://tex.stackexchange.com/questions/694768/the-result-of-strue-is-drawn-with-left-margin-in-struktex-structured-chart" />
  423.        <published>2023-08-30T17:28:29Z</published>
  424.        <updated>2024-04-26T09:06:32Z</updated>
  425.        <summary type="html">
  426.            &lt;p&gt;I am using \usepackage{struktex} to draw structure charts. Below you see one of my examples. In my case the result of \sTrue is drawn with a very large left margin an the result of \sFalse with a very large right margin. How can i align the resuls on there left respectively right border?&lt;/p&gt;&#xA;&lt;p&gt;\begin{struktogramm}(80,50)&#xA;\ifthenelse[15]{3}{3}{condition}{\footnotesize{\sTrue}}{\footnotesize{\sFalse}}&#xA;\assign[15]{\footnotesize{Block 1}}&#xA;\change&#xA;\assign[15]{\footnotesize{Block 2}}&#xA;\ifend&lt;/p&gt;&#xA;&lt;p&gt;\end{struktogramm}&lt;/p&gt;&#xA;
  427.        </summary>
  428.    </entry>
  429.    <entry>
  430.        <id>https://tex.stackexchange.com/q/692302</id>
  431.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  432.        <title type="text">Table placement issue: cannot get the table within mdframed to center horizontally on page</title>
  433.            <category scheme="https://tex.stackexchange.com/tags" term="tables" />
  434.            <category scheme="https://tex.stackexchange.com/tags" term="horizontal-alignment" />
  435.            <category scheme="https://tex.stackexchange.com/tags" term="mdframed" />
  436.        <author>
  437.            <name>William Yeakel</name>
  438.            <uri>https://tex.stackexchange.com/users/301174</uri>
  439.        </author>
  440.        <link rel="alternate" href="https://tex.stackexchange.com/questions/692302/table-placement-issue-cannot-get-the-table-within-mdframed-to-center-horizontal" />
  441.        <published>2023-07-29T23:05:18Z</published>
  442.        <updated>2024-04-26T08:01:00Z</updated>
  443.        <summary type="html">
  444.            &lt;pre&gt;&lt;code&gt;\begin{center}&#xA;\begin{mdframed}[userdefinedwidth= 0.8\textwidth, innerbottommargin= 10]&#xA;    \begin{table}[H]&#xA;    \centering&#xA;    \def\arraystretch{1.5}%&#xA;        \begin{tabular}{|c|c|}&#xA;            \hline&#xA;            \rowcolor{gray!20} \textbf{Row operations on I} &amp;amp; \textbf{Row operations on E} \\&#xA;            \rowcolor{gray!20} \textbf{producing E} &amp;amp; \textbf{producing I} \\&#xA;            \hline&#xA;            Exchange row $i$ with $j$ &amp;amp; Exchange row $j$ with $i$ \\&#xA;            \hline&#xA;            Add $c$ times row $i$ to row $j$ &amp;amp; Add ${-c}$ times row $i$ to row $j$ \\&#xA;            \hline&#xA;            Multiply row $i$ by $c \neq 0$ &amp;amp; Multiply row $i$ by $\frac{1}{c}$ \\&#xA;            \hline &#xA;        \end{tabular}&#xA;    \end{table}&#xA;\end{mdframed}&#xA;\end{center}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;
  445.        </summary>
  446.    </entry>
  447.    <entry>
  448.        <id>https://tex.stackexchange.com/q/605775</id>
  449.        <re:rank scheme="https://tex.stackexchange.com">1</re:rank>
  450.        <title type="text">\makeglossaries not working because of Github?</title>
  451.            <category scheme="https://tex.stackexchange.com/tags" term="errors" />
  452.            <category scheme="https://tex.stackexchange.com/tags" term="pdftex" />
  453.            <category scheme="https://tex.stackexchange.com/tags" term="glossaries" />
  454.            <category scheme="https://tex.stackexchange.com/tags" term="git" />
  455.        <author>
  456.            <name>user244717</name>
  457.            <uri>https://tex.stackexchange.com/users/244717</uri>
  458.        </author>
  459.        <link rel="alternate" href="https://tex.stackexchange.com/questions/605775/makeglossaries-not-working-because-of-github" />
  460.        <published>2021-07-20T16:54:16Z</published>
  461.        <updated>2024-04-26T10:04:05Z</updated>
  462.        <summary type="html">
  463.            &lt;p&gt;Completely new to LaTeX environment. So I&#x27;m using TexMaker for my Masters thesis. I thought I set it up correctly but this issue keeps cropping up.&lt;/p&gt;&#xA;&lt;p&gt;First, there is one instance if when I use &lt;code&gt;\gls{example}&lt;/code&gt; and then compile using quick build that it gives me the error&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;! Package glossaries Error: Glossary entry `{example}&#x27; has not been defined.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;The funny thing is that it has been defined and has been used called multiple time before and after alongside newly defined abbreviations. It works fine when I comment this specific call.&lt;/p&gt;&#xA;&lt;p&gt;So, I thought maybe I would have to run the &lt;code&gt;makeglossaries&lt;/code&gt; user command. But when I do that I get the following error:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;2021/07/20 17:44:28 Rollbar error: empty token&#xA;&#xA;panic: runtime error: invalid memory address or nil pointer dereference [signal 0xc0000005 code=0x0 addr=0x0 pc=0x956a1c] goroutine 1 [running]:&#xA;&#xA;github.com/ActiveState/cli/internal/locale.T(0x1604a9a, 0x15, 0x0, 0x0, 0x0, 0x17a7c80, 0x8) D:/a/cli/cli/internal/locale/locale.go:119 &#x2B;0x5c github.com/ActiveState/cli/internal/language.init() D:/a/cli/cli/internal/language/language.go:69 &#x2B;0x4e&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Now I&#x27;m not sure what it means but a friend set up a Github repository so that I can work remotely. I have not really utilised it for that but did upload just to back up my work. Not sure if that is causing the underlying issue here.&lt;/p&gt;&#xA;&lt;p&gt;Also the whole time &lt;code&gt;\printglossaries&lt;/code&gt; does not update with new abbreviations. I didn&#x27;t mind since I was working on the main body but I think it may be related.&lt;/p&gt;&#xA;&lt;p&gt;Last, the &lt;code&gt;\gls{example}&lt;/code&gt; is inside a &lt;code&gt;\hl{}&lt;/code&gt; call. This didn&#x27;t matter a few days ago when it worked perfectly.&lt;/p&gt;&#xA;&lt;p&gt;Any help would be appreciated.&lt;/p&gt;&#xA;
  464.        </summary>
  465.    </entry>
  466.    <entry>
  467.        <id>https://tex.stackexchange.com/q/491231</id>
  468.        <re:rank scheme="https://tex.stackexchange.com">0</re:rank>
  469.        <title type="text">How can I use toc entries containing spaces for external URL anchors?</title>
  470.            <category scheme="https://tex.stackexchange.com/tags" term="hyperref" />
  471.            <category scheme="https://tex.stackexchange.com/tags" term="pdf" />
  472.        <author>
  473.            <name>Carl Sorensen</name>
  474.            <uri>https://tex.stackexchange.com/users/33265</uri>
  475.        </author>
  476.        <link rel="alternate" href="https://tex.stackexchange.com/questions/491231/how-can-i-use-toc-entries-containing-spaces-for-external-url-anchors" />
  477.        <published>2019-05-16T23:41:07Z</published>
  478.        <updated>2024-04-26T09:02:40Z</updated>
  479.        <summary type="html">
  480.            &lt;p&gt;When the &lt;code&gt;hyperref&lt;/code&gt; package is used, it creates nice anchors that can be used as part of a URL to get to specific locations in the generated PDF file.&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass {book}&#xA;\usepackage{hyperref}&#xA;&#xA;\begin{document}&#xA;&#xA;\tableofcontents*&#xA;&#xA;\chapter {One}&#xA;&#xA;\clearpage&#xA;\chapter {Two}&#xA;&#xA;\clearpage&#xA;\chapter {Chapter Three}&#xA;&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;When the resultant PDF is placed in a directory that a webserver can reach, the URL &lt;a href=&quot;https://et.byu.edu/~sorensen/Deleteme.pdf#One&quot; rel=&quot;nofollow noreferrer&quot;&gt;with the anchor #One&lt;/a&gt; leads to the beginning of Chapter One, but the URL &lt;a href=&quot;https://et.byu.edu/~sorensen/Deleteme.pdf#Chapter%20Three&quot; rel=&quot;nofollow noreferrer&quot;&gt;with the anchor #Chapter%20Three&lt;/a&gt; leads to the beginning of the PDF file.&lt;/p&gt;&#xA;&#xA;&lt;p&gt;How can I make an external URL that is anchored to Chapter Three?&lt;/p&gt;&#xA;
  481.        </summary>
  482.    </entry>
  483.    <entry>
  484.        <id>https://tex.stackexchange.com/q/413806</id>
  485.        <re:rank scheme="https://tex.stackexchange.com">4</re:rank>
  486.        <title type="text">Fancy box around equation in align environment</title>
  487.            <category scheme="https://tex.stackexchange.com/tags" term="align" />
  488.            <category scheme="https://tex.stackexchange.com/tags" term="mathtools" />
  489.            <category scheme="https://tex.stackexchange.com/tags" term="empheq" />
  490.        <author>
  491.            <name>&#x26A;d&#x26A;&#x259;t str&#x259;&#x28A;l&#x259;</name>
  492.            <uri>https://tex.stackexchange.com/users/284446</uri>
  493.        </author>
  494.        <link rel="alternate" href="https://tex.stackexchange.com/questions/413806/fancy-box-around-equation-in-align-environment" />
  495.        <published>2018-02-05T15:05:54Z</published>
  496.        <updated>2024-04-26T06:49:58Z</updated>
  497.        <summary type="html">
  498.            &lt;p&gt;I am aware of both &lt;a href=&quot;https://tex.stackexchange.com/questions/20575/attractive-boxed-equations&quot;&gt;this&lt;/a&gt; and &lt;a href=&quot;https://tex.stackexchange.com/questions/301520/box-part-of-equation-in-align-environment&quot;&gt;this&lt;/a&gt; questions. However, can we combine them? What I mean by this is can I enclose in a fancy box &#xE0; la &lt;code&gt;empheq&lt;/code&gt; part of an equation in an align environment?&lt;/p&gt;&#xA;&#xA;&lt;p&gt;(I believe there is no need for a MWE since the question is simple and has MWEs in both linked questions; however if you need a MWE comment and I&#x27;ll add one)&lt;/p&gt;&#xA;&#xA;&lt;p&gt;EDIT: Adding MWE &lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass{minimal}&#xA;&#xA;\usepackage{color}&#xA;\definecolor{myblue}{rgb}{.8, .8, 1}&#xA;\usepackage{empheq}&#xA;\usepackage{amsmath,mathtools}&#xA;&#xA;\newlength\mytemplen&#xA;\newsavebox\mytempbox&#xA;&#xA;\makeatletter&#xA;\newcommand\mybluebox{%&#xA;\@ifnextchar[%]&#xA;{\@mybluebox}%&#xA;{\@mybluebox[0pt]}}&#xA;&#xA;\def\@mybluebox[#1]{%&#xA;\@ifnextchar[%]&#xA;{\@@mybluebox[#1]}%&#xA;{\@@mybluebox[#1][0pt]}}&#xA;&#xA;\def\@@mybluebox[#1][#2]#3{&#xA;\sbox\mytempbox{#3}%&#xA;\mytemplen\ht\mytempbox&#xA;\advance\mytemplen #1\relax&#xA;\ht\mytempbox\mytemplen&#xA;\mytemplen\dp\mytempbox&#xA;\advance\mytemplen #2\relax&#xA;\dp\mytempbox\mytemplen&#xA;\colorbox{myblue}{\hspace{1em}\usebox{\mytempbox}\hspace{1em}}}&#xA;&#xA;\makeatother&#xA;&#xA;\begin{document}&#xA;\begin{align}&#xA;\Aboxed{\text{stuff} &amp;amp;= \text{other stuff}}&#xA;\end{align}&#xA;\begin{empheq}[box={\mybluebox[5pt]}]{equation*}&#xA;\text{stuff} = \text{other stuff}&#xA;\end{empheq}&#xA;Now, both?&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;Thanks, in before&lt;/p&gt;&#xA;
  499.        </summary>
  500.    </entry>
  501.    <entry>
  502.        <id>https://tex.stackexchange.com/q/396403</id>
  503.        <re:rank scheme="https://tex.stackexchange.com">1</re:rank>
  504.        <title type="text">problem with Progress bar position</title>
  505.            <category scheme="https://tex.stackexchange.com/tags" term="beamer" />
  506.            <category scheme="https://tex.stackexchange.com/tags" term="beamer-metropolis" />
  507.        <author>
  508.            <name>V.Ajall</name>
  509.            <uri>https://tex.stackexchange.com/users/145720</uri>
  510.        </author>
  511.        <link rel="alternate" href="https://tex.stackexchange.com/questions/396403/problem-with-progress-bar-position" />
  512.        <published>2017-10-16T08:13:59Z</published>
  513.        <updated>2024-04-26T11:42:52Z</updated>
  514.        <summary type="html">
  515.            &lt;p&gt;Here after mixing some codes on internet, I made the desired presentation based on metropolis slides. First problem is I want to have the progress bar to be placed under headline. (Using footline place is somehow ugly and using headline keyword would place the progress bar in top of the slides).&#xA;Also another thing I need is to stop counting the frames both in page number inserted at bottom of page and in the progress bar counter. &#xA;Thanks in advance to whom may help!&lt;/p&gt;&#xA;&#xA;&lt;p&gt;Presentation.tex file&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;\documentclass[10pt]{beamer}&#xA;\usepackage{booktabs}&#xA;\definecolor{DarkTeal}{HTML}{23373b}&#xA;\usetheme[progressbar=frametitle]{metropolis}&#xA;\useoutertheme{sidebar}&#xA;\setbeamercolor{sidebar}{parent=palette primary}&#xA;\makeatletter&#xA;\setbeamertemplate{sidebar canvas \beamer@sidebarside}%&#xA;[vertical shading][top=green,bottom=blue]&#xA;\makeatother&#xA;\setbeamercolor{palette sidebar secondary}{fg=yellow,bg=blue}&#xA;\setbeamercolor{section in sidebar shaded}{fg=red,bg=black}&#xA;\AtBeginSection{&#xA;    \begingroup&#xA;    \setbeamercolor{background canvas}{bg=DarkTeal}&#xA;    \setbeamercolor{normal text}{fg=white}&#xA;    \begin{frame}[plain,noframenumbering]&#xA;    \sectionpage&#xA;    \end{frame}&#xA;    \endgroup&#xA;}&#xA;\setbeamertemplate{footline}[frame number]&#xA;\title{Report}&#xA;\subtitle{Last Part}&#xA;\date{\today}&#xA;\author{V A}&#xA;\institute{Lab}&#xA; %\titlegraphic{\hfill\includegraphics[height=1.5cm]{logo1.png}}&#xA;%\logo{\includegraphics[width = 0.1\textwidth]{logo2.png}}&#xA;\definecolor{lightgr}{rgb}{1 0.7 0.7}&#xA;\makeatletter&#xA;\addtobeamertemplate{footline}{%&#xA;    \color{lightgr}% to color the progressbar&#xA;    \hspace*{-\beamer@leftmargin}%&#xA;    \rule{\beamer@leftmargin}{2pt}%&#xA;    \rlap{\rule{\dimexpr&#xA;            \beamer@startpageofframe\dimexpr&#xA;            \beamer@rightmargin&#x2B;\textwidth\relax/\beamer@endpageofdocument}{1pt}}&#xA;    \vspace{0\baselineskip}&#xA;    {}&#xA;}&#xA;\makeatother&#xA;\begin{document}&#xA;\maketitle&#xA;\begin{frame}{Table of contents}&#xA;  \setbeamertemplate{section in toc}[sections numbered]&#xA;  \tableofcontents[hideallsubsections]&#xA;\end{frame}&#xA;\section{S1}&#xA;\begin{frame}{F1}&#xA;\end{frame}&#xA;\begin{frame}{F2}&#xA;\end{frame}&#xA;\begin{frame}{F3}&#xA;\end{frame}&#xA;\appendix&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;beamerinnerthememetropolis.sty&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;\NeedsTeXFormat{LaTeX2e}&#xA;\ProvidesPackage{beamerinnerthememetropolis}[2017/01/23 Metropolis inner theme]&#xA;\RequirePackage{etoolbox}&#xA;\RequirePackage{keyval}&#xA;\RequirePackage{calc}&#xA;\RequirePackage{pgfopts}&#xA;\RequirePackage{tikz}&#xA;\setbeamertemplate{title page}{&#xA;  \begin{minipage}[b][\paperheight]{\textwidth}&#xA;    \ifx\inserttitlegraphic\@empty\else\usebeamertemplate*{title graphic}\fi&#xA;    \vfill%&#xA;    \ifx\inserttitle\@empty\else\usebeamertemplate*{title}\fi&#xA;    \ifx\insertsubtitle\@empty\else\usebeamertemplate*{subtitle}\fi&#xA;    \usebeamertemplate*{title separator}&#xA;    \ifx\beamer@shortauthor\@empty\else\usebeamertemplate*{author}\fi&#xA;    \ifx\insertdate\@empty\else\usebeamertemplate*{date}\fi&#xA;    \ifx\insertinstitute\@empty\else\usebeamertemplate*{institute}\fi&#xA;    \vfill&#xA;    \vspace*{1mm}&#xA;  \end{minipage}&#xA;}&#xA;\def\maketitle{%&#xA;  \ifbeamer@inframe&#xA;    \titlepage&#xA;  \else&#xA;    \frame[plain,noframenumbering]{\titlepage}&#xA;  \fi&#xA;}&#xA;\def\titlepage{%&#xA;  \usebeamertemplate{title page}&#xA;}&#xA;\setbeamertemplate{title graphic}{&#xA;  \vbox to 0pt {&#xA;    \vspace*{2em}&#xA;    \inserttitlegraphic%&#xA;  }%&#xA;  \nointerlineskip%&#xA;}&#xA;\setbeamertemplate{title}{&#xA;  \raggedright%&#xA;  \linespread{1.0}%&#xA;  \inserttitle%&#xA;  \par%&#xA;  \vspace*{0.5em}&#xA;}&#xA;\setbeamertemplate{subtitle}{&#xA;  \raggedright%&#xA;  \insertsubtitle%&#xA;  \par%&#xA;  \vspace*{0.5em}&#xA;}&#xA;\newlength{\metropolis@titleseparator@linewidth}&#xA;\setlength{\metropolis@titleseparator@linewidth}{0.4pt}&#xA;\setbeamertemplate{title separator}{&#xA;  \begin{tikzpicture}&#xA;    \fill[fg] (0,0) rectangle (\textwidth, \metropolis@titleseparator@linewidth);&#xA;  \end{tikzpicture}%&#xA;  \par%&#xA;}&#xA;\setbeamertemplate{author}{&#xA;  \vspace*{2em}&#xA;  \insertauthor%&#xA;  \par%&#xA;  \vspace*{0.25em}&#xA;}&#xA;\setbeamertemplate{date}{&#xA;  \insertdate%&#xA;  \par%&#xA;}&#xA;\setbeamertemplate{institute}{&#xA;  \vspace*{3mm}&#xA;  \insertinstitute%&#xA;  \par%&#xA;}&#xA;&#xA;\setbeamertemplate{subsection page}{%&#xA;  \usebeamertemplate*{section page}&#xA;}&#xA;\newcommand{\metropolis@disablesubsectionpage}{&#xA;  \AtBeginSubsection{&#xA;    % intentionally empty&#xA;  }&#xA;}&#xA;\newcommand{\metropolis@enablesubsectionpage}{&#xA;  \AtBeginSubsection{&#xA;    \ifbeamer@inframe&#xA;      \subsectionpage&#xA;    \else&#xA;      \frame[plain,c,noframenumbering]{\subsectionpage}&#xA;    \fi&#xA;  }&#xA;}&#xA;\newlength{\metropolis@progressonsectionpage}&#xA;\newlength{\metropolis@progressonsectionpage@linewidth}&#xA;\setlength{\metropolis@progressonsectionpage@linewidth}{0.4pt}&#xA;\setbeamertemplate{progress bar in section page}{&#xA;  \setlength{\metropolis@progressonsectionpage}{%&#xA;    \textwidth * \ratio{\insertframenumber pt}{\inserttotalframenumber pt}%&#xA;  }%&#xA;  \begin{tikzpicture}&#xA;    \fill[bg] (0,0) rectangle (\textwidth, \metropolis@progressonsectionpage@linewidth);&#xA;    \fill[fg] (0,0) rectangle (\metropolis@progressonsectionpage, \metropolis@progressonsectionpage@linewidth);&#xA;  \end{tikzpicture}%&#xA;}&#xA;\def\inserttotalframenumber{100}&#xA;\newlength{\metropolis@blocksep}&#xA;\newlength{\metropolis@blockadjust}&#xA;\setlength{\metropolis@blocksep}{0.75ex}&#xA;\setlength{\metropolis@blockadjust}{0.25ex}&#xA;\providecommand{\metropolis@strut}{%&#xA;  \vphantom{ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz()}%&#xA;}&#xA;\newcommand{\metropolis@block}[1]{&#xA;  \par\vskip\medskipamount%&#xA;  \setlength{\parskip}{0pt}&#xA;  \ifbeamercolorempty[bg]{block title#1}{%&#xA;    \begin{beamercolorbox}[rightskip=0pt plus 4em]{block title#1}}{%&#xA;  \ifbeamercolorempty[bg]{block title}{%&#xA;    \begin{beamercolorbox}[rightskip=0pt plus 4em]{block title#1}%&#xA;  }%&#xA;  {%&#xA;    \begin{beamercolorbox}[&#xA;      sep=\dimexpr\metropolis@blocksep-\metropolis@blockadjust\relax,&#xA;      leftskip=\metropolis@blockadjust,&#xA;      rightskip=\dimexpr\metropolis@blockadjust plus 4em\relax&#xA;    ]{block title#1}%&#xA;  }}%&#xA;      \usebeamerfont*{block title#1}%&#xA;      \metropolis@strut%&#xA;      \insertblocktitle%&#xA;      \metropolis@strut%&#xA;  \end{beamercolorbox}%&#xA;  \nointerlineskip%&#xA;  \ifbeamercolorempty[bg]{block body#1}{%&#xA;    \begin{beamercolorbox}[vmode]{block body#1}}{&#xA;  \ifbeamercolorempty[bg]{block body}{%&#xA;    \begin{beamercolorbox}[vmode]{block body#1}%&#xA;  }{%&#xA;    \begin{beamercolorbox}[sep=\metropolis@blocksep, vmode]{block body#1}%&#xA;    \vspace{-\metropolis@parskip}&#xA;  }}%&#xA;      \usebeamerfont{block body#1}%&#xA;      \setlength{\parskip}{\metropolis@parskip}%&#xA;}&#xA;\setbeamertemplate{block begin}{\metropolis@block{}}&#xA;\setbeamertemplate{block alerted begin}{\metropolis@block{ alerted}}&#xA;\setbeamertemplate{block example begin}{\metropolis@block{ example}}&#xA;\setbeamertemplate{block end}{\end{beamercolorbox}\vspace*{0.2ex}}&#xA;\setbeamertemplate{block alerted end}{\end{beamercolorbox}\vspace*{0.2ex}}&#xA;\setbeamertemplate{block example end}{\end{beamercolorbox}\vspace*{0.2ex}}&#xA;\setbeamertemplate{itemize items}{\textbullet}&#xA;\setbeamertemplate{caption label separator}{: }&#xA;\setbeamertemplate{caption}[numbered]&#xA;\setbeamertemplate{footnote}{%&#xA;  \parindent 0em\noindent%&#xA;  \raggedright&#xA;  \usebeamercolor{footnote}\hbox to 0.8em{\hfil\insertfootnotemark}\insertfootnotetext\par%&#xA;}&#xA;\newlength{\metropolis@parskip}&#xA;\setlength{\metropolis@parskip}{0.5em}&#xA;\setlength{\parskip}{\metropolis@parskip}&#xA;\linespread{1.15}&#xA;\define@key{beamerframe}{c}[true]{% centered&#xA;  \beamer@frametopskip=0pt plus 1fill\relax%&#xA;  \beamer@framebottomskip=0pt plus 1fill\relax%&#xA;  \beamer@frametopskipautobreak=0pt plus .4\paperheight\relax%&#xA;  \beamer@framebottomskipautobreak=0pt plus .6\paperheight\relax%&#xA;  \def\beamer@initfirstlineunskip{}%&#xA;}&#xA;\providebool{metropolis@standout}&#xA;\define@key{beamerframe}{standout}[true]{%&#xA;  \booltrue{metropolis@standout}&#xA;  \begingroup&#xA;    \setkeys{beamerframe}{c}&#xA;    \setkeys{beamerframe}{noframenumbering}&#xA;    \ifbeamercolorempty[bg]{palette primary}{&#xA;      \setbeamercolor{background}{&#xA;        use=palette primary,&#xA;        bg=-palette primary.fg&#xA;      }&#xA;    }{&#xA;      \setbeamercolor{background}{&#xA;        use=palette primary,&#xA;        bg=palette primary.bg&#xA;      }&#xA;    }&#xA;  \centering&#xA;  \usebeamercolor[fg]{palette primary}&#xA;  \usebeamerfont{standout}&#xA;}&#xA;  \apptocmd{\beamer@reseteecodes}{%&#xA;    \ifbool{metropolis@standout}{&#xA;      \endgroup&#xA;      \boolfalse{metropolis@standout}&#xA;    }{}&#xA;  }{}{}&#xA;\metropolis@inner@setdefaults&#xA;\ProcessPgfPackageOptions{/metropolis/inner}&#xA;\endinput&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;
  516.        </summary>
  517.    </entry>
  518.    <entry>
  519.        <id>https://tex.stackexchange.com/q/42078</id>
  520.        <re:rank scheme="https://tex.stackexchange.com">15</re:rank>
  521.        <title type="text">Typesetting unit-less numbers and number-less units</title>
  522.            <category scheme="https://tex.stackexchange.com/tags" term="siunitx" />
  523.            <category scheme="https://tex.stackexchange.com/tags" term="units" />
  524.        <author>
  525.            <name>Village</name>
  526.            <uri>https://tex.stackexchange.com/users/8918</uri>
  527.        </author>
  528.        <link rel="alternate" href="https://tex.stackexchange.com/questions/42078/typesetting-unit-less-numbers-and-number-less-units" />
  529.        <published>2012-01-24T02:18:13Z</published>
  530.        <updated>2024-04-26T11:33:08Z</updated>
  531.        <summary type="html">
  532.            &lt;p&gt;I am using the &lt;code&gt;siunitx&lt;/code&gt; package to typeset my numbers, but sometimes I find situations in which I have numbers without units (when the units are not nearby) and units without numbers. E.g.:&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;The bird can fly 40 to 50 km per hour.&#xA;&#xA;The data in the table above uses kg.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;What is the prefered way to typeset these?&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;The bird can fly $40$ to $\SI{50}{\kilo\meter\per\hour}$.&#xA;&#xA;The bird can fly \num{40} to \SI{50}{\kilo\meter\per\hour}.&#xA;&#xA;The bird can fly \SI{40}{} to \SI{50}{\kilo\meter\per\hour}.&#xA;&#xA;The data in the table above uses kg.&#xA;&#xA;The data in the table above uses \SI{}{\kilo\gram}.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;If find achieving visual consistency and correctness in the output is more important than having consistent, context-intelligent code.&lt;/p&gt;&#xA;
  533.        </summary>
  534.    </entry>
  535. </feed>

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid Atom 1.0" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.feedvalidator.org/check.cgi?url=http%3A//tex.stackexchange.com/feeds

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda