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

How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?

Critique of timeline aesthetic

Why other Westeros houses don't use wildfire?

A Strange Latex Symbol

Is the 5 MB static resource size limit 5,242,880 bytes or 5,000,000 bytes?

Pass By Reference VS Pass by Value

Apply MapThread to all but one variable

Don’t seats that recline flat defeat the purpose of having seatbelts?

Was there a shared-world project before "Thieves World"?

Is there a way to get a compiler for the original B programming language?

Packing rectangles: Does rotation ever help?

Are Boeing 737-800’s grounded?

How did Captain America manage to do this?

Mac Pro install disk keeps ejecting itself

Shrinkwrap tetris shapes without scaling or diagonal shapes

What does KSP mean?

Why do games have consumables?

How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?

How can I place the product on a social media post better?

What does the "ep" capability mean?

What route did the Hindenburg take when traveling from Germany to the U.S.?

Controversial area of mathematics

Combinable filters

How to stop co-workers from teasing me because I know Russian?



How can I write this formula?


newline and italics added with leqWhy does widehat behave differently if I insert hspace{0pt}?Bold math inside of absolute value gives errormathpazo package and changing font within begin{equation} … end{equation}Symbol at the end of an environmentWriting math formula in LaTeX, 'undefined control sequence'Error with matrix: erraneous nestingHow to write this formula?How can I repeat a formula without copying itUsing printeranswers environment, how to print solutions in the box without the title “Solutions”













2















enter image description here



I wrote this it is the first equation it gives me an error I don't understand why



documentclass[12pt]{report}
usepackage{enumerate}

begin{document}
$$ maxdd(t) = maxlimits_{0leqtauleqt} dd(tau)$$`
end{document}









share|improve this question




















  • 5





    The index of max should end in tauleq t} (with a space). Unrelated: you shouldn't use the plain TeX construct $$ $$ but the LaTeX one [ ]., to have a better vertical spacing.

    – Bernard
    Oct 16 '18 at 9:57






  • 5





    You should also remove an unnecessary accent ' at the end of your formula.

    – Sebastiano
    Oct 16 '18 at 10:43











  • As for the "why", limits are only used with operator names (either those from the package or the ones declared with DeclareMathOperator*)

    – Weijun Zhou
    22 mins ago
















2















enter image description here



I wrote this it is the first equation it gives me an error I don't understand why



documentclass[12pt]{report}
usepackage{enumerate}

begin{document}
$$ maxdd(t) = maxlimits_{0leqtauleqt} dd(tau)$$`
end{document}









share|improve this question




















  • 5





    The index of max should end in tauleq t} (with a space). Unrelated: you shouldn't use the plain TeX construct $$ $$ but the LaTeX one [ ]., to have a better vertical spacing.

    – Bernard
    Oct 16 '18 at 9:57






  • 5





    You should also remove an unnecessary accent ' at the end of your formula.

    – Sebastiano
    Oct 16 '18 at 10:43











  • As for the "why", limits are only used with operator names (either those from the package or the ones declared with DeclareMathOperator*)

    – Weijun Zhou
    22 mins ago














2












2








2








enter image description here



I wrote this it is the first equation it gives me an error I don't understand why



documentclass[12pt]{report}
usepackage{enumerate}

begin{document}
$$ maxdd(t) = maxlimits_{0leqtauleqt} dd(tau)$$`
end{document}









share|improve this question
















enter image description here



I wrote this it is the first equation it gives me an error I don't understand why



documentclass[12pt]{report}
usepackage{enumerate}

begin{document}
$$ maxdd(t) = maxlimits_{0leqtauleqt} dd(tau)$$`
end{document}






math-mode






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 16 '18 at 10:40









Sebastiano

11.7k42466




11.7k42466










asked Oct 16 '18 at 9:50









Tommaso DellolmoTommaso Dellolmo

1025




1025








  • 5





    The index of max should end in tauleq t} (with a space). Unrelated: you shouldn't use the plain TeX construct $$ $$ but the LaTeX one [ ]., to have a better vertical spacing.

    – Bernard
    Oct 16 '18 at 9:57






  • 5





    You should also remove an unnecessary accent ' at the end of your formula.

    – Sebastiano
    Oct 16 '18 at 10:43











  • As for the "why", limits are only used with operator names (either those from the package or the ones declared with DeclareMathOperator*)

    – Weijun Zhou
    22 mins ago














  • 5





    The index of max should end in tauleq t} (with a space). Unrelated: you shouldn't use the plain TeX construct $$ $$ but the LaTeX one [ ]., to have a better vertical spacing.

    – Bernard
    Oct 16 '18 at 9:57






  • 5





    You should also remove an unnecessary accent ' at the end of your formula.

    – Sebastiano
    Oct 16 '18 at 10:43











  • As for the "why", limits are only used with operator names (either those from the package or the ones declared with DeclareMathOperator*)

    – Weijun Zhou
    22 mins ago








5




5





The index of max should end in tauleq t} (with a space). Unrelated: you shouldn't use the plain TeX construct $$ $$ but the LaTeX one [ ]., to have a better vertical spacing.

– Bernard
Oct 16 '18 at 9:57





The index of max should end in tauleq t} (with a space). Unrelated: you shouldn't use the plain TeX construct $$ $$ but the LaTeX one [ ]., to have a better vertical spacing.

– Bernard
Oct 16 '18 at 9:57




5




5





You should also remove an unnecessary accent ' at the end of your formula.

– Sebastiano
Oct 16 '18 at 10:43





You should also remove an unnecessary accent ' at the end of your formula.

– Sebastiano
Oct 16 '18 at 10:43













As for the "why", limits are only used with operator names (either those from the package or the ones declared with DeclareMathOperator*)

– Weijun Zhou
22 mins ago





As for the "why", limits are only used with operator names (either those from the package or the ones declared with DeclareMathOperator*)

– Weijun Zhou
22 mins ago










1 Answer
1






active

oldest

votes


















0














You have several issues in your code:




  1. Use [ and ] for mathematical mode instead $$.

  2. The operater for max in written as max, for example max dd(t) or maxlimits.

  3. After an operator like leq you need a blank like leq t instead your wrong leqt


So with the complete code



documentclass[12pt]{report}

usepackage{enumerate}


begin{document}
[ max dd(t) = maxlimits_{0leqtauleq t} dd(tau) ]
end{document}


you get the result:



result






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%2f455384%2fhow-can-i-write-this-formula%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You have several issues in your code:




    1. Use [ and ] for mathematical mode instead $$.

    2. The operater for max in written as max, for example max dd(t) or maxlimits.

    3. After an operator like leq you need a blank like leq t instead your wrong leqt


    So with the complete code



    documentclass[12pt]{report}

    usepackage{enumerate}


    begin{document}
    [ max dd(t) = maxlimits_{0leqtauleq t} dd(tau) ]
    end{document}


    you get the result:



    result






    share|improve this answer




























      0














      You have several issues in your code:




      1. Use [ and ] for mathematical mode instead $$.

      2. The operater for max in written as max, for example max dd(t) or maxlimits.

      3. After an operator like leq you need a blank like leq t instead your wrong leqt


      So with the complete code



      documentclass[12pt]{report}

      usepackage{enumerate}


      begin{document}
      [ max dd(t) = maxlimits_{0leqtauleq t} dd(tau) ]
      end{document}


      you get the result:



      result






      share|improve this answer


























        0












        0








        0







        You have several issues in your code:




        1. Use [ and ] for mathematical mode instead $$.

        2. The operater for max in written as max, for example max dd(t) or maxlimits.

        3. After an operator like leq you need a blank like leq t instead your wrong leqt


        So with the complete code



        documentclass[12pt]{report}

        usepackage{enumerate}


        begin{document}
        [ max dd(t) = maxlimits_{0leqtauleq t} dd(tau) ]
        end{document}


        you get the result:



        result






        share|improve this answer













        You have several issues in your code:




        1. Use [ and ] for mathematical mode instead $$.

        2. The operater for max in written as max, for example max dd(t) or maxlimits.

        3. After an operator like leq you need a blank like leq t instead your wrong leqt


        So with the complete code



        documentclass[12pt]{report}

        usepackage{enumerate}


        begin{document}
        [ max dd(t) = maxlimits_{0leqtauleq t} dd(tau) ]
        end{document}


        you get the result:



        result







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 25 mins ago









        KurtKurt

        42.2k950166




        42.2k950166






























            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%2f455384%2fhow-can-i-write-this-formula%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...