Setup Asymptote in Texstudio












0














Good time of the day!
I am trying to compile the following file:



documentclass[12pt]{article}

usepackage[inline]{asymptote}

begin{document}
Here is a venn diagram produced with Asymptote, drawn to width 4cm:

defA{A}
defB{V{B}}

begin{figure}
begin{center}

begin{asy}

size(4cm,0);
pen colour1=red;
pen colour2=green;

pair z0=(0,0);
pair z1=(-1,0);
pair z2=(1,0);
real r=1.5;
path c1=circle(z1,r);
path c2=circle(z2,r);
fill(c1,colour1);
fill(c2,colour2);

picture intersection=new picture;
fill(intersection,c1,colour1+colour2);
clip(intersection,c2);

add(intersection);

draw(c1);
draw(c2);

//draw("$A$",box,z1); // Requires [inline] package option.
//draw(Label("$B$","$B$"),box,z2); // Requires [inline] package option.
draw("$A$",box,z1);
draw("$V{B}$",box,z2);

pair z=(0,-2);
real m=3;
margin BigMargin=Margin(0,m*dot(unit(z1-z),unit(z0-z)));

draw(Label("$Acap B$",0),conj(z)--z0,Arrow,BigMargin);
draw(Label("$Acup B$",0),z--z0,Arrow,BigMargin);
draw(z--z1,Arrow,Margin(0,m));
draw(z--z2,Arrow,Margin(0,m));

shipout(bbox(0.25cm));
end{asy}
caption{Venn diagram}label{venn}
end{center}
end{figure}

end{document}


And I have following message:



enter image description here



And this is how file try-asy1.tex looks
:



enter image description here



Here are my settings in Texstudio:
enter image description hereenter image description here



and here my command in Asymptote:
enter image description here



Version of Texstudio: 2.12.4, version of asymptote - 2.47, OS- Windows 10.









share



























    0














    Good time of the day!
    I am trying to compile the following file:



    documentclass[12pt]{article}

    usepackage[inline]{asymptote}

    begin{document}
    Here is a venn diagram produced with Asymptote, drawn to width 4cm:

    defA{A}
    defB{V{B}}

    begin{figure}
    begin{center}

    begin{asy}

    size(4cm,0);
    pen colour1=red;
    pen colour2=green;

    pair z0=(0,0);
    pair z1=(-1,0);
    pair z2=(1,0);
    real r=1.5;
    path c1=circle(z1,r);
    path c2=circle(z2,r);
    fill(c1,colour1);
    fill(c2,colour2);

    picture intersection=new picture;
    fill(intersection,c1,colour1+colour2);
    clip(intersection,c2);

    add(intersection);

    draw(c1);
    draw(c2);

    //draw("$A$",box,z1); // Requires [inline] package option.
    //draw(Label("$B$","$B$"),box,z2); // Requires [inline] package option.
    draw("$A$",box,z1);
    draw("$V{B}$",box,z2);

    pair z=(0,-2);
    real m=3;
    margin BigMargin=Margin(0,m*dot(unit(z1-z),unit(z0-z)));

    draw(Label("$Acap B$",0),conj(z)--z0,Arrow,BigMargin);
    draw(Label("$Acup B$",0),z--z0,Arrow,BigMargin);
    draw(z--z1,Arrow,Margin(0,m));
    draw(z--z2,Arrow,Margin(0,m));

    shipout(bbox(0.25cm));
    end{asy}
    caption{Venn diagram}label{venn}
    end{center}
    end{figure}

    end{document}


    And I have following message:



    enter image description here



    And this is how file try-asy1.tex looks
    :



    enter image description here



    Here are my settings in Texstudio:
    enter image description hereenter image description here



    and here my command in Asymptote:
    enter image description here



    Version of Texstudio: 2.12.4, version of asymptote - 2.47, OS- Windows 10.









    share

























      0












      0








      0







      Good time of the day!
      I am trying to compile the following file:



      documentclass[12pt]{article}

      usepackage[inline]{asymptote}

      begin{document}
      Here is a venn diagram produced with Asymptote, drawn to width 4cm:

      defA{A}
      defB{V{B}}

      begin{figure}
      begin{center}

      begin{asy}

      size(4cm,0);
      pen colour1=red;
      pen colour2=green;

      pair z0=(0,0);
      pair z1=(-1,0);
      pair z2=(1,0);
      real r=1.5;
      path c1=circle(z1,r);
      path c2=circle(z2,r);
      fill(c1,colour1);
      fill(c2,colour2);

      picture intersection=new picture;
      fill(intersection,c1,colour1+colour2);
      clip(intersection,c2);

      add(intersection);

      draw(c1);
      draw(c2);

      //draw("$A$",box,z1); // Requires [inline] package option.
      //draw(Label("$B$","$B$"),box,z2); // Requires [inline] package option.
      draw("$A$",box,z1);
      draw("$V{B}$",box,z2);

      pair z=(0,-2);
      real m=3;
      margin BigMargin=Margin(0,m*dot(unit(z1-z),unit(z0-z)));

      draw(Label("$Acap B$",0),conj(z)--z0,Arrow,BigMargin);
      draw(Label("$Acup B$",0),z--z0,Arrow,BigMargin);
      draw(z--z1,Arrow,Margin(0,m));
      draw(z--z2,Arrow,Margin(0,m));

      shipout(bbox(0.25cm));
      end{asy}
      caption{Venn diagram}label{venn}
      end{center}
      end{figure}

      end{document}


      And I have following message:



      enter image description here



      And this is how file try-asy1.tex looks
      :



      enter image description here



      Here are my settings in Texstudio:
      enter image description hereenter image description here



      and here my command in Asymptote:
      enter image description here



      Version of Texstudio: 2.12.4, version of asymptote - 2.47, OS- Windows 10.









      share













      Good time of the day!
      I am trying to compile the following file:



      documentclass[12pt]{article}

      usepackage[inline]{asymptote}

      begin{document}
      Here is a venn diagram produced with Asymptote, drawn to width 4cm:

      defA{A}
      defB{V{B}}

      begin{figure}
      begin{center}

      begin{asy}

      size(4cm,0);
      pen colour1=red;
      pen colour2=green;

      pair z0=(0,0);
      pair z1=(-1,0);
      pair z2=(1,0);
      real r=1.5;
      path c1=circle(z1,r);
      path c2=circle(z2,r);
      fill(c1,colour1);
      fill(c2,colour2);

      picture intersection=new picture;
      fill(intersection,c1,colour1+colour2);
      clip(intersection,c2);

      add(intersection);

      draw(c1);
      draw(c2);

      //draw("$A$",box,z1); // Requires [inline] package option.
      //draw(Label("$B$","$B$"),box,z2); // Requires [inline] package option.
      draw("$A$",box,z1);
      draw("$V{B}$",box,z2);

      pair z=(0,-2);
      real m=3;
      margin BigMargin=Margin(0,m*dot(unit(z1-z),unit(z0-z)));

      draw(Label("$Acap B$",0),conj(z)--z0,Arrow,BigMargin);
      draw(Label("$Acup B$",0),z--z0,Arrow,BigMargin);
      draw(z--z1,Arrow,Margin(0,m));
      draw(z--z2,Arrow,Margin(0,m));

      shipout(bbox(0.25cm));
      end{asy}
      caption{Venn diagram}label{venn}
      end{center}
      end{figure}

      end{document}


      And I have following message:



      enter image description here



      And this is how file try-asy1.tex looks
      :



      enter image description here



      Here are my settings in Texstudio:
      enter image description hereenter image description here



      and here my command in Asymptote:
      enter image description here



      Version of Texstudio: 2.12.4, version of asymptote - 2.47, OS- Windows 10.







      texstudio asymptote





      share












      share










      share



      share










      asked 9 mins ago









      Rustam Mamin

      112




      112



























          active

          oldest

          votes











          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%2f467754%2fsetup-asymptote-in-texstudio%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2f467754%2fsetup-asymptote-in-texstudio%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

          サソリ

          広島県道265号伴広島線