Search found 10 matches

by MakezHD
Fri Mar 01, 2019 2:21 pm
Forum: Text Formatting
Topic: Center figures out of margin
Replies: 3
Views: 6243

Center figures out of margin

You can remove both the figure environment and the center environment. figure is for floating, referencing, captions, but you don't use it anyway. Instead of \begin{center} and \end{center} just keep \centering , otherwise you get unnecessary space before and after it. \centering is for pure ...
by MakezHD
Wed Feb 27, 2019 1:08 pm
Forum: Text Formatting
Topic: Center figures out of margin
Replies: 3
Views: 6243

Center figures out of margin

I have some figures that are very big, so I placed them in landscape mode.

They are still too big for landscape mode so they get out of the page's margin. The problem is that the figure looks like it has a big blank space in the upper part of the page, so I would like to center the figure so that ...
by MakezHD
Mon Feb 25, 2019 10:10 am
Forum: Text Formatting
Topic: lstlistoflistings toc vertical spacings
Replies: 6
Views: 4754

lstlistoflistings toc vertical spacings

In a book, LaTeX tries to keep the last line consistent throughout the pages. To that end, it may add vertical space between paragraphs, list entries, ...
So with different numbers of entries in LOF/LOL, you get different such added space.
If you don't want that, add
\raggedbottom to your preamble ...
by MakezHD
Mon Feb 18, 2019 10:15 am
Forum: Text Formatting
Topic: lstlistoflistings toc vertical spacings
Replies: 6
Views: 4754

lstlistoflistings toc vertical spacings

I guess that depends on the class you're using.
For report class, you could try sth. like
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@chapter}{\chaptermark{#1}}{%
\chaptermark{#1}%
\addtocontents{lol}{\protect\addvspace{10\p@}}%
}{\typeout{Chapters patched for list-of-listings.}}{\typeout ...
by MakezHD
Fri Feb 15, 2019 2:12 pm
Forum: Text Formatting
Topic: lstlistoflistings toc vertical spacings
Replies: 6
Views: 4754

lstlistoflistings toc vertical spacings

I guess that depends on the class you're using.
For report class, you could try sth. like
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@chapter}{\chaptermark{#1}}{%
\chaptermark{#1}%
\addtocontents{lol}{\protect\addvspace{10\p@}}%
}{\typeout{Chapters patched for list-of-listings.}}{\typeout ...
by MakezHD
Fri Feb 15, 2019 1:08 pm
Forum: Text Formatting
Topic: lstlistoflistings toc vertical spacings
Replies: 6
Views: 4754

lstlistoflistings toc vertical spacings

A need my lstlistoflistings in the table of contents to be grouped by chapters and to use the same vertical spacings that are used in figures and tables listings.

What do I need to do add/modify to get those spacings?

Thank you.
by MakezHD
Sun Feb 28, 2016 1:58 pm
Forum: Graphics, Figures & Tables
Topic: Take formula to the left (not centered)
Replies: 4
Views: 2876

Take formula to the left (not centered)

Code: Select all

 \\
1)\[ f(x,y) =
\begin{cases}
xy\dfrac{x^2-y^2}{x^2+y^2} & \left(x,y\right) \neq \left(0,0\right)\\
0 & \left(x,y\right) = \left(0,0\right)
\end{cases}
\; , \; D_{12}f(0,0) \neq D_{21}f(0,0).
\]
\\
There you go
by MakezHD
Sun Feb 28, 2016 12:46 pm
Forum: Graphics, Figures & Tables
Topic: Take formula to the left (not centered)
Replies: 4
Views: 2876

Take formula to the left (not centered)

I have a formula (using cases) centered and I want to take it to the left, but I don't know how to do it. Could someone help me? Thanks.

Image
by MakezHD
Fri Jan 22, 2016 11:44 am
Forum: Graphics, Figures & Tables
Topic: Function by parts help
Replies: 5
Views: 4866

Re: Function by parts help

It worked. Thanks!!
by MakezHD
Thu Jan 21, 2016 8:24 pm
Forum: Graphics, Figures & Tables
Topic: Function by parts help
Replies: 5
Views: 4866

Function by parts help

I'm trying to write a function by parts but when I write everything and compile a (1) appears at the right side and I don't know why. Could someone help me?