enabledeprecatedfontcommands
in the text field marked Custom.Search found 162 matches
- Mon Mar 27, 2017 7:41 pm
- Forum: LyX
- Topic: Fancy Header in Lyx
- Replies: 7
- Views: 7365
Fancy Header in Lyx
Go to Document --> Settings --> Document Class: add
- Sat Nov 05, 2016 3:13 pm
- Forum: Curricula Vitae / Résumés
- Topic: Twenty Seconds Resume/CV - Spacing Question
- Replies: 4
- Views: 8663
Twenty Seconds Resume/CV - Spacing Question
Minimal might not be the right word, all you need to describe your problem is:
\documentclass{article}
\usepackage{tikz}
\definecolor{mainblue}{HTML}{0E5484}
\definecolor{maingray}{HTML}{B9B9B9}
\newcommand\skills[1]{
\renewcommand{\skills}{
\begin{tikzpicture}
\foreach [count=\i] \x/\y in {#1 ...
\documentclass{article}
\usepackage{tikz}
\definecolor{mainblue}{HTML}{0E5484}
\definecolor{maingray}{HTML}{B9B9B9}
\newcommand\skills[1]{
\renewcommand{\skills}{
\begin{tikzpicture}
\foreach [count=\i] \x/\y in {#1 ...
- Thu Feb 25, 2016 6:18 pm
- Forum: General
- Topic: Plotting with Touchstone files
- Replies: 5
- Views: 5315
Plotting with Touchstone files
For example, to plot the first column versus the second and fourth columns, you can do as in the code below. The column count start at zero, hence x index=0. To plot different columns, just use different values for y index. The skip first n skips the first n lines of the file.
funclines3.png ...
funclines3.png ...
- Thu Feb 25, 2016 3:16 pm
- Forum: General
- Topic: Plotting with Touchstone files
- Replies: 5
- Views: 5315
Re: Plotting with Touchstone files
goltoof, could you specify exactly how that file should be read? Is it just one column vs. another? I understand there are other forms of these files, with more complex formats, do you need to generalize to those?
- Mon Oct 19, 2015 2:39 pm
- Forum: LyX
- Topic: vertical space before and after section heading
- Replies: 9
- Views: 69699
Re: vertical space before and after section heading
The onehalfspacing environments have been added to individual paragraphs because, somehow, the paragraph settings has been changed. Seems the simplest way of removing it is to select all the text, right click -> Paragraph settings. Set Line spacing to Default if it isn't already, and click Apply ...
- Mon Mar 16, 2015 10:59 pm
- Forum: LyX
- Topic: The authors and theirs affiliations don't appear
- Replies: 6
- Views: 5991
The authors and theirs affiliations don't appear
We really need more information. Which template is this, can you give a link?
- Tue Nov 22, 2011 9:18 am
- Forum: Text Formatting
- Topic: Equation Formatting Problem
- Replies: 2
- Views: 2412
Equation Formatting Problem
I'm surprised you got any output at all. The \center command isn't really defined, as far as I know, though there is a center environment. But you don't need that, as stuff within equation is centered anyway, unless you specify otherwise. Further, as equation is a displayed math environment, there ...
- Sat Nov 19, 2011 11:51 am
- Forum: Text Formatting
- Topic: Bold Enumeration Counter
- Replies: 4
- Views: 13784
Bold Enumeration Counter
If I understand correctly, yes you can add the same to your other enumerations. However, enumitem also allows you to set the style of all enumerations globally:
\setlist[enumerate,1]{label=\textbf{\arabic*}.}
Add this to your preamble, after loading enumitem. Then you can remove all the optional ...
\setlist[enumerate,1]{label=\textbf{\arabic*}.}
Add this to your preamble, after loading enumitem. Then you can remove all the optional ...
- Sat Nov 19, 2011 4:21 am
- Forum: Text Formatting
- Topic: Bold Enumeration Counter
- Replies: 4
- Views: 13784
Bold Enumeration Counter
Use the enumitem package instead:
\documentclass[12pt,fleqn,reqno]{article}
\usepackage{amsfonts,graphics,epsfig,cite}
\usepackage{amsmath,graphicx,amssymb,amsthm}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}[label=\textbf{\arabic*}.]
\item Is $n$ even or $1 < \gcd(a,n) < n$?
\item ...
\documentclass[12pt,fleqn,reqno]{article}
\usepackage{amsfonts,graphics,epsfig,cite}
\usepackage{amsmath,graphicx,amssymb,amsthm}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}[label=\textbf{\arabic*}.]
\item Is $n$ even or $1 < \gcd(a,n) < n$?
\item ...
- Thu Nov 10, 2011 7:19 pm
- Forum: WinShell
- Topic: Integrate Gnuplot
- Replies: 8
- Views: 35447
Re: Integrate Gnuplot
pgfplots can even use gnuplot to compute the coordinates.