How to change the bar text label in pgfplots












2















I want to add a cite{} along with each bar value of my pgfplots bars chart. Can I do this?



At the same time, I want to avoid reordering my data.



Currently, my code is similar to the following example:



% Bar charts
% Author: Stefan Kottwitz
% https://www.packtpub.com/hardware-and-creative/latex-cookbook
documentclass[border=10pt]{standalone}
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[title = Contributions per category
at LaTeX-Community.org,
xbar,
y axis line style = { opacity = 0 },
axis x line = none,
tickwidth = 0pt,
enlarge y limits = 0.2,
enlarge x limits = 0.02,
symbolic y coords = {LaTeX, Tools, Distributions, Editors},
nodes near coords,
]
addplot coordinates { (57727,LaTeX) (5672,Tools)
(2193,Distributions) (11106,Editors) };
addplot coordinates { (14320,LaTeX) (1615,Tools)
(560,Distributions) (3075,Editors) };
legend{Topics, Posts}
end{axis}
end{tikzpicture}
end{document}









share|improve this question





























    2















    I want to add a cite{} along with each bar value of my pgfplots bars chart. Can I do this?



    At the same time, I want to avoid reordering my data.



    Currently, my code is similar to the following example:



    % Bar charts
    % Author: Stefan Kottwitz
    % https://www.packtpub.com/hardware-and-creative/latex-cookbook
    documentclass[border=10pt]{standalone}
    usepackage{pgfplots}
    begin{document}
    begin{tikzpicture}
    begin{axis}[title = Contributions per category
    at LaTeX-Community.org,
    xbar,
    y axis line style = { opacity = 0 },
    axis x line = none,
    tickwidth = 0pt,
    enlarge y limits = 0.2,
    enlarge x limits = 0.02,
    symbolic y coords = {LaTeX, Tools, Distributions, Editors},
    nodes near coords,
    ]
    addplot coordinates { (57727,LaTeX) (5672,Tools)
    (2193,Distributions) (11106,Editors) };
    addplot coordinates { (14320,LaTeX) (1615,Tools)
    (560,Distributions) (3075,Editors) };
    legend{Topics, Posts}
    end{axis}
    end{tikzpicture}
    end{document}









    share|improve this question



























      2












      2








      2








      I want to add a cite{} along with each bar value of my pgfplots bars chart. Can I do this?



      At the same time, I want to avoid reordering my data.



      Currently, my code is similar to the following example:



      % Bar charts
      % Author: Stefan Kottwitz
      % https://www.packtpub.com/hardware-and-creative/latex-cookbook
      documentclass[border=10pt]{standalone}
      usepackage{pgfplots}
      begin{document}
      begin{tikzpicture}
      begin{axis}[title = Contributions per category
      at LaTeX-Community.org,
      xbar,
      y axis line style = { opacity = 0 },
      axis x line = none,
      tickwidth = 0pt,
      enlarge y limits = 0.2,
      enlarge x limits = 0.02,
      symbolic y coords = {LaTeX, Tools, Distributions, Editors},
      nodes near coords,
      ]
      addplot coordinates { (57727,LaTeX) (5672,Tools)
      (2193,Distributions) (11106,Editors) };
      addplot coordinates { (14320,LaTeX) (1615,Tools)
      (560,Distributions) (3075,Editors) };
      legend{Topics, Posts}
      end{axis}
      end{tikzpicture}
      end{document}









      share|improve this question
















      I want to add a cite{} along with each bar value of my pgfplots bars chart. Can I do this?



      At the same time, I want to avoid reordering my data.



      Currently, my code is similar to the following example:



      % Bar charts
      % Author: Stefan Kottwitz
      % https://www.packtpub.com/hardware-and-creative/latex-cookbook
      documentclass[border=10pt]{standalone}
      usepackage{pgfplots}
      begin{document}
      begin{tikzpicture}
      begin{axis}[title = Contributions per category
      at LaTeX-Community.org,
      xbar,
      y axis line style = { opacity = 0 },
      axis x line = none,
      tickwidth = 0pt,
      enlarge y limits = 0.2,
      enlarge x limits = 0.02,
      symbolic y coords = {LaTeX, Tools, Distributions, Editors},
      nodes near coords,
      ]
      addplot coordinates { (57727,LaTeX) (5672,Tools)
      (2193,Distributions) (11106,Editors) };
      addplot coordinates { (14320,LaTeX) (1615,Tools)
      (560,Distributions) (3075,Editors) };
      legend{Topics, Posts}
      end{axis}
      end{tikzpicture}
      end{document}






      pgfplots






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 11 hours ago







      jperezmartin

















      asked 15 hours ago









      jperezmartinjperezmartin

      254




      254






















          2 Answers
          2






          active

          oldest

          votes


















          2














          Another method, placing the citation as meta data in the coordinate stream.



          If I guess correctly about your second issue, add y dir=reverse.



          % Based on this:
          % Bar charts
          % Author: Stefan Kottwitz
          % https://www.packtpub.com/hardware-and-creative/latex-cookbook
          documentclass{article}
          usepackage{pgfplots}

          % biblatex not required, just for example
          usepackage{biblatex}
          addbibresource{biblatex-examples.bib}
          begin{document}
          begin{tikzpicture}
          begin{axis}[title = Contributions per category
          at LaTeX-Community.org,
          xbar,
          y axis line style = { opacity = 0 },
          axis x line = none,
          tickwidth = 0pt,
          enlarge y limits = 0.2,
          enlarge x limits = 0.02,
          symbolic y coords = {LaTeX, Tools, Distributions, Editors},
          % state that the meta value is given explicitly, and should not be parsed as a number
          point meta=explicit symbolic,
          % save the x-value in DataX, for use later
          visualization depends on=xasDataX,
          % the argument to nodes near coords defines what is actually printed.
          % first we print the x-value, then the meta information, which
          % is what is given in the brackets in the coordinate stream
          nodes near coords={pgfmathprintnumber{DataX} pgfplotspointmeta},
          % had to add this to get the alignment right
          nodes near coords align=right,
          % flips the direction of the y-axis
          y dir=reverse
          ]
          addplot coordinates {
          (57727,LaTeX) [cite{aksin}]
          (5672,Tools) [cite{angenendt}]
          (2193,Distributions) [cite{bertram}]
          (11106,Editors)
          };
          addplot coordinates {
          (14320,LaTeX)
          (1615,Tools)
          (560,Distributions)
          (3075,Editors)
          };
          legend{Topics, Posts}
          end{axis}
          end{tikzpicture}

          printbibliography
          end{document}


          enter image description here






          share|improve this answer































            2














            Here is a way to add citations. The second point of your question I do not understand.



            documentclass{article}
            usepackage{pgfplots}
            pgfplotsset{compat=1.16,
            name nodes near coords/.style={ % https://tex.stackexchange.com/a/75811/121799
            every node near coord/.append style={
            name=#1-coordindex,
            alias=#1-last,
            },
            },
            name nodes near coords/.default=coordnode}
            begin{document}
            begin{tikzpicture}
            begin{axis}[title = Contributions per category
            at LaTeX-Community.org,
            xbar,
            y axis line style = { opacity = 0 },
            axis x line = none,
            tickwidth = 0pt,
            enlarge y limits = 0.2,
            enlarge x limits = 0.02,
            symbolic y coords = {LaTeX, Tools, Distributions, Editors},
            nodes near coords,name nodes near coords=bn
            ]
            addplot coordinates { (57727,LaTeX) (5672,Tools)
            (2193,Distributions) (11106,Editors) };
            addplot coordinates { (14320,LaTeX) (1615,Tools)
            (560,Distributions) (3075,Editors) };
            legend{Topics, Posts}
            end{axis}
            node[anchor=west] at (bn-1.east){see cite{Witten:2017hdv}};
            end{tikzpicture}

            begin{thebibliography}{9}
            bibitem{Witten:2017hdv}
            E.~Witten,
            %``Symmetry and Emergence,''
            Nature Phys. {bf 14}, 116 (2018)
            doi:10.1038/nphys4348
            [arXiv:1710.01791 [hep-th]].
            %%CITATION = doi:10.1038/nphys4348;%%
            %15 citations counted in INSPIRE as of 16 Jan 2019
            end{thebibliography}
            end{document}


            enter image description here






            share|improve this answer























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "85"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f470420%2fhow-to-change-the-bar-text-label-in-pgfplots%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              Another method, placing the citation as meta data in the coordinate stream.



              If I guess correctly about your second issue, add y dir=reverse.



              % Based on this:
              % Bar charts
              % Author: Stefan Kottwitz
              % https://www.packtpub.com/hardware-and-creative/latex-cookbook
              documentclass{article}
              usepackage{pgfplots}

              % biblatex not required, just for example
              usepackage{biblatex}
              addbibresource{biblatex-examples.bib}
              begin{document}
              begin{tikzpicture}
              begin{axis}[title = Contributions per category
              at LaTeX-Community.org,
              xbar,
              y axis line style = { opacity = 0 },
              axis x line = none,
              tickwidth = 0pt,
              enlarge y limits = 0.2,
              enlarge x limits = 0.02,
              symbolic y coords = {LaTeX, Tools, Distributions, Editors},
              % state that the meta value is given explicitly, and should not be parsed as a number
              point meta=explicit symbolic,
              % save the x-value in DataX, for use later
              visualization depends on=xasDataX,
              % the argument to nodes near coords defines what is actually printed.
              % first we print the x-value, then the meta information, which
              % is what is given in the brackets in the coordinate stream
              nodes near coords={pgfmathprintnumber{DataX} pgfplotspointmeta},
              % had to add this to get the alignment right
              nodes near coords align=right,
              % flips the direction of the y-axis
              y dir=reverse
              ]
              addplot coordinates {
              (57727,LaTeX) [cite{aksin}]
              (5672,Tools) [cite{angenendt}]
              (2193,Distributions) [cite{bertram}]
              (11106,Editors)
              };
              addplot coordinates {
              (14320,LaTeX)
              (1615,Tools)
              (560,Distributions)
              (3075,Editors)
              };
              legend{Topics, Posts}
              end{axis}
              end{tikzpicture}

              printbibliography
              end{document}


              enter image description here






              share|improve this answer




























                2














                Another method, placing the citation as meta data in the coordinate stream.



                If I guess correctly about your second issue, add y dir=reverse.



                % Based on this:
                % Bar charts
                % Author: Stefan Kottwitz
                % https://www.packtpub.com/hardware-and-creative/latex-cookbook
                documentclass{article}
                usepackage{pgfplots}

                % biblatex not required, just for example
                usepackage{biblatex}
                addbibresource{biblatex-examples.bib}
                begin{document}
                begin{tikzpicture}
                begin{axis}[title = Contributions per category
                at LaTeX-Community.org,
                xbar,
                y axis line style = { opacity = 0 },
                axis x line = none,
                tickwidth = 0pt,
                enlarge y limits = 0.2,
                enlarge x limits = 0.02,
                symbolic y coords = {LaTeX, Tools, Distributions, Editors},
                % state that the meta value is given explicitly, and should not be parsed as a number
                point meta=explicit symbolic,
                % save the x-value in DataX, for use later
                visualization depends on=xasDataX,
                % the argument to nodes near coords defines what is actually printed.
                % first we print the x-value, then the meta information, which
                % is what is given in the brackets in the coordinate stream
                nodes near coords={pgfmathprintnumber{DataX} pgfplotspointmeta},
                % had to add this to get the alignment right
                nodes near coords align=right,
                % flips the direction of the y-axis
                y dir=reverse
                ]
                addplot coordinates {
                (57727,LaTeX) [cite{aksin}]
                (5672,Tools) [cite{angenendt}]
                (2193,Distributions) [cite{bertram}]
                (11106,Editors)
                };
                addplot coordinates {
                (14320,LaTeX)
                (1615,Tools)
                (560,Distributions)
                (3075,Editors)
                };
                legend{Topics, Posts}
                end{axis}
                end{tikzpicture}

                printbibliography
                end{document}


                enter image description here






                share|improve this answer


























                  2












                  2








                  2







                  Another method, placing the citation as meta data in the coordinate stream.



                  If I guess correctly about your second issue, add y dir=reverse.



                  % Based on this:
                  % Bar charts
                  % Author: Stefan Kottwitz
                  % https://www.packtpub.com/hardware-and-creative/latex-cookbook
                  documentclass{article}
                  usepackage{pgfplots}

                  % biblatex not required, just for example
                  usepackage{biblatex}
                  addbibresource{biblatex-examples.bib}
                  begin{document}
                  begin{tikzpicture}
                  begin{axis}[title = Contributions per category
                  at LaTeX-Community.org,
                  xbar,
                  y axis line style = { opacity = 0 },
                  axis x line = none,
                  tickwidth = 0pt,
                  enlarge y limits = 0.2,
                  enlarge x limits = 0.02,
                  symbolic y coords = {LaTeX, Tools, Distributions, Editors},
                  % state that the meta value is given explicitly, and should not be parsed as a number
                  point meta=explicit symbolic,
                  % save the x-value in DataX, for use later
                  visualization depends on=xasDataX,
                  % the argument to nodes near coords defines what is actually printed.
                  % first we print the x-value, then the meta information, which
                  % is what is given in the brackets in the coordinate stream
                  nodes near coords={pgfmathprintnumber{DataX} pgfplotspointmeta},
                  % had to add this to get the alignment right
                  nodes near coords align=right,
                  % flips the direction of the y-axis
                  y dir=reverse
                  ]
                  addplot coordinates {
                  (57727,LaTeX) [cite{aksin}]
                  (5672,Tools) [cite{angenendt}]
                  (2193,Distributions) [cite{bertram}]
                  (11106,Editors)
                  };
                  addplot coordinates {
                  (14320,LaTeX)
                  (1615,Tools)
                  (560,Distributions)
                  (3075,Editors)
                  };
                  legend{Topics, Posts}
                  end{axis}
                  end{tikzpicture}

                  printbibliography
                  end{document}


                  enter image description here






                  share|improve this answer













                  Another method, placing the citation as meta data in the coordinate stream.



                  If I guess correctly about your second issue, add y dir=reverse.



                  % Based on this:
                  % Bar charts
                  % Author: Stefan Kottwitz
                  % https://www.packtpub.com/hardware-and-creative/latex-cookbook
                  documentclass{article}
                  usepackage{pgfplots}

                  % biblatex not required, just for example
                  usepackage{biblatex}
                  addbibresource{biblatex-examples.bib}
                  begin{document}
                  begin{tikzpicture}
                  begin{axis}[title = Contributions per category
                  at LaTeX-Community.org,
                  xbar,
                  y axis line style = { opacity = 0 },
                  axis x line = none,
                  tickwidth = 0pt,
                  enlarge y limits = 0.2,
                  enlarge x limits = 0.02,
                  symbolic y coords = {LaTeX, Tools, Distributions, Editors},
                  % state that the meta value is given explicitly, and should not be parsed as a number
                  point meta=explicit symbolic,
                  % save the x-value in DataX, for use later
                  visualization depends on=xasDataX,
                  % the argument to nodes near coords defines what is actually printed.
                  % first we print the x-value, then the meta information, which
                  % is what is given in the brackets in the coordinate stream
                  nodes near coords={pgfmathprintnumber{DataX} pgfplotspointmeta},
                  % had to add this to get the alignment right
                  nodes near coords align=right,
                  % flips the direction of the y-axis
                  y dir=reverse
                  ]
                  addplot coordinates {
                  (57727,LaTeX) [cite{aksin}]
                  (5672,Tools) [cite{angenendt}]
                  (2193,Distributions) [cite{bertram}]
                  (11106,Editors)
                  };
                  addplot coordinates {
                  (14320,LaTeX)
                  (1615,Tools)
                  (560,Distributions)
                  (3075,Editors)
                  };
                  legend{Topics, Posts}
                  end{axis}
                  end{tikzpicture}

                  printbibliography
                  end{document}


                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 12 hours ago









                  Torbjørn T.Torbjørn T.

                  155k13249437




                  155k13249437























                      2














                      Here is a way to add citations. The second point of your question I do not understand.



                      documentclass{article}
                      usepackage{pgfplots}
                      pgfplotsset{compat=1.16,
                      name nodes near coords/.style={ % https://tex.stackexchange.com/a/75811/121799
                      every node near coord/.append style={
                      name=#1-coordindex,
                      alias=#1-last,
                      },
                      },
                      name nodes near coords/.default=coordnode}
                      begin{document}
                      begin{tikzpicture}
                      begin{axis}[title = Contributions per category
                      at LaTeX-Community.org,
                      xbar,
                      y axis line style = { opacity = 0 },
                      axis x line = none,
                      tickwidth = 0pt,
                      enlarge y limits = 0.2,
                      enlarge x limits = 0.02,
                      symbolic y coords = {LaTeX, Tools, Distributions, Editors},
                      nodes near coords,name nodes near coords=bn
                      ]
                      addplot coordinates { (57727,LaTeX) (5672,Tools)
                      (2193,Distributions) (11106,Editors) };
                      addplot coordinates { (14320,LaTeX) (1615,Tools)
                      (560,Distributions) (3075,Editors) };
                      legend{Topics, Posts}
                      end{axis}
                      node[anchor=west] at (bn-1.east){see cite{Witten:2017hdv}};
                      end{tikzpicture}

                      begin{thebibliography}{9}
                      bibitem{Witten:2017hdv}
                      E.~Witten,
                      %``Symmetry and Emergence,''
                      Nature Phys. {bf 14}, 116 (2018)
                      doi:10.1038/nphys4348
                      [arXiv:1710.01791 [hep-th]].
                      %%CITATION = doi:10.1038/nphys4348;%%
                      %15 citations counted in INSPIRE as of 16 Jan 2019
                      end{thebibliography}
                      end{document}


                      enter image description here






                      share|improve this answer




























                        2














                        Here is a way to add citations. The second point of your question I do not understand.



                        documentclass{article}
                        usepackage{pgfplots}
                        pgfplotsset{compat=1.16,
                        name nodes near coords/.style={ % https://tex.stackexchange.com/a/75811/121799
                        every node near coord/.append style={
                        name=#1-coordindex,
                        alias=#1-last,
                        },
                        },
                        name nodes near coords/.default=coordnode}
                        begin{document}
                        begin{tikzpicture}
                        begin{axis}[title = Contributions per category
                        at LaTeX-Community.org,
                        xbar,
                        y axis line style = { opacity = 0 },
                        axis x line = none,
                        tickwidth = 0pt,
                        enlarge y limits = 0.2,
                        enlarge x limits = 0.02,
                        symbolic y coords = {LaTeX, Tools, Distributions, Editors},
                        nodes near coords,name nodes near coords=bn
                        ]
                        addplot coordinates { (57727,LaTeX) (5672,Tools)
                        (2193,Distributions) (11106,Editors) };
                        addplot coordinates { (14320,LaTeX) (1615,Tools)
                        (560,Distributions) (3075,Editors) };
                        legend{Topics, Posts}
                        end{axis}
                        node[anchor=west] at (bn-1.east){see cite{Witten:2017hdv}};
                        end{tikzpicture}

                        begin{thebibliography}{9}
                        bibitem{Witten:2017hdv}
                        E.~Witten,
                        %``Symmetry and Emergence,''
                        Nature Phys. {bf 14}, 116 (2018)
                        doi:10.1038/nphys4348
                        [arXiv:1710.01791 [hep-th]].
                        %%CITATION = doi:10.1038/nphys4348;%%
                        %15 citations counted in INSPIRE as of 16 Jan 2019
                        end{thebibliography}
                        end{document}


                        enter image description here






                        share|improve this answer


























                          2












                          2








                          2







                          Here is a way to add citations. The second point of your question I do not understand.



                          documentclass{article}
                          usepackage{pgfplots}
                          pgfplotsset{compat=1.16,
                          name nodes near coords/.style={ % https://tex.stackexchange.com/a/75811/121799
                          every node near coord/.append style={
                          name=#1-coordindex,
                          alias=#1-last,
                          },
                          },
                          name nodes near coords/.default=coordnode}
                          begin{document}
                          begin{tikzpicture}
                          begin{axis}[title = Contributions per category
                          at LaTeX-Community.org,
                          xbar,
                          y axis line style = { opacity = 0 },
                          axis x line = none,
                          tickwidth = 0pt,
                          enlarge y limits = 0.2,
                          enlarge x limits = 0.02,
                          symbolic y coords = {LaTeX, Tools, Distributions, Editors},
                          nodes near coords,name nodes near coords=bn
                          ]
                          addplot coordinates { (57727,LaTeX) (5672,Tools)
                          (2193,Distributions) (11106,Editors) };
                          addplot coordinates { (14320,LaTeX) (1615,Tools)
                          (560,Distributions) (3075,Editors) };
                          legend{Topics, Posts}
                          end{axis}
                          node[anchor=west] at (bn-1.east){see cite{Witten:2017hdv}};
                          end{tikzpicture}

                          begin{thebibliography}{9}
                          bibitem{Witten:2017hdv}
                          E.~Witten,
                          %``Symmetry and Emergence,''
                          Nature Phys. {bf 14}, 116 (2018)
                          doi:10.1038/nphys4348
                          [arXiv:1710.01791 [hep-th]].
                          %%CITATION = doi:10.1038/nphys4348;%%
                          %15 citations counted in INSPIRE as of 16 Jan 2019
                          end{thebibliography}
                          end{document}


                          enter image description here






                          share|improve this answer













                          Here is a way to add citations. The second point of your question I do not understand.



                          documentclass{article}
                          usepackage{pgfplots}
                          pgfplotsset{compat=1.16,
                          name nodes near coords/.style={ % https://tex.stackexchange.com/a/75811/121799
                          every node near coord/.append style={
                          name=#1-coordindex,
                          alias=#1-last,
                          },
                          },
                          name nodes near coords/.default=coordnode}
                          begin{document}
                          begin{tikzpicture}
                          begin{axis}[title = Contributions per category
                          at LaTeX-Community.org,
                          xbar,
                          y axis line style = { opacity = 0 },
                          axis x line = none,
                          tickwidth = 0pt,
                          enlarge y limits = 0.2,
                          enlarge x limits = 0.02,
                          symbolic y coords = {LaTeX, Tools, Distributions, Editors},
                          nodes near coords,name nodes near coords=bn
                          ]
                          addplot coordinates { (57727,LaTeX) (5672,Tools)
                          (2193,Distributions) (11106,Editors) };
                          addplot coordinates { (14320,LaTeX) (1615,Tools)
                          (560,Distributions) (3075,Editors) };
                          legend{Topics, Posts}
                          end{axis}
                          node[anchor=west] at (bn-1.east){see cite{Witten:2017hdv}};
                          end{tikzpicture}

                          begin{thebibliography}{9}
                          bibitem{Witten:2017hdv}
                          E.~Witten,
                          %``Symmetry and Emergence,''
                          Nature Phys. {bf 14}, 116 (2018)
                          doi:10.1038/nphys4348
                          [arXiv:1710.01791 [hep-th]].
                          %%CITATION = doi:10.1038/nphys4348;%%
                          %15 citations counted in INSPIRE as of 16 Jan 2019
                          end{thebibliography}
                          end{document}


                          enter image description here







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered 14 hours ago









                          marmotmarmot

                          92k4107200




                          92k4107200






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f470420%2fhow-to-change-the-bar-text-label-in-pgfplots%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              GameSpot

                              connect to host localhost port 22: Connection refused

                              Getting a Wifi WPA2 wifi connection