Size of subfigure fitting its content (tikzpicture)How can I access the size of a tikzpicture's bounding box...

Assassin's bullet with mercury

Is it possible to create a QR code using text?

Mathematica command that allows it to read my intentions

What do you call someone who asks many questions?

How do conventional missiles fly?

Expand and Contract

Personal Teleportation: From Rags to Riches

Why can't we play rap on piano?

Plagiarism or not?

Detention in 1997

What exploit Are these user agents trying to use?

How do I handle a potential work/personal life conflict as the manager of one of my friends?

I would say: "You are another teacher", but she is a woman and I am a man

Should I cover my bicycle overnight while bikepacking?

CAST throwing error when run in stored procedure but not when run as raw query

What method can I use to design a dungeon difficult enough that the PCs can't make it through without killing them?

Do scales need to be in alphabetical order?

Is it logically or scientifically possible to artificially send energy to the body?

Ambiguity in the definition of entropy

Method Does Not Exist error message

Can I run a new neutral wire to repair a broken circuit?

How would I stat a creature to be immune to everything but the Magic Missile spell? (just for fun)

Bullying boss launched a smear campaign and made me unemployable

Is "remove commented out code" correct English?



Size of subfigure fitting its content (tikzpicture)


How can I access the size of a tikzpicture's bounding box outside the tikzpicture?Write information on aux file when using include to build documentLaTeX equivalent of ConTeXt buffersVenn diagrams, relative so size of its contentTikZ scaling graphic and adjust node position and keep font sizeWrong caption with subfigure and tikzpictureLine up nested tikz enviroments or how to get rid of themEqual size subfigureSize of figures within subfigure environment won't changeMaking a tikzpicture SubfigureSubcaption environment failed. All figures containing a subfigure crashing all of a suddenTikzpicture shifts subfigure environment













2















How can I set the width of a subfigure to fit its content, i. e. a tikzpicture.



In my MWE I do not want to specify 0.1textwidth respectively 0.9textwidth, but instead I want the whitespace to be distributed equally around both subfigures.



documentclass{article}
usepackage{showframe}
usepackage{tikz}
usepackage{subcaption}

begin{document}

begin{figure}[ht]
hfill
begin{subfigure}[b]{0.1textwidth}
centering
begin{tikzpicture}
node[draw] (pd1) {a};
end{tikzpicture}
caption{}
end{subfigure}%
hfill
begin{subfigure}[b]{0.9textwidth}
centering
begin{tikzpicture}
node[draw] (b) at (0,0) {b};
node[draw] (c) at (5,0) {c};

draw (b) to (c);
end{tikzpicture}
caption{}
end{subfigure}%
hfill
caption{}
end{figure}

end{document}


I found this answer How can I access the size of a tikzpicture's bounding box outside the tikzpicture? but didn't read it in detail until now. I was wondering if my aim could be achieved easier.










share|improve this question



























    2















    How can I set the width of a subfigure to fit its content, i. e. a tikzpicture.



    In my MWE I do not want to specify 0.1textwidth respectively 0.9textwidth, but instead I want the whitespace to be distributed equally around both subfigures.



    documentclass{article}
    usepackage{showframe}
    usepackage{tikz}
    usepackage{subcaption}

    begin{document}

    begin{figure}[ht]
    hfill
    begin{subfigure}[b]{0.1textwidth}
    centering
    begin{tikzpicture}
    node[draw] (pd1) {a};
    end{tikzpicture}
    caption{}
    end{subfigure}%
    hfill
    begin{subfigure}[b]{0.9textwidth}
    centering
    begin{tikzpicture}
    node[draw] (b) at (0,0) {b};
    node[draw] (c) at (5,0) {c};

    draw (b) to (c);
    end{tikzpicture}
    caption{}
    end{subfigure}%
    hfill
    caption{}
    end{figure}

    end{document}


    I found this answer How can I access the size of a tikzpicture's bounding box outside the tikzpicture? but didn't read it in detail until now. I was wondering if my aim could be achieved easier.










    share|improve this question

























      2












      2








      2








      How can I set the width of a subfigure to fit its content, i. e. a tikzpicture.



      In my MWE I do not want to specify 0.1textwidth respectively 0.9textwidth, but instead I want the whitespace to be distributed equally around both subfigures.



      documentclass{article}
      usepackage{showframe}
      usepackage{tikz}
      usepackage{subcaption}

      begin{document}

      begin{figure}[ht]
      hfill
      begin{subfigure}[b]{0.1textwidth}
      centering
      begin{tikzpicture}
      node[draw] (pd1) {a};
      end{tikzpicture}
      caption{}
      end{subfigure}%
      hfill
      begin{subfigure}[b]{0.9textwidth}
      centering
      begin{tikzpicture}
      node[draw] (b) at (0,0) {b};
      node[draw] (c) at (5,0) {c};

      draw (b) to (c);
      end{tikzpicture}
      caption{}
      end{subfigure}%
      hfill
      caption{}
      end{figure}

      end{document}


      I found this answer How can I access the size of a tikzpicture's bounding box outside the tikzpicture? but didn't read it in detail until now. I was wondering if my aim could be achieved easier.










      share|improve this question














      How can I set the width of a subfigure to fit its content, i. e. a tikzpicture.



      In my MWE I do not want to specify 0.1textwidth respectively 0.9textwidth, but instead I want the whitespace to be distributed equally around both subfigures.



      documentclass{article}
      usepackage{showframe}
      usepackage{tikz}
      usepackage{subcaption}

      begin{document}

      begin{figure}[ht]
      hfill
      begin{subfigure}[b]{0.1textwidth}
      centering
      begin{tikzpicture}
      node[draw] (pd1) {a};
      end{tikzpicture}
      caption{}
      end{subfigure}%
      hfill
      begin{subfigure}[b]{0.9textwidth}
      centering
      begin{tikzpicture}
      node[draw] (b) at (0,0) {b};
      node[draw] (c) at (5,0) {c};

      draw (b) to (c);
      end{tikzpicture}
      caption{}
      end{subfigure}%
      hfill
      caption{}
      end{figure}

      end{document}


      I found this answer How can I access the size of a tikzpicture's bounding box outside the tikzpicture? but didn't read it in detail until now. I was wondering if my aim could be achieved easier.







      tikz-pgf subfloats






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 1 hour ago









      BenBen

      8801520




      8801520






















          2 Answers
          2






          active

          oldest

          votes


















          2














          You could place the tikzpicture in a savebox and measure its size. This size can then be used for the subfigure. The following example shows how to do this for the right hand image. In the same way you could create another box for the other image.



          documentclass{article}
          usepackage{showframe}
          usepackage{tikz}
          usepackage{subcaption}

          newsavebox{mybox}
          newlength{mylength}

          begin{document}

          savebox{mybox}{begin{tikzpicture}
          node[draw] (b) at (0,0) {b};
          node[draw] (c) at (5,0) {c};

          draw (b) to (c);
          end{tikzpicture}}

          settowidth{mylength}{usebox{mybox}}

          begin{figure}[ht]
          hfill
          begin{subfigure}[b]{0.1textwidth}
          centering
          begin{tikzpicture}
          node[draw] (pd1) {a};
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill
          begin{subfigure}[b]{mylength}
          centering
          usebox{mybox}
          caption{}
          end{subfigure}%
          hfill
          caption{}
          end{figure}

          end{document}





          share|improve this answer
























          • Maybe you should add something after the last hfill, e.g. hfillvphantom{x} to move the right figure away from the right page border?

            – marmot
            26 mins ago



















          1














          I think that @samcarter's nice proposal is the way to go. This is only if you need to access the nodes later (with remember picture), in which case saveboxes may be inconvenient. This proposal measures the widths of the tikzpictures and writes them to the aux files such that they get used in the next run. Conceptually it is the same as e.g. this nice answer.



          documentclass{article}
          usepackage{showframe}
          usepackage{tikz}
          usetikzlibrary{calc}
          usepackage{subcaption}
          ifdefinedfigwidthA
          else
          xdeffigwidthA{2cm}
          fi
          ifdefinedfigwidthB
          else
          xdeffigwidthB{2cm}
          fi
          tikzset{save tikzpic width in/.style={execute at end picture={
          path let p1=($(current bounding box.east)-(current bounding box.west)$)
          in pgfextra{xdef#1{x1}};}}}
          begin{document}

          begin{figure}[ht]
          hfill
          begin{subfigure}[b]{figwidthA}
          centering
          begin{tikzpicture}[save tikzpic width in=figwidthA]
          node[draw] (pd1) {a};
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill%
          begin{subfigure}[b]{figwidthB}
          centering
          begin{tikzpicture}[save tikzpic width in=figwidthB]
          node[draw] (b) at (0,0) {b};
          node[draw] (c) at (5,0) {c};

          draw (b) to (c);
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill{vphantom{x}}
          caption{}
          end{figure}
          makeatletter
          immediatewrite@mainaux{xdefstringfigwidthA{figwidthA}relax}
          immediatewrite@mainaux{xdefstringfigwidthB{figwidthB}relax}
          makeatother
          end{document}


          enter image description here






          share|improve this answer
























          • Is there a reason you use { brackets } around vphantom?

            – Ben
            13 mins ago












          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%2f483067%2fsize-of-subfigure-fitting-its-content-tikzpicture%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














          You could place the tikzpicture in a savebox and measure its size. This size can then be used for the subfigure. The following example shows how to do this for the right hand image. In the same way you could create another box for the other image.



          documentclass{article}
          usepackage{showframe}
          usepackage{tikz}
          usepackage{subcaption}

          newsavebox{mybox}
          newlength{mylength}

          begin{document}

          savebox{mybox}{begin{tikzpicture}
          node[draw] (b) at (0,0) {b};
          node[draw] (c) at (5,0) {c};

          draw (b) to (c);
          end{tikzpicture}}

          settowidth{mylength}{usebox{mybox}}

          begin{figure}[ht]
          hfill
          begin{subfigure}[b]{0.1textwidth}
          centering
          begin{tikzpicture}
          node[draw] (pd1) {a};
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill
          begin{subfigure}[b]{mylength}
          centering
          usebox{mybox}
          caption{}
          end{subfigure}%
          hfill
          caption{}
          end{figure}

          end{document}





          share|improve this answer
























          • Maybe you should add something after the last hfill, e.g. hfillvphantom{x} to move the right figure away from the right page border?

            – marmot
            26 mins ago
















          2














          You could place the tikzpicture in a savebox and measure its size. This size can then be used for the subfigure. The following example shows how to do this for the right hand image. In the same way you could create another box for the other image.



          documentclass{article}
          usepackage{showframe}
          usepackage{tikz}
          usepackage{subcaption}

          newsavebox{mybox}
          newlength{mylength}

          begin{document}

          savebox{mybox}{begin{tikzpicture}
          node[draw] (b) at (0,0) {b};
          node[draw] (c) at (5,0) {c};

          draw (b) to (c);
          end{tikzpicture}}

          settowidth{mylength}{usebox{mybox}}

          begin{figure}[ht]
          hfill
          begin{subfigure}[b]{0.1textwidth}
          centering
          begin{tikzpicture}
          node[draw] (pd1) {a};
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill
          begin{subfigure}[b]{mylength}
          centering
          usebox{mybox}
          caption{}
          end{subfigure}%
          hfill
          caption{}
          end{figure}

          end{document}





          share|improve this answer
























          • Maybe you should add something after the last hfill, e.g. hfillvphantom{x} to move the right figure away from the right page border?

            – marmot
            26 mins ago














          2












          2








          2







          You could place the tikzpicture in a savebox and measure its size. This size can then be used for the subfigure. The following example shows how to do this for the right hand image. In the same way you could create another box for the other image.



          documentclass{article}
          usepackage{showframe}
          usepackage{tikz}
          usepackage{subcaption}

          newsavebox{mybox}
          newlength{mylength}

          begin{document}

          savebox{mybox}{begin{tikzpicture}
          node[draw] (b) at (0,0) {b};
          node[draw] (c) at (5,0) {c};

          draw (b) to (c);
          end{tikzpicture}}

          settowidth{mylength}{usebox{mybox}}

          begin{figure}[ht]
          hfill
          begin{subfigure}[b]{0.1textwidth}
          centering
          begin{tikzpicture}
          node[draw] (pd1) {a};
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill
          begin{subfigure}[b]{mylength}
          centering
          usebox{mybox}
          caption{}
          end{subfigure}%
          hfill
          caption{}
          end{figure}

          end{document}





          share|improve this answer













          You could place the tikzpicture in a savebox and measure its size. This size can then be used for the subfigure. The following example shows how to do this for the right hand image. In the same way you could create another box for the other image.



          documentclass{article}
          usepackage{showframe}
          usepackage{tikz}
          usepackage{subcaption}

          newsavebox{mybox}
          newlength{mylength}

          begin{document}

          savebox{mybox}{begin{tikzpicture}
          node[draw] (b) at (0,0) {b};
          node[draw] (c) at (5,0) {c};

          draw (b) to (c);
          end{tikzpicture}}

          settowidth{mylength}{usebox{mybox}}

          begin{figure}[ht]
          hfill
          begin{subfigure}[b]{0.1textwidth}
          centering
          begin{tikzpicture}
          node[draw] (pd1) {a};
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill
          begin{subfigure}[b]{mylength}
          centering
          usebox{mybox}
          caption{}
          end{subfigure}%
          hfill
          caption{}
          end{figure}

          end{document}






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 54 mins ago









          samcartersamcarter

          93.5k7105303




          93.5k7105303













          • Maybe you should add something after the last hfill, e.g. hfillvphantom{x} to move the right figure away from the right page border?

            – marmot
            26 mins ago



















          • Maybe you should add something after the last hfill, e.g. hfillvphantom{x} to move the right figure away from the right page border?

            – marmot
            26 mins ago

















          Maybe you should add something after the last hfill, e.g. hfillvphantom{x} to move the right figure away from the right page border?

          – marmot
          26 mins ago





          Maybe you should add something after the last hfill, e.g. hfillvphantom{x} to move the right figure away from the right page border?

          – marmot
          26 mins ago











          1














          I think that @samcarter's nice proposal is the way to go. This is only if you need to access the nodes later (with remember picture), in which case saveboxes may be inconvenient. This proposal measures the widths of the tikzpictures and writes them to the aux files such that they get used in the next run. Conceptually it is the same as e.g. this nice answer.



          documentclass{article}
          usepackage{showframe}
          usepackage{tikz}
          usetikzlibrary{calc}
          usepackage{subcaption}
          ifdefinedfigwidthA
          else
          xdeffigwidthA{2cm}
          fi
          ifdefinedfigwidthB
          else
          xdeffigwidthB{2cm}
          fi
          tikzset{save tikzpic width in/.style={execute at end picture={
          path let p1=($(current bounding box.east)-(current bounding box.west)$)
          in pgfextra{xdef#1{x1}};}}}
          begin{document}

          begin{figure}[ht]
          hfill
          begin{subfigure}[b]{figwidthA}
          centering
          begin{tikzpicture}[save tikzpic width in=figwidthA]
          node[draw] (pd1) {a};
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill%
          begin{subfigure}[b]{figwidthB}
          centering
          begin{tikzpicture}[save tikzpic width in=figwidthB]
          node[draw] (b) at (0,0) {b};
          node[draw] (c) at (5,0) {c};

          draw (b) to (c);
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill{vphantom{x}}
          caption{}
          end{figure}
          makeatletter
          immediatewrite@mainaux{xdefstringfigwidthA{figwidthA}relax}
          immediatewrite@mainaux{xdefstringfigwidthB{figwidthB}relax}
          makeatother
          end{document}


          enter image description here






          share|improve this answer
























          • Is there a reason you use { brackets } around vphantom?

            – Ben
            13 mins ago
















          1














          I think that @samcarter's nice proposal is the way to go. This is only if you need to access the nodes later (with remember picture), in which case saveboxes may be inconvenient. This proposal measures the widths of the tikzpictures and writes them to the aux files such that they get used in the next run. Conceptually it is the same as e.g. this nice answer.



          documentclass{article}
          usepackage{showframe}
          usepackage{tikz}
          usetikzlibrary{calc}
          usepackage{subcaption}
          ifdefinedfigwidthA
          else
          xdeffigwidthA{2cm}
          fi
          ifdefinedfigwidthB
          else
          xdeffigwidthB{2cm}
          fi
          tikzset{save tikzpic width in/.style={execute at end picture={
          path let p1=($(current bounding box.east)-(current bounding box.west)$)
          in pgfextra{xdef#1{x1}};}}}
          begin{document}

          begin{figure}[ht]
          hfill
          begin{subfigure}[b]{figwidthA}
          centering
          begin{tikzpicture}[save tikzpic width in=figwidthA]
          node[draw] (pd1) {a};
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill%
          begin{subfigure}[b]{figwidthB}
          centering
          begin{tikzpicture}[save tikzpic width in=figwidthB]
          node[draw] (b) at (0,0) {b};
          node[draw] (c) at (5,0) {c};

          draw (b) to (c);
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill{vphantom{x}}
          caption{}
          end{figure}
          makeatletter
          immediatewrite@mainaux{xdefstringfigwidthA{figwidthA}relax}
          immediatewrite@mainaux{xdefstringfigwidthB{figwidthB}relax}
          makeatother
          end{document}


          enter image description here






          share|improve this answer
























          • Is there a reason you use { brackets } around vphantom?

            – Ben
            13 mins ago














          1












          1








          1







          I think that @samcarter's nice proposal is the way to go. This is only if you need to access the nodes later (with remember picture), in which case saveboxes may be inconvenient. This proposal measures the widths of the tikzpictures and writes them to the aux files such that they get used in the next run. Conceptually it is the same as e.g. this nice answer.



          documentclass{article}
          usepackage{showframe}
          usepackage{tikz}
          usetikzlibrary{calc}
          usepackage{subcaption}
          ifdefinedfigwidthA
          else
          xdeffigwidthA{2cm}
          fi
          ifdefinedfigwidthB
          else
          xdeffigwidthB{2cm}
          fi
          tikzset{save tikzpic width in/.style={execute at end picture={
          path let p1=($(current bounding box.east)-(current bounding box.west)$)
          in pgfextra{xdef#1{x1}};}}}
          begin{document}

          begin{figure}[ht]
          hfill
          begin{subfigure}[b]{figwidthA}
          centering
          begin{tikzpicture}[save tikzpic width in=figwidthA]
          node[draw] (pd1) {a};
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill%
          begin{subfigure}[b]{figwidthB}
          centering
          begin{tikzpicture}[save tikzpic width in=figwidthB]
          node[draw] (b) at (0,0) {b};
          node[draw] (c) at (5,0) {c};

          draw (b) to (c);
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill{vphantom{x}}
          caption{}
          end{figure}
          makeatletter
          immediatewrite@mainaux{xdefstringfigwidthA{figwidthA}relax}
          immediatewrite@mainaux{xdefstringfigwidthB{figwidthB}relax}
          makeatother
          end{document}


          enter image description here






          share|improve this answer













          I think that @samcarter's nice proposal is the way to go. This is only if you need to access the nodes later (with remember picture), in which case saveboxes may be inconvenient. This proposal measures the widths of the tikzpictures and writes them to the aux files such that they get used in the next run. Conceptually it is the same as e.g. this nice answer.



          documentclass{article}
          usepackage{showframe}
          usepackage{tikz}
          usetikzlibrary{calc}
          usepackage{subcaption}
          ifdefinedfigwidthA
          else
          xdeffigwidthA{2cm}
          fi
          ifdefinedfigwidthB
          else
          xdeffigwidthB{2cm}
          fi
          tikzset{save tikzpic width in/.style={execute at end picture={
          path let p1=($(current bounding box.east)-(current bounding box.west)$)
          in pgfextra{xdef#1{x1}};}}}
          begin{document}

          begin{figure}[ht]
          hfill
          begin{subfigure}[b]{figwidthA}
          centering
          begin{tikzpicture}[save tikzpic width in=figwidthA]
          node[draw] (pd1) {a};
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill%
          begin{subfigure}[b]{figwidthB}
          centering
          begin{tikzpicture}[save tikzpic width in=figwidthB]
          node[draw] (b) at (0,0) {b};
          node[draw] (c) at (5,0) {c};

          draw (b) to (c);
          end{tikzpicture}
          caption{}
          end{subfigure}%
          hfill{vphantom{x}}
          caption{}
          end{figure}
          makeatletter
          immediatewrite@mainaux{xdefstringfigwidthA{figwidthA}relax}
          immediatewrite@mainaux{xdefstringfigwidthB{figwidthB}relax}
          makeatother
          end{document}


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 28 mins ago









          marmotmarmot

          114k5145276




          114k5145276













          • Is there a reason you use { brackets } around vphantom?

            – Ben
            13 mins ago



















          • Is there a reason you use { brackets } around vphantom?

            – Ben
            13 mins ago

















          Is there a reason you use { brackets } around vphantom?

          – Ben
          13 mins ago





          Is there a reason you use { brackets } around vphantom?

          – Ben
          13 mins ago


















          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%2f483067%2fsize-of-subfigure-fitting-its-content-tikzpicture%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

          ORA-01691 (unable to extend lob segment) even though my tablespace has AUTOEXTEND onORA-01692: unable to...

          Always On Availability groups resolving state after failover - Remote harden of transaction...

          Circunscripción electoral de Guipúzcoa Referencias Menú de navegaciónLas claves del sistema electoral en...