Passing arguments to longfbox in BeforeBeginEnvironmentPassing arguments to custom frame optionpassing...

Mathematical cryptic clues

Python: next in for loop

In Japanese, what’s the difference between “Tonari ni” (となりに) and “Tsugi” (つぎ)? When would you use one over the other?

An academic/student plagiarism

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

Why are 150k or 200k jobs considered good when there are 300k+ births a month?

Why not use SQL instead of GraphQL?

Is this a crack on the carbon frame?

Why did Neo believe he could trust the machine when he asked for peace?

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?

TGV timetables / schedules?

Expeditious Retreat

Is a tag line useful on a cover?

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

Approximately how much travel time was saved by the opening of the Suez Canal in 1869?

How does one intimidate enemies without having the capacity for violence?

Prove that NP is closed under karp reduction?

Today is the Center

Is it unprofessional to ask if a job posting on GlassDoor is real?

A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?

I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine

What would happen to a modern skyscraper if it rains micro blackholes?

What's the point of deactivating Num Lock on login screens?

How much RAM could one put in a typical 80386 setup?



Passing arguments to longfbox in BeforeBeginEnvironment


Passing arguments to custom frame optionpassing options to the newenvironmentPassing commands as environment-argumentsPassing arguments to mdwlist environmentsPGF keys passing arguments to multiple environmentsPassing arguments to class in a key=boolean value mannerSeveral arguments in tikzset picPassing arguments to LuaLaTeX with LuaSQLlatex table variable/optional many argumentsMacros passing arguments of different data typesPseudocode argument management: best way to deal with many arguments













0















I defined a BeforeBeginEnvironment for lstlisting and added a default begin{longfbox}[...] definition. What I want is to pass some custom arguments to begin{longfbox}[...] defined in BeforeBeginEnvironment. Hence, I can change background color, margin, padding, border etc... belong to longfbox surrounding begin{lstlisting}...end{lstlisting}. Is it possible?



Might be related: Passing arguments to custom frame option



Minimum Example:



documentclass{beamer}
usepackage{listings}
usepackage{longfbox}
usepackage{verbatim} % to print listing code

% default longbox options
fboxset{
rounded,
border-radius=1ex,
background-color=blue!50!green!10!white,
border-color=blue!90!green!50!white,
margin={10pt,10pt,10pt,10pt},
padding={10pt,10pt,10pt,10pt}
}

BeforeBeginEnvironment{lstlisting}{%
% I can define some default parameters here for longfbox
begin{longfbox}[margin={5pt,5pt,5pt,5pt},%
padding={5pt,5pt,5pt,5pt}]%
}
AfterEndEnvironment{lstlisting}{end{longfbox}}

begin{document}
begin{frame}[fragile]{Example 1}
This is default setup for listing surrounded by longfbox.

begin{lstlisting}
## speed dist
## Min. : 4.0 Min. : 2.00
## Median :15.0 Median : 36.00
## Mean :15.4 Mean : 42.98
## Max. :25.0 Max. :120.00
end{lstlisting}
end{frame}

begin{frame}[fragile]{Example 2}

I want to define arguments for longox after lstinline!begin{lstlisting}!
and pass to lstinline!longfbox!. is it possible?

begin{verbatim}
begin{lstlisting}[background-color=color{green!10!white},
margin={10pt,10pt,10pt,10pt},
padding={10pt,10pt,10pt,10pt}]
## speed dist
## Min. : 4.0 Min. : 2.00
## Median :15.0 Median : 36.00
## Mean :15.4 Mean : 42.98
## Max. :25.0 Max. :120.00
end{lstlisting}
end{verbatim}

end{frame}
end{document}









share|improve this question







New contributor




Sezen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    0















    I defined a BeforeBeginEnvironment for lstlisting and added a default begin{longfbox}[...] definition. What I want is to pass some custom arguments to begin{longfbox}[...] defined in BeforeBeginEnvironment. Hence, I can change background color, margin, padding, border etc... belong to longfbox surrounding begin{lstlisting}...end{lstlisting}. Is it possible?



    Might be related: Passing arguments to custom frame option



    Minimum Example:



    documentclass{beamer}
    usepackage{listings}
    usepackage{longfbox}
    usepackage{verbatim} % to print listing code

    % default longbox options
    fboxset{
    rounded,
    border-radius=1ex,
    background-color=blue!50!green!10!white,
    border-color=blue!90!green!50!white,
    margin={10pt,10pt,10pt,10pt},
    padding={10pt,10pt,10pt,10pt}
    }

    BeforeBeginEnvironment{lstlisting}{%
    % I can define some default parameters here for longfbox
    begin{longfbox}[margin={5pt,5pt,5pt,5pt},%
    padding={5pt,5pt,5pt,5pt}]%
    }
    AfterEndEnvironment{lstlisting}{end{longfbox}}

    begin{document}
    begin{frame}[fragile]{Example 1}
    This is default setup for listing surrounded by longfbox.

    begin{lstlisting}
    ## speed dist
    ## Min. : 4.0 Min. : 2.00
    ## Median :15.0 Median : 36.00
    ## Mean :15.4 Mean : 42.98
    ## Max. :25.0 Max. :120.00
    end{lstlisting}
    end{frame}

    begin{frame}[fragile]{Example 2}

    I want to define arguments for longox after lstinline!begin{lstlisting}!
    and pass to lstinline!longfbox!. is it possible?

    begin{verbatim}
    begin{lstlisting}[background-color=color{green!10!white},
    margin={10pt,10pt,10pt,10pt},
    padding={10pt,10pt,10pt,10pt}]
    ## speed dist
    ## Min. : 4.0 Min. : 2.00
    ## Median :15.0 Median : 36.00
    ## Mean :15.4 Mean : 42.98
    ## Max. :25.0 Max. :120.00
    end{lstlisting}
    end{verbatim}

    end{frame}
    end{document}









    share|improve this question







    New contributor




    Sezen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0








      I defined a BeforeBeginEnvironment for lstlisting and added a default begin{longfbox}[...] definition. What I want is to pass some custom arguments to begin{longfbox}[...] defined in BeforeBeginEnvironment. Hence, I can change background color, margin, padding, border etc... belong to longfbox surrounding begin{lstlisting}...end{lstlisting}. Is it possible?



      Might be related: Passing arguments to custom frame option



      Minimum Example:



      documentclass{beamer}
      usepackage{listings}
      usepackage{longfbox}
      usepackage{verbatim} % to print listing code

      % default longbox options
      fboxset{
      rounded,
      border-radius=1ex,
      background-color=blue!50!green!10!white,
      border-color=blue!90!green!50!white,
      margin={10pt,10pt,10pt,10pt},
      padding={10pt,10pt,10pt,10pt}
      }

      BeforeBeginEnvironment{lstlisting}{%
      % I can define some default parameters here for longfbox
      begin{longfbox}[margin={5pt,5pt,5pt,5pt},%
      padding={5pt,5pt,5pt,5pt}]%
      }
      AfterEndEnvironment{lstlisting}{end{longfbox}}

      begin{document}
      begin{frame}[fragile]{Example 1}
      This is default setup for listing surrounded by longfbox.

      begin{lstlisting}
      ## speed dist
      ## Min. : 4.0 Min. : 2.00
      ## Median :15.0 Median : 36.00
      ## Mean :15.4 Mean : 42.98
      ## Max. :25.0 Max. :120.00
      end{lstlisting}
      end{frame}

      begin{frame}[fragile]{Example 2}

      I want to define arguments for longox after lstinline!begin{lstlisting}!
      and pass to lstinline!longfbox!. is it possible?

      begin{verbatim}
      begin{lstlisting}[background-color=color{green!10!white},
      margin={10pt,10pt,10pt,10pt},
      padding={10pt,10pt,10pt,10pt}]
      ## speed dist
      ## Min. : 4.0 Min. : 2.00
      ## Median :15.0 Median : 36.00
      ## Mean :15.4 Mean : 42.98
      ## Max. :25.0 Max. :120.00
      end{lstlisting}
      end{verbatim}

      end{frame}
      end{document}









      share|improve this question







      New contributor




      Sezen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I defined a BeforeBeginEnvironment for lstlisting and added a default begin{longfbox}[...] definition. What I want is to pass some custom arguments to begin{longfbox}[...] defined in BeforeBeginEnvironment. Hence, I can change background color, margin, padding, border etc... belong to longfbox surrounding begin{lstlisting}...end{lstlisting}. Is it possible?



      Might be related: Passing arguments to custom frame option



      Minimum Example:



      documentclass{beamer}
      usepackage{listings}
      usepackage{longfbox}
      usepackage{verbatim} % to print listing code

      % default longbox options
      fboxset{
      rounded,
      border-radius=1ex,
      background-color=blue!50!green!10!white,
      border-color=blue!90!green!50!white,
      margin={10pt,10pt,10pt,10pt},
      padding={10pt,10pt,10pt,10pt}
      }

      BeforeBeginEnvironment{lstlisting}{%
      % I can define some default parameters here for longfbox
      begin{longfbox}[margin={5pt,5pt,5pt,5pt},%
      padding={5pt,5pt,5pt,5pt}]%
      }
      AfterEndEnvironment{lstlisting}{end{longfbox}}

      begin{document}
      begin{frame}[fragile]{Example 1}
      This is default setup for listing surrounded by longfbox.

      begin{lstlisting}
      ## speed dist
      ## Min. : 4.0 Min. : 2.00
      ## Median :15.0 Median : 36.00
      ## Mean :15.4 Mean : 42.98
      ## Max. :25.0 Max. :120.00
      end{lstlisting}
      end{frame}

      begin{frame}[fragile]{Example 2}

      I want to define arguments for longox after lstinline!begin{lstlisting}!
      and pass to lstinline!longfbox!. is it possible?

      begin{verbatim}
      begin{lstlisting}[background-color=color{green!10!white},
      margin={10pt,10pt,10pt,10pt},
      padding={10pt,10pt,10pt,10pt}]
      ## speed dist
      ## Min. : 4.0 Min. : 2.00
      ## Median :15.0 Median : 36.00
      ## Mean :15.4 Mean : 42.98
      ## Max. :25.0 Max. :120.00
      end{lstlisting}
      end{verbatim}

      end{frame}
      end{document}






      environments arguments lstlisting






      share|improve this question







      New contributor




      Sezen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Sezen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Sezen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 11 hours ago









      SezenSezen

      11




      11




      New contributor




      Sezen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Sezen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Sezen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          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
          });


          }
          });






          Sezen is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483536%2fpassing-arguments-to-longfbox-in-beforebeginenvironment%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Sezen is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          Sezen is a new contributor. Be nice, and check out our Code of Conduct.













          Sezen is a new contributor. Be nice, and check out our Code of Conduct.












          Sezen is a new contributor. Be nice, and check out our Code of Conduct.
















          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%2f483536%2fpassing-arguments-to-longfbox-in-beforebeginenvironment%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

          Paper upload error, “Upload failed: The top margin is 0.715 in on page 3, which is below the required...

          Emraan Hashmi Filmografia | Linki zewnętrzne | Menu nawigacyjneGulshan GroverGulshan...

          How can I write this formula?newline and italics added with leqWhy does widehat behave differently if I...