Text alignment in tikzpicturealigning a multiline formula with the bullet of itemizeHow can I put a coloured outline around fraction lines?Rotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?Numerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themHow to draw a square and its diagonals with arrows?How to draw a -latex arrow inside a node

Improve appearance of the table in Latex

Proving an Intuitive Result Rigorously

Do I have to explain the mechanical superiority of the player-character within the fiction of the game?

What was the flower of Empress Taytu?

I just entered the USA without passport control at Atlanta airport

FD Battery Stations... How Do You Log?

How do internally carried IR missiles acquire a lock?

Counterfeit checks were created for my account. How does this type of fraud work?

How to work with PETG? Settings, caveats, etc

A word for delight at someone else's failure?

Why don't we have a weaning party like Avraham did?

Can Hunter's Mark be moved after Silence has been cast on a character?

Can i enter UK for 24 hours from a Schengen area holding an Indian passport?

What are Elsa's reasons for selecting the Holy Grail on behalf of Donovan?

What was the first third-party commercial application for MS-DOS?

Non-misogynistic way to say “asshole”?

What does this Swiss black on yellow rectangular traffic sign with a symbol looking like a dart mean?

Why don't countries like Japan just print more money?

"Correct me if I'm wrong"

Why does std::string_view create a dangling view in a ternary expression?

How do I remove this inheritance-related code smell?

Helping ease my back pain by studying 13 hours everyday , even weekends

In the US, can a former president run again?

What is the "ls" directory in my home directory?



Text alignment in tikzpicture


aligning a multiline formula with the bullet of itemizeHow can I put a coloured outline around fraction lines?Rotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?Numerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themHow to draw a square and its diagonals with arrows?How to draw a -latex arrow inside a node






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















I would like to have two lines of text with my time line below. How could I do this:



MWE:



 documentclassarticle
usepackagetikz

begindocument

begintikzpicture
% draw horizontal line

draw (0,0) -- (12,0);

% draw vertical line
foreach x in 0,2,9,12
draw (x cm,3pt) -- (x cm,-3pt);

% draw nodes
draw (0,0) node[below=3pt] 00' node[above=3pt] Starts;
% draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; % <- !
draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

endtikzpicture

enddocument


OUTPUT:
enter image description here



Problem:



When I try to put a new line \ so that 'Lesson starts' appear on top of each other with the command draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; I get this:
enter image description here



Question:



How would I change the above code so "Lesson" is on top of "starts"?










share|improve this question






















  • Line breaks are only supported if the node has a specified width

    – daleif
    13 hours ago






  • 1





    Off topic. You should use the $00^prime$ instead of 00'.

    – ferahfeza
    13 hours ago











  • @ferahfezaThank you!

    – 3kstc
    13 hours ago

















2















I would like to have two lines of text with my time line below. How could I do this:



MWE:



 documentclassarticle
usepackagetikz

begindocument

begintikzpicture
% draw horizontal line

draw (0,0) -- (12,0);

% draw vertical line
foreach x in 0,2,9,12
draw (x cm,3pt) -- (x cm,-3pt);

% draw nodes
draw (0,0) node[below=3pt] 00' node[above=3pt] Starts;
% draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; % <- !
draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

endtikzpicture

enddocument


OUTPUT:
enter image description here



Problem:



When I try to put a new line \ so that 'Lesson starts' appear on top of each other with the command draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; I get this:
enter image description here



Question:



How would I change the above code so "Lesson" is on top of "starts"?










share|improve this question






















  • Line breaks are only supported if the node has a specified width

    – daleif
    13 hours ago






  • 1





    Off topic. You should use the $00^prime$ instead of 00'.

    – ferahfeza
    13 hours ago











  • @ferahfezaThank you!

    – 3kstc
    13 hours ago













2












2








2








I would like to have two lines of text with my time line below. How could I do this:



MWE:



 documentclassarticle
usepackagetikz

begindocument

begintikzpicture
% draw horizontal line

draw (0,0) -- (12,0);

% draw vertical line
foreach x in 0,2,9,12
draw (x cm,3pt) -- (x cm,-3pt);

% draw nodes
draw (0,0) node[below=3pt] 00' node[above=3pt] Starts;
% draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; % <- !
draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

endtikzpicture

enddocument


OUTPUT:
enter image description here



Problem:



When I try to put a new line \ so that 'Lesson starts' appear on top of each other with the command draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; I get this:
enter image description here



Question:



How would I change the above code so "Lesson" is on top of "starts"?










share|improve this question














I would like to have two lines of text with my time line below. How could I do this:



MWE:



 documentclassarticle
usepackagetikz

begindocument

begintikzpicture
% draw horizontal line

draw (0,0) -- (12,0);

% draw vertical line
foreach x in 0,2,9,12
draw (x cm,3pt) -- (x cm,-3pt);

% draw nodes
draw (0,0) node[below=3pt] 00' node[above=3pt] Starts;
% draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; % <- !
draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

endtikzpicture

enddocument


OUTPUT:
enter image description here



Problem:



When I try to put a new line \ so that 'Lesson starts' appear on top of each other with the command draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; I get this:
enter image description here



Question:



How would I change the above code so "Lesson" is on top of "starts"?







tikz-pgf vertical-alignment






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 14 hours ago









3kstc3kstc

270112




270112












  • Line breaks are only supported if the node has a specified width

    – daleif
    13 hours ago






  • 1





    Off topic. You should use the $00^prime$ instead of 00'.

    – ferahfeza
    13 hours ago











  • @ferahfezaThank you!

    – 3kstc
    13 hours ago

















  • Line breaks are only supported if the node has a specified width

    – daleif
    13 hours ago






  • 1





    Off topic. You should use the $00^prime$ instead of 00'.

    – ferahfeza
    13 hours ago











  • @ferahfezaThank you!

    – 3kstc
    13 hours ago
















Line breaks are only supported if the node has a specified width

– daleif
13 hours ago





Line breaks are only supported if the node has a specified width

– daleif
13 hours ago




1




1





Off topic. You should use the $00^prime$ instead of 00'.

– ferahfeza
13 hours ago





Off topic. You should use the $00^prime$ instead of 00'.

– ferahfeza
13 hours ago













@ferahfezaThank you!

– 3kstc
13 hours ago





@ferahfezaThank you!

– 3kstc
13 hours ago










3 Answers
3






active

oldest

votes


















5














By default, the text of a node is put in an hbox, and therefore occupies only one line. There are several ways to do what you want, one of which is to specify align=left (or similar) for your multiline text node:



 documentclassarticle
usepackagetikz

begindocument

begintikzpicture
% draw horizontal line

draw (0,0) -- (12,0);

% draw vertical lines
foreach x in 0, 2, 9, 12 draw (x cm,3pt) -- (x cm,-3pt);

% draw nodes
draw (0,0) node[below=3pt] 00' node[above=3pt, align=left] Lesson\starts; % <- !
draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

endtikzpicture

enddocument


Screenshot



For details and other techniques, see Text Parameters: Alignment and Width for Multi-Line Text in the PGF & TikZ manual (page 229 for version 3.1.3).



Briefly, the other techniques given in the manual are:




  • use a tabular inside your node:



    draw (0,0) node[below=3pt] 00' node[above=3pt]
    %
    begintabular@l@
    Lesson\
    starts
    endtabular%
    ;



  • ask for automatic line-breaking inside the node by specifying a fixed text width:



    draw (0,0) node[below=3pt] 00' node[above=3pt, text width=3em]
    Lesson starts;






share|improve this answer
































    3














    Play with the width of the text:



     [![documentclassarticle
    usepackagetikz

    begindocument

    begintikzpicture
    % draw horizontal line

    draw (0,0) -- (12,0);

    % draw vertical line
    foreach x in 0,2,9,12
    draw (x cm,3pt) -- (x cm,-3pt);

    % draw nodes
    draw (0,0) node[below=3pt] 00' node[above=3pt,text width = 1cm, align=center] Starts New ;
    % draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; % <- !
    draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
    draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
    draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

    endtikzpicture

    enddocument


    enter image description here






    share|improve this answer






























      2














      One more similar solution with slightly more compact code:



      documentclassarticle
      usepackagetikz

      begindocument
      begintikzpicture[
      every node/.style = align=center, text width=3em
      ]
      % draw horizontal line
      draw (0,0) -- (12,0);
      % draw vertical lines woith nodes
      draw ( 0,-3pt) node[below] 00' -- ++ (0,6pt) node[above] Lesson starts;
      draw ( 2,-3pt) node[below] 10' -- ++ (0,6pt) node[above] Pre-text;
      draw ( 9,-3pt) node[below] 45' -- ++ (0,6pt) node[above] Text;
      draw (12,-3pt) node[below] 60' -- ++ (0,6pt) node[above] Ends;
      endtikzpicture
      enddocument


      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%2f496153%2ftext-alignment-in-tikzpicture%23new-answer', 'question_page');

        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        5














        By default, the text of a node is put in an hbox, and therefore occupies only one line. There are several ways to do what you want, one of which is to specify align=left (or similar) for your multiline text node:



         documentclassarticle
        usepackagetikz

        begindocument

        begintikzpicture
        % draw horizontal line

        draw (0,0) -- (12,0);

        % draw vertical lines
        foreach x in 0, 2, 9, 12 draw (x cm,3pt) -- (x cm,-3pt);

        % draw nodes
        draw (0,0) node[below=3pt] 00' node[above=3pt, align=left] Lesson\starts; % <- !
        draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
        draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
        draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

        endtikzpicture

        enddocument


        Screenshot



        For details and other techniques, see Text Parameters: Alignment and Width for Multi-Line Text in the PGF & TikZ manual (page 229 for version 3.1.3).



        Briefly, the other techniques given in the manual are:




        • use a tabular inside your node:



          draw (0,0) node[below=3pt] 00' node[above=3pt]
          %
          begintabular@l@
          Lesson\
          starts
          endtabular%
          ;



        • ask for automatic line-breaking inside the node by specifying a fixed text width:



          draw (0,0) node[below=3pt] 00' node[above=3pt, text width=3em]
          Lesson starts;






        share|improve this answer





























          5














          By default, the text of a node is put in an hbox, and therefore occupies only one line. There are several ways to do what you want, one of which is to specify align=left (or similar) for your multiline text node:



           documentclassarticle
          usepackagetikz

          begindocument

          begintikzpicture
          % draw horizontal line

          draw (0,0) -- (12,0);

          % draw vertical lines
          foreach x in 0, 2, 9, 12 draw (x cm,3pt) -- (x cm,-3pt);

          % draw nodes
          draw (0,0) node[below=3pt] 00' node[above=3pt, align=left] Lesson\starts; % <- !
          draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
          draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
          draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

          endtikzpicture

          enddocument


          Screenshot



          For details and other techniques, see Text Parameters: Alignment and Width for Multi-Line Text in the PGF & TikZ manual (page 229 for version 3.1.3).



          Briefly, the other techniques given in the manual are:




          • use a tabular inside your node:



            draw (0,0) node[below=3pt] 00' node[above=3pt]
            %
            begintabular@l@
            Lesson\
            starts
            endtabular%
            ;



          • ask for automatic line-breaking inside the node by specifying a fixed text width:



            draw (0,0) node[below=3pt] 00' node[above=3pt, text width=3em]
            Lesson starts;






          share|improve this answer



























            5












            5








            5







            By default, the text of a node is put in an hbox, and therefore occupies only one line. There are several ways to do what you want, one of which is to specify align=left (or similar) for your multiline text node:



             documentclassarticle
            usepackagetikz

            begindocument

            begintikzpicture
            % draw horizontal line

            draw (0,0) -- (12,0);

            % draw vertical lines
            foreach x in 0, 2, 9, 12 draw (x cm,3pt) -- (x cm,-3pt);

            % draw nodes
            draw (0,0) node[below=3pt] 00' node[above=3pt, align=left] Lesson\starts; % <- !
            draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
            draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
            draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

            endtikzpicture

            enddocument


            Screenshot



            For details and other techniques, see Text Parameters: Alignment and Width for Multi-Line Text in the PGF & TikZ manual (page 229 for version 3.1.3).



            Briefly, the other techniques given in the manual are:




            • use a tabular inside your node:



              draw (0,0) node[below=3pt] 00' node[above=3pt]
              %
              begintabular@l@
              Lesson\
              starts
              endtabular%
              ;



            • ask for automatic line-breaking inside the node by specifying a fixed text width:



              draw (0,0) node[below=3pt] 00' node[above=3pt, text width=3em]
              Lesson starts;






            share|improve this answer















            By default, the text of a node is put in an hbox, and therefore occupies only one line. There are several ways to do what you want, one of which is to specify align=left (or similar) for your multiline text node:



             documentclassarticle
            usepackagetikz

            begindocument

            begintikzpicture
            % draw horizontal line

            draw (0,0) -- (12,0);

            % draw vertical lines
            foreach x in 0, 2, 9, 12 draw (x cm,3pt) -- (x cm,-3pt);

            % draw nodes
            draw (0,0) node[below=3pt] 00' node[above=3pt, align=left] Lesson\starts; % <- !
            draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
            draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
            draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

            endtikzpicture

            enddocument


            Screenshot



            For details and other techniques, see Text Parameters: Alignment and Width for Multi-Line Text in the PGF & TikZ manual (page 229 for version 3.1.3).



            Briefly, the other techniques given in the manual are:




            • use a tabular inside your node:



              draw (0,0) node[below=3pt] 00' node[above=3pt]
              %
              begintabular@l@
              Lesson\
              starts
              endtabular%
              ;



            • ask for automatic line-breaking inside the node by specifying a fixed text width:



              draw (0,0) node[below=3pt] 00' node[above=3pt, text width=3em]
              Lesson starts;







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 13 hours ago

























            answered 13 hours ago









            frougonfrougon

            3,505918




            3,505918























                3














                Play with the width of the text:



                 [![documentclassarticle
                usepackagetikz

                begindocument

                begintikzpicture
                % draw horizontal line

                draw (0,0) -- (12,0);

                % draw vertical line
                foreach x in 0,2,9,12
                draw (x cm,3pt) -- (x cm,-3pt);

                % draw nodes
                draw (0,0) node[below=3pt] 00' node[above=3pt,text width = 1cm, align=center] Starts New ;
                % draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; % <- !
                draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
                draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
                draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

                endtikzpicture

                enddocument


                enter image description here






                share|improve this answer



























                  3














                  Play with the width of the text:



                   [![documentclassarticle
                  usepackagetikz

                  begindocument

                  begintikzpicture
                  % draw horizontal line

                  draw (0,0) -- (12,0);

                  % draw vertical line
                  foreach x in 0,2,9,12
                  draw (x cm,3pt) -- (x cm,-3pt);

                  % draw nodes
                  draw (0,0) node[below=3pt] 00' node[above=3pt,text width = 1cm, align=center] Starts New ;
                  % draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; % <- !
                  draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
                  draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
                  draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

                  endtikzpicture

                  enddocument


                  enter image description here






                  share|improve this answer

























                    3












                    3








                    3







                    Play with the width of the text:



                     [![documentclassarticle
                    usepackagetikz

                    begindocument

                    begintikzpicture
                    % draw horizontal line

                    draw (0,0) -- (12,0);

                    % draw vertical line
                    foreach x in 0,2,9,12
                    draw (x cm,3pt) -- (x cm,-3pt);

                    % draw nodes
                    draw (0,0) node[below=3pt] 00' node[above=3pt,text width = 1cm, align=center] Starts New ;
                    % draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; % <- !
                    draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
                    draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
                    draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

                    endtikzpicture

                    enddocument


                    enter image description here






                    share|improve this answer













                    Play with the width of the text:



                     [![documentclassarticle
                    usepackagetikz

                    begindocument

                    begintikzpicture
                    % draw horizontal line

                    draw (0,0) -- (12,0);

                    % draw vertical line
                    foreach x in 0,2,9,12
                    draw (x cm,3pt) -- (x cm,-3pt);

                    % draw nodes
                    draw (0,0) node[below=3pt] 00' node[above=3pt,text width = 1cm, align=center] Starts New ;
                    % draw (0,0) node[below=3pt] 00' node[above=3pt] Lesson\starts; % <- !
                    draw (2,0) node[below=3pt] 10' node[above=3pt] Pre-text;
                    draw (9,0) node[below=3pt] 45' node[above=3pt] Text;
                    draw (12,0) node[below=3pt] 60' node[above=3pt] Ends;

                    endtikzpicture

                    enddocument


                    enter image description here







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered 13 hours ago









                    DenisDenis

                    2,861623




                    2,861623





















                        2














                        One more similar solution with slightly more compact code:



                        documentclassarticle
                        usepackagetikz

                        begindocument
                        begintikzpicture[
                        every node/.style = align=center, text width=3em
                        ]
                        % draw horizontal line
                        draw (0,0) -- (12,0);
                        % draw vertical lines woith nodes
                        draw ( 0,-3pt) node[below] 00' -- ++ (0,6pt) node[above] Lesson starts;
                        draw ( 2,-3pt) node[below] 10' -- ++ (0,6pt) node[above] Pre-text;
                        draw ( 9,-3pt) node[below] 45' -- ++ (0,6pt) node[above] Text;
                        draw (12,-3pt) node[below] 60' -- ++ (0,6pt) node[above] Ends;
                        endtikzpicture
                        enddocument


                        enter image description here






                        share|improve this answer



























                          2














                          One more similar solution with slightly more compact code:



                          documentclassarticle
                          usepackagetikz

                          begindocument
                          begintikzpicture[
                          every node/.style = align=center, text width=3em
                          ]
                          % draw horizontal line
                          draw (0,0) -- (12,0);
                          % draw vertical lines woith nodes
                          draw ( 0,-3pt) node[below] 00' -- ++ (0,6pt) node[above] Lesson starts;
                          draw ( 2,-3pt) node[below] 10' -- ++ (0,6pt) node[above] Pre-text;
                          draw ( 9,-3pt) node[below] 45' -- ++ (0,6pt) node[above] Text;
                          draw (12,-3pt) node[below] 60' -- ++ (0,6pt) node[above] Ends;
                          endtikzpicture
                          enddocument


                          enter image description here






                          share|improve this answer

























                            2












                            2








                            2







                            One more similar solution with slightly more compact code:



                            documentclassarticle
                            usepackagetikz

                            begindocument
                            begintikzpicture[
                            every node/.style = align=center, text width=3em
                            ]
                            % draw horizontal line
                            draw (0,0) -- (12,0);
                            % draw vertical lines woith nodes
                            draw ( 0,-3pt) node[below] 00' -- ++ (0,6pt) node[above] Lesson starts;
                            draw ( 2,-3pt) node[below] 10' -- ++ (0,6pt) node[above] Pre-text;
                            draw ( 9,-3pt) node[below] 45' -- ++ (0,6pt) node[above] Text;
                            draw (12,-3pt) node[below] 60' -- ++ (0,6pt) node[above] Ends;
                            endtikzpicture
                            enddocument


                            enter image description here






                            share|improve this answer













                            One more similar solution with slightly more compact code:



                            documentclassarticle
                            usepackagetikz

                            begindocument
                            begintikzpicture[
                            every node/.style = align=center, text width=3em
                            ]
                            % draw horizontal line
                            draw (0,0) -- (12,0);
                            % draw vertical lines woith nodes
                            draw ( 0,-3pt) node[below] 00' -- ++ (0,6pt) node[above] Lesson starts;
                            draw ( 2,-3pt) node[below] 10' -- ++ (0,6pt) node[above] Pre-text;
                            draw ( 9,-3pt) node[below] 45' -- ++ (0,6pt) node[above] Text;
                            draw (12,-3pt) node[below] 60' -- ++ (0,6pt) node[above] Ends;
                            endtikzpicture
                            enddocument


                            enter image description here







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered 13 hours ago









                            ZarkoZarko

                            137k873182




                            137k873182



























                                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%2f496153%2ftext-alignment-in-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

                                ParseJSON using SSJSUsing AMPscript with SSJS ActivitiesHow to resubscribe a user in Marketing cloud using SSJS?Pulling Subscriber Status from Lists using SSJSRetrieving Emails using SSJSProblem in updating DE using SSJSUsing SSJS to send single email in Marketing CloudError adding EmailSendDefinition using SSJS

                                Кампала Садржај Географија Географија Историја Становништво Привреда Партнерски градови Референце Спољашње везе Мени за навигацију0°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.340°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.34МедијиПодациЗванични веб-сајту

                                19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу