Tagged Questions
1
vote
0answers
20 views
How to remove the vertical space between two images latex [migrated]
I know this topic is allready discussed but I still don't manage to solve this problem. I have 2 pictures in my document. I would like to delete the white vertical space between them. I found ...
-1
votes
0answers
29 views
Latex - Environment lstlisting undefined [closed]
Hi I have installed the listings package in order to display my code. I am running the following code within my document:
\begin{lstlisting}
public static void main(String[] args) {
...
1
vote
1answer
68 views
How to create an inline latex block in emacs (like \emph{…})
This SO question here asks for an emacs shortcut for creating a latex block, and one solution (proposed by me, but just coming from the emacs documentation) is to use C-c C-t.
Is there something ...
0
votes
0answers
35 views
Missing $ inserted Error [closed]
I am trying to use the CRPS formula in Latex and I am very new to it. I am getting a Missing $ inserted error from the equation below. I know it's a common problem, but I haven't been able to solve ...
3
votes
2answers
81 views
How do I use two variables in title of a plot in R?
How do I use variables in Latex expressions in R?
For example:
a<-5;
b<-1;
plot(X, Y, main=expression(paste(p==a,q==b)))
a and b are R variables. Also I want to have "," in Output?
How do I ...
0
votes
0answers
295 views
how to edit linear programming in LaTeX? [closed]
How to edit linear programming in LaTeX just as the following
Max z=x1 + 12x2
s.t. 3x1 + x2 + 12x3 ≤ 5
x1 + x3 ≤ 16
x2 = 14
xj ≥ 0, j=1,2,3.
Thanks for all your ...
0
votes
0answers
29 views
Making the 2nd figure to be in middle in case of subfigure [closed]
I have two figures, by using the subfigure package I am making them next to each other. The second figure is small so I want to either keep in center or top. Now by default it's keeping the figure to ...
1
vote
0answers
32 views
different captions on latex [closed]
I have 4 tables the first table has a caption of Table A: Tilte
The other three tables have captions of Table1: title , Table2: Tilte and Table3: tilte
if I used
\caption { Title }
it will ...
1
vote
2answers
99 views
How to use '_' and other characters on LATEX?
I need to put samples of some comand lines in a LaTeX file, but every time I try to use some characters (such as _) I got the " !Missing $ inserted" error.
How can I write strings such as :
...
5
votes
2answers
303 views
How to insert a LaTeX environment around a block of text in emacs?
I'm using emacs with cdlatex-mode to edit LaTeX files. I would like to know how to insert a LaTeX environment around a block of text that is already written so that the \begin{} goes before the ...
0
votes
1answer
169 views
Using lstlisting environment withing macros?
I tried to define a macro, for me to quickly create a listing environment. The definition looked like that:
% \def \lstlistingcode[#1] { \begin{lstlisting}#1\end{lstlisting} }
which ends in an ...
3
votes
1answer
826 views
Howto - Latex syntax with \section[]{}: Putting Brackets [ Inside of Brackets
I am writing a beamer presentation. My problem is a syntax issue with \section[Outline]{title}. \section is working fine with all of my section titles except in the following example:
...
3
votes
1answer
2k views
Alternating row colors in tabular(*|x)?
I’m trying to create a table in my document that resembles more or less the table in the picture below:
This table is supposed to be stretched horizontally to \textwidth. My first attempt with ...
2
votes
1answer
2k views
missing $ inserted
Hi
I have trubles with compiling this
\begin{equation}
J = \sum_{j=1}^{C}
\end{equation}
I constantly gets an error
missing $ inserted
which is quite strange because I'm pretty sure ...
2
votes
1answer
4k views
How to change the space between the itemize items in latex? [closed]
How to change the space between the itemize "items" in latex so that I can continue to use the "itemize" and "item" tag without needing to redefine any new tags?
Thank for your help!
5
votes
4answers
161 views
make latex honor newlines
Is there an environment in LaTeX to accomplish this?
Feb 22 06:00AM - Wake up
Feb 22 06:15AM - Have breakfast
Feb 22 08:00AM - A very long sentence that I will have to break at some point
...
2
votes
2answers
251 views
Latex: how to make some text and an equation inseparable?
I mean, I want something like this:
.... bla blabla, the equation is:
\begin{equation}
...
\end{equation}
And I want to finally render the text and the equation together, that is, no page breaks, ...
1
vote
2answers
10k views
Latex: How do I reduce the size of an entire latex table?
I have a table that I want to appear a little smaller to save some space. What environment can I put it in to shrink the whole table by a fraction ?
0
votes
2answers
955 views
How to cite full author name using Jabref in latex?
Hi. I am using JabRef for citation and Harvard style. I want cite the full author name in some cases. How do I do this with JabRef?
For example:
Many people defined frogs as animals (John ...
0
votes
3answers
295 views
align-like environment in LaTeX for lines of texts
I am looking for a LaTeX environment, that is capable of formatting given paragraph(s) with a slight indentation and increasing line counters within parenthesis, e.g.:
(1) Lorem Ipsum
(2) ...
0
votes
1answer
202 views
Latex: access the content of an environment while using \newenvironment
I'm trying to make my own environment with \newenvironment.
Is it somehow possible to access the "body" of the environment?
For example if the user uses
\begin{myenv}
i'm the content
...
0
votes
2answers
419 views
Latex tag for making a comment appear or disappear in pdf?
Is it possible to tag sections of your .tex file so that you can make text appear or not?
I have a long document and would like to be able to comment a certain section in each chapter, and produce ...
1
vote
1answer
4k views
Scalebox environment in LaTeX
The graphicx package provides a scalebox command. I'd like to encapsulate it in an environment like that:
\newenvironment{scaleb}{ \scalebox{0.7}{ } {}}
However, the second example below works, but ...
2
votes
1answer
455 views
Latex for Mac OS X [closed]
Does anyone know of a latex distribution/front end they highly recommend for OS X?
If the front end had some features you recommend, what are they and why?
Thanks!
1
vote
1answer
425 views
Environment inside a longtable with LaTeX
I would like to create a new environment to print a header and a footer between sections of a table.
I did this:
\documentclass{article}
\usepackage{longtable}
...
2
votes
3answers
879 views
Creating an environment in Latex
Hi I'm trying to create an environment in Latex that recreates the effect of the following.
\colorbox{bg}{\ttfamily{\color[RGB]{222,222,222}
Hello
Whats up
}
}
I want to be able to say.
...
12
votes
4answers
8k views
“<<” sign in Latex
I need to add the symbol "<<" in Latex. If i simply write "<<", i get in pdf some strange symbols.
What should i put in front of "<<" so that in .pdf i see "<<" ?
Thanks
8
votes
2answers
27k views
how to add a jpg image in Latex
I wanna insert a .jpg image(that is in my current folder, where the .tex file is) after a paragraph. How can i do it in Latex? What should i include / what commands should i use?
Thanks
4
votes
2answers
3k views
how to rename sections in latex
How can i give another name to the main sections of a scientific paper in Latex? So instead of 'References' i wanna write a different title, instead of 'Abstract' another, and so on.
Regards
0
votes
3answers
596 views
Why is my references section of my LaTeX document empty, and how can I change its name?
In my document I have to specify the references I'm using. I used this code in the preamble:
\bibliographystyle{abbrv}
\bibliography{main}
Where main is the .bib file from the same folder, and ...
2
votes
7answers
467 views
latex question (problem)
My latex file is:
\title{\large\textbf{Optimizarea rela\c tiei dintre structur\u a \c si comportament \^in modelarea UML}}
\author{
Sorin Oltean \\
...
1
vote
1answer
225 views
How to define a multipage environment not interrupted by tables and figures?
I have defined a new LaTeX environment for excursions in a book chapter I am writing. The environment is multipage and often includes inline images. Moreover, I am using the shaded environment to give ...
3
votes
1answer
212 views
.tex files not found when placed in a folder declared in TEXINPUTS
I have a set of documents based on a LaTeX template. Every document has its own folder, as following:
docs-folder
|-doc #1
|-doc #2
...
|-doc #n
|-texmf
|-tex
|-bibtex
|-fonts
|-docs
...
4
votes
4answers
766 views
Perform separate compilation of Latex documents
When compiling latex documents the compiler emits a lot of "object" files. This clutters the directories I'm working on and it difficults the use of VCS like SVN. When I work with C++ code I have ...
5
votes
2answers
943 views
Tripple-wrapping fails: \colorbox → \NewEnviron → \newenvironment fails
I am trying to wrap an environment created with \NewEnviron (package 'environ') into an old good \newenvironment:
\NewEnviron{test}{\colorbox[gray]{0.7}{\BODY}}
...
2
votes
7answers
3k views
Suppress indentation after environment in LaTeX
I'm trying to create a new environment in my LaTeX document where indentation in the next paragraph following the environment is suppressed.
I have been told (TeXbook and LaTeX source) that by ...
3
votes
2answers
357 views
How to create a selfdefined table-environment with the caption at the end of the table with LaTeX?
I have a custom table-environment defined with \newenvironment. I have a caption in this environment, but I want to have it at the end.
My environment looks (a little simplified) like this:
...