0
votes
1answer
13 views
latex command reflection
Hello *,
I have the following use case: A table have a section, subsection or subsubsection heading like:
\section*{Table name}
\begin{tabular*} ...
\end{tabular*}
Because the table …
0
votes
1answer
20 views
LaTeX tabbing overlap
Hello, I'm having some frustration with the LaTeX tabbing environment.
For example, in this code the who-GEN friend-PL end up overlapping:
\begin{tabbing}
Aarude \= suhrthukalanu \= …
1
vote
3answers
52 views
Replace strings in LaTeX
I want LaTeX to automatically replace strings like " a ", " s ", " z " with " a~", " s~", " z~", because they can't be at line end. Any suggestions?
2
votes
3answers
67 views
LaTeX Optional Arguments
How do you create a command with optional arguments in LaTeX?
Something like:
\newcommand{\sec}[2][]{
\section*{#1
\ifsecondargument
and #2
\fi}
}
}
Then, I can …
1
vote
2answers
38 views
Latex Letter: From Address Left aligned
This is my first time using Latex to write a letter. I am using the letter class. When I use:
\address{100 From Address \\ City, State \\ Pin}
The from address becomes right aligned. Is there …
3
votes
5answers
79 views
How to force two figures to stay on the same page in LaTeX?
I have two images that I want to display on a page as figures. Each eats up little less than half of the space available so there's not much room for any other stuff on that page, but I know there is …
4
votes
6answers
127 views
Replace all “\” characters which are *not* inside “<code>” tags
First things first: Neither this, this, this nor this answered my question. So I'll open a new one.
Please read
Okay okay. I know that regexes are not the way to parse general HTML. Please take note …
1
vote
2answers
69 views
What is the best way to learn texmacs?
I currently use Kile to edit LaTeX documents. I don't like kile for a couple of reasons so I was thinking of trying to learn how to use texmacs. I have been through a tutorial for emacs which I am now …
0
votes
1answer
35 views
Icelandic, utf8 and utf8x in LaTeX
First of all, what's the difference between utf8 and utf8x in
\usepackage[utf8]{inputenc}
\usepackage[utf8x]{inputenc}
when used in LaTeX?
Secondly, what packages are required when writing an …
2
votes
4answers
107 views
How to create a new LaTeX command that behaves something like \verb?
I have been using LaTeX from sometime now, but have never actually gotten my hands dirty declaring a new command, as I try to avoid that.
However, I need to add monospace text often in my document …
1
vote
2answers
73 views
Converting Array of Java Strings into LaTeX table
I have an two dimension array that contains strings and want to create a LaTeX table with them.
The problem is that they could be longer and there has to be line breakes after 15 characters. The
Say …
3
votes
2answers
55 views
Developing ebooks- software?
I've written a few documents for friends or blogs on software testing, job hunting and android development. I've been toying with the idea of producing some programming-related ebooks. However, …
1
vote
1answer
41 views
Lyx: Can I beautify JSON inside a document?
I was wondering if anyone knew how to beautify or format JSON inside a Latex document. I am using Lyx as a front-end for writing the latex file. Are there any addons that people use? I tried to search …
1
vote
3answers
63 views
New environment in latex using other environments, compiler doesn’t find the \end
I'm setting up a new environment for my latex document for consistent tables. It looks like this:
\newenvironment{defaultTable}[2] {
\begin{table}[h]
\noindent
\tabularx{\textwidth}{#1}
…
0
votes
2answers
72 views
What’s the most straightforward way to typeset MLA-style college essays in LaTeX?
I've been using LaTeX for a little while now to typeset my algorithms homework, and I really like the quality of the output as well as the ease-of-use. I'd like to starting using LaTeX in other …
