URL latex linebreak

When a URL is over a line and goes onto a second line, the hyperlink only uses the first line. Is there a way to get around this and yet still have the URL on multiple lines? Answer You should use the url package: \usepackage{url} … \url{http://long.url.com/… …/stuff} and it will break it for you … Read more

Left align block of equations

I want to left align a block of equations. The equations in the block itself are aligned, but that’s not related at all to my question! I want to left align the equations rather than have them centered all the time, because it looks dumb with narrow centered equations. Example, I want to left align … Read more

How do I hide bullets in LaTeX lists?

Semantically, I want an itemized list, but visually I just want some space. How can I hide the bullets? Answer \item[] text Optionally, you can put something inside the []. AttributionSource : Link , Question Author : James A. Rosen , Answer Author : alamodey

How to write “C++” in LaTeX

How can I write “C++” in LaTeX so that the output looks nice. For example C$++$ doesn’t look good: the plus signs are too big and there is too much space. Answer The standard solution for cases like this is to use verbatim: \verb!C++! AttributionSource : Link , Question Author : mjsr , Answer Author … Read more

Run pdflatex quietly [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow. Closed 8 years ago. Improve this question I’m calling pdflatex from within my (C++) program using system(), needless to say all the garbage pdflatex puts on screen is a bit … Read more

How to make cheat sheets in Latex? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow. Closed 3 years ago. Improve this question I want to make cheat sheets for my personal use. I want to use this opportunity to get a … Read more

How do I install a LaTeX .sty file on OSX?

I have a LaTeX project set up: tex/ – documents/ – some_file.tex – support/ – todonotes.sty where some_file.tex uses todonotes: \usepackage[colorinlistoftodos,textwidth=0.9\marginparwidth]{todonotes} But I get “LaTeX Error: File `todonotes.sty’ not found” when I try to build the PDF in TextMate. How do I tell LaTex or TextMate about my .sty file? Later To be specific, I’m … Read more

How to get rid of navigation bars in beamer

How to remove the navigation bar of sections and subsections on the top of each slide generated from a beamer latex file? By the way, in my preamble, I wrote: \setbeamertemplate{navigation symbols}{} \usepackage{beamerthemeshadow} Answer I don’t know whether this is what you want, but if you are talking about the navigation bar which has the … Read more