Maths Partner
Maths Partner
  • Видео 792
  • Просмотров 2 173 177
LaTeX in a Minute: Page Numbering
\pagenumbering{%style%}
%page numbering styles
arabic - 1, 2, 3, ...
alph - a, b, c, ...
Alph - A, B, C, ...
roman - i, ii, iii, ...
Roman - I, II, III, ...
gobble - no page numbers
%start from a particular number
\setcounter{page}{%number%}
%override resetting page counter
\makeatletter

enewcommand\pagenumbering[1]{\gdef\thepage{\csname @#1\endcsname\c@page}}
\makeatother
Просмотров: 16 973

Видео

LaTeX in a Minute: Rotating and Reflecting Images
Просмотров 3,2 тыс.Год назад
ROTATE ANTICLOCKWISE: \includegraphics[angle=30]{Image} REFLECT HORIZONTALLY: \reflectbox{\includegraphics{Image}} REFLECT VERTICALLY: \scalebox{1}[-1]{\includegraphics{Image}}
LaTeX in a Minute: Simple Document Watermark
Просмотров 5 тыс.Год назад
\usepackage[firstpageonly]{draftwatermark} \SetWatermarkText{My Watermark} \SetWatermarkScale{4} \SetWatermarkAngle{30} \SetWatermarkColor{red!50!white} \SetWatermarkHorCenter{0.25\paperwidth} \SetWatermarkVerCenter{0.3\paperheight}
LaTeX in a Minute: Wrapping Text Around Images
Просмотров 6 тыс.Год назад
\usepackage{wrapfig} \begin{wrapfigure}{r (right) or l (left)}{indent} % \includegraphics{Image} % \end{wrapfigure}
LaTeX in a Minute: Floats
Просмотров 2,3 тыс.Год назад
%types of floats: h - approximately HERE t - TOP of the page b - BOTTOM of the page p - special float PAGE ! - overrides internal parameters for good floats (e.g., amount of text or number of floats ordinarily allowed on a page) %extra floats: \usepackage{float} H - overrides all float parameters
LaTeX in a Minute: Figure Environments
Просмотров 1 тыс.Год назад
ruclips.net/video/hUvXBrLykrU/видео.html
LaTeX in a Minute: Elements Side-by-Side Using a Minipage
Просмотров 6 тыс.Год назад
LaTeX in a Minute: Elements Side-by-Side Using a Minipage
LaTeX in a Minute: Loading Images From Folders
Просмотров 1,7 тыс.Год назад
Inserting images: ruclips.net/video/hUvXBrLykrU/видео.html \graphicspath{{FolderName/}} \graphicspath{{FolderName/}{OtherFolderName/}}
LaTeX in a Minute: Inserting Images
Просмотров 1,1 тыс.Год назад
\usepackage{graphicx} \usepackage[export]{adjustbox} \includegraphics[width=0.5\textwidth, angle=90, right]{ImageName}
LaTeX in a Minute: Hotkeys in Overleaf
Просмотров 1,5 тыс.Год назад
Full list of hotkeys here: www.overleaf.com/learn/how-to/Hotkeys Ctrl End go to the last line in document Ctrl Home go to the first line in document Ctrl Shift L go to a specific line in document Ctrl F find and replace word Ctrl B make bold Ctrl I make italics Ctrl U make uppercase Ctrl Shift U make lowercase Ctrl D delete line/section Ctrl / comment line/section Ctrl Space common LaTeX comman...
LaTeX in a Minute: Rotating Text
Просмотров 3,1 тыс.Год назад
\usepackage{graphicx} \rotatebox[origin=c]{"Degrees"}{\parbox{"Text width"}{\centering "Text"}}
LaTeX in a Minute: Text Across Multiple Table Rows
Просмотров 3 тыс.Год назад
\usepackage{multirow} \multirow{"Number of rows"}{"Text width"}{"Text"}
LaTeX in a Minute: Text Across Multiple Table Columns
Просмотров 3,4 тыс.Год назад
\multicolumn{"Number of columns"}{"Text alignment"}{"Text"}
LaTeX in a Minute: Table Column Text Alignment with Custom Widths
Просмотров 9 тыс.Год назад
LaTeX in a Minute: Table Column Text Alignment with Custom Widths
LaTeX in a Minute: Changing Table Column Widths
Просмотров 20 тыс.Год назад
\usepackage{array} p{"column width"} %align top vertically m{"column width"} %align middle vertically b{"column width"} %align bottom vertically
LaTeX in a Minute: Changing Table Row Heights
Просмотров 18 тыс.Год назад
LaTeX in a Minute: Changing Table Row Heights
LaTeX in a Minute: Scaling Objects
Просмотров 4 тыс.Год назад
LaTeX in a Minute: Scaling Objects
LaTeX in a Minute: Multiple Page Styles
Просмотров 4 тыс.Год назад
LaTeX in a Minute: Multiple Page Styles
LaTeX in a Minute: Custom Page Layout
Просмотров 8 тыс.Год назад
LaTeX in a Minute: Custom Page Layout
LaTeX in a Minute: Make Inline Maths Expressions Bigger
Просмотров 4,5 тыс.Год назад
LaTeX in a Minute: Make Inline Maths Expressions Bigger
LaTeX in a Minute: Changing Page Margins
Просмотров 20 тыс.Год назад
LaTeX in a Minute: Changing Page Margins
LaTeX in a Minute: Line Spacing
Просмотров 44 тыс.Год назад
LaTeX in a Minute: Line Spacing
LaTeX in a Minute: Paragraph Indents and Formatting
Просмотров 32 тыс.Год назад
LaTeX in a Minute: Paragraph Indents and Formatting
LaTeX in a Minute: Blank Spaces and Pages
Просмотров 12 тыс.Год назад
LaTeX in a Minute: Blank Spaces and Pages
LaTeX in a Minute: No more preamble (sort of)
Просмотров 2 тыс.Год назад
LaTeX in a Minute: No more preamble (sort of)
LaTeX in a Minute: Fast Maths Diagrams Using Tikz
Просмотров 6 тыс.Год назад
LaTeX in a Minute: Fast Maths Diagrams Using Tikz
Revision (6 of 6: Correlation and Regression)
Просмотров 2562 года назад
Revision (6 of 6: Correlation and Regression)
Revision (5 of 6: Hypothesis Testing)
Просмотров 1062 года назад
Revision (5 of 6: Hypothesis Testing)
Revision (4 of 6: Confidence Intervals)
Просмотров 1172 года назад
Revision (4 of 6: Confidence Intervals)
Revision (3 of 6: The Normal Distribution and Central Limit Theorem)
Просмотров 932 года назад
Revision (3 of 6: The Normal Distribution and Central Limit Theorem)

Комментарии

  • @cadhumberto
    @cadhumberto 8 часов назад

    Congrats man, I'm loving your videos.

  • @cadhumberto
    @cadhumberto День назад

    Thank you very much, the best video I've ever seen about this. Following since now. Huges from Brazil. ;)

  • @alicaopitz1865
    @alicaopitz1865 День назад

    You are my hero right now.

  • @perkelator9277
    @perkelator9277 2 дня назад

    Love your vids, this one had too many mistakes that were never resolved.

  • @Diego-to5jw
    @Diego-to5jw 10 дней назад

    For anyone stumbling into this guy's attempt at explaining stochastic calculus, please heed my advice and don't waste your time. He is an absolute retard, follows no logic or rigour and makes a shit ton of mistakes per video. I watched his entire playlist hoping it would all come together and I deeply regret it.

  • @lucasvatek6024
    @lucasvatek6024 11 дней назад

    saving my life i love you

  • @user-ih8yf2rv8f
    @user-ih8yf2rv8f 15 дней назад

    Amazing explanation

  • @hwi_3
    @hwi_3 17 дней назад

    Thanks your video is much better than my professors lecture :)

  • @userdan-c2e
    @userdan-c2e 18 дней назад

    Thank you this has helped a desperate student in Jordan you are great at delivering ideas and forming thoughts that everything you say is linked flawlessly in the most incredible way.

  • @ayeedsiita4318
    @ayeedsiita4318 25 дней назад

    Made me pass my exam

  • @ayeedsiita4318
    @ayeedsiita4318 25 дней назад

    Good job

  • @DallasPilcher
    @DallasPilcher 28 дней назад

    L.O.T.V.

  • @ACTUATOR24
    @ACTUATOR24 28 дней назад

    This is very helpful, can i ask if there is a way to update this table i.e. say I wish to indent the equation from the middle to the left of the column, I don't seem to be able to update the table properties?

  • @lowwl1fe
    @lowwl1fe 29 дней назад

    THANK YOU SO MUCH❤❤❤

  • @lowwl1fe
    @lowwl1fe 29 дней назад

    Thank you! This is the most helpful video about my problem - appreciate it❤

  • @entity0-h7e
    @entity0-h7e 29 дней назад

    I forgot some points that my math teacher mentioned, and I searched all over the place to find a similar or the precise method. I am so glad, as you have saved my day, sir.

  • @divine-favouranigbogu413
    @divine-favouranigbogu413 Месяц назад

    Thank you... This was very intuitive!!!!

  • @BeulahWilliams-u9t
    @BeulahWilliams-u9t Месяц назад

    I wish to meet you

  • @BeulahWilliams-u9t
    @BeulahWilliams-u9t Месяц назад

    I wish to meet you

  • @BeulahWilliams-u9t
    @BeulahWilliams-u9t Месяц назад

    I really like all the classes

  • @jakobbensch6620
    @jakobbensch6620 Месяц назад

    👍

  • @MiguelAngel-fu4uy
    @MiguelAngel-fu4uy Месяц назад

    This is amazing, thank you so much. I'm trying to add a modification but I can get it right. I'm trying to apply one style to odd pages and another one to even pages, but somehow it goets overwritten, do you have any suggestion? Thank you!

  • @PaulEstrada1
    @PaulEstrada1 Месяц назад

    Great explanation and the comparison between the methods in computing was great!

  • @gloryaly9684
    @gloryaly9684 Месяц назад

    Thankyouu for explaining it clearly

  • @niazghumro2350
    @niazghumro2350 Месяц назад

    Very nice and informative videos about stochastic calculus. A very extensive lectures abiut it. Stay blessed.

  • @clarkhughes9777
    @clarkhughes9777 Месяц назад

    Thank you so much for getting right to it and showing off some key options!

  • @ebrahimalam2575
    @ebrahimalam2575 Месяц назад

    Who all are watching the video at x0.75 :)

  • @HelPfeffer
    @HelPfeffer Месяц назад

    Why does the % affect it?

  • @AceOfHearts001
    @AceOfHearts001 Месяц назад

    cheers man

  • @codehelmet5173
    @codehelmet5173 2 месяца назад

    Wonderful explanation 👌👌

  • @faisal-ok1yp
    @faisal-ok1yp 2 месяца назад

    enewcommand{ \arraystretch}{2}

  • @semenivanoff8615
    @semenivanoff8615 2 месяца назад

    Your solution is not scalable. Imagine there will be 1000 numbers to compare. Will you write a million rules?. No. Redo with dataframes.

  • @NicholasJMV1981
    @NicholasJMV1981 2 месяца назад

    super easy!

  • @rossanaleblanc
    @rossanaleblanc 2 месяца назад

    Awesome! You are very clear, I appreciate that.

  • @sirknightartorias68
    @sirknightartorias68 2 месяца назад

    How to change the line spacing between only two lines?

  • @bob_bobsen
    @bob_bobsen 2 месяца назад

    Liked this explanation

  • @Ruwayda-m6s
    @Ruwayda-m6s 2 месяца назад

    Ok but how did u immediately start of with x+2? Was it a guess?

  • @aliencreation8744
    @aliencreation8744 2 месяца назад

    thanks

  • @rm0924
    @rm0924 2 месяца назад

    Alex ... I'm coming to the tail-end of the video and can already visualize how OBS is going to work for me. Great job on sharing your experience. I am in the process of creating training videos, and this session is going to change "night" to "daylight". Just today, I was having a Zoom discussion and sharing screens was a nightmare. Close sharing ...share another window .... oops! I need to reference another window. Well, all of the issues have been resolved for my Zoom sessions going forward. Ever indebted to you and the biggest "Namaste". Cheers.

  • @matematicacommarcospaulo
    @matematicacommarcospaulo 2 месяца назад

    Learning a lot with you

  • @matematicacommarcospaulo
    @matematicacommarcospaulo 2 месяца назад

    3:30 I understood how set up the things to display "point/points" and "mark/marks". But what if I want do do this adatped to my language in which it should be "ponto/pontos?"

  • @AlexCZhao
    @AlexCZhao 2 месяца назад

    Thank you!

  • @mwerensteijn
    @mwerensteijn 2 месяца назад

    You are a great teacher, thanks for the video!

  • @mwerensteijn
    @mwerensteijn 2 месяца назад

    Thanks a lot! Very helpful

  • @matematicacommarcospaulo
    @matematicacommarcospaulo 3 месяца назад

    how to delete the horizontal and vertical gray lines?

  • @lalaleyy6660
    @lalaleyy6660 3 месяца назад

    Thanks!😭🥹

  • @thecatthatbit181
    @thecatthatbit181 3 месяца назад

    Great

  • @argenisaguilar9045
    @argenisaguilar9045 3 месяца назад

    Great..thanks a lot..

  • @hindtabit-hr9rs
    @hindtabit-hr9rs 3 месяца назад

    Thank you

  • @mykhailoandrushchenko2222
    @mykhailoandrushchenko2222 3 месяца назад

    Thank you! This example is really useful