New answers tagged labels
2
use
[...]
\begin{pspicture}(21,240)
\psaxes[
xAxis=false,%%%%%%%%%
Dy=2,%
dy=20,%
ticks=y,%
ylabelFactor={\cdot 10^4}]{->}(0,0)(16,230)
\psaxes[
mathLabel=false,
yAxis=false,%%%%%%%%%%%%
xLabels={%
,Nord,%
,Midt-Vest,%
,{\O}stjylland,%
,Syd,%
,Fyn,%
,{\O}st,%
,Bornholm,%
,Lorry,%
},%
...
6
I wouldn't use a contour in this case, but a normal plot, with the arrows placed using a decoration:
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\usetikzlibrary{decorations.markings}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
title={Phase portrait of Van der Pol oscillator.},
domain=-2:2,
xmin=-2,
xmax=2,
...
3
Looking at the source exam class would need quite a few changes to use repeated numbers as it uses the number counter internally in several places. However to help anyone else answering and to address other problems in the posted document here is a start at a solution.
You shouldn't use star form for numbered sections, and \numberwith should only be used ...
1
Code (Update)
\documentclass[10pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{pgfgantt}
\makeatletter
\ganttset{
prog default/.initial=100,
prog/.code={
\pgfutil@in@{:}{#1}
\ifpgfutil@in@
\pgfqkeysalso{/pgfgantt}{@prog={#1}}
\else
...
3
Here is one solution. No need to use \notag on each line that should remain unnumbered if you use this trick; only insert \numberthis at the end of the equation.
\documentclass{article}
\usepackage{amsmath}
\newcommand\numberthis{\addtocounter{equation}{1}\tag{\theequation}}
\usepackage{lipsum}
\begin{document}
\lipsum[1-4]
filler text\\
filler ...
6
One way would be to use the mdframed package:
Notes:
If you are just using a printed form you can use the MyForm macro. But, if you desire the form to be electronically fill-able you can use the \MyFormX macro (as per Marco Daniel's suggestion).
Code:
\documentclass{article}
\usepackage{mdframed}
\usepackage{xcolor}
%% Use this if you want it ...
4
longtable allows the specification of \endfirsthead and \enhead. The usage of these commands you shown in the documentation of pgfplotstable at page 21 as well.
Here the modification:
\makeatletter
\pgfplotstabletypeset[col sep=space,header=true,
columns={Idx,Nam,Dim,Grd}, % display specified columns
columns/Idx/.style={fixed,fixed ...
1
I don't know much about envlab but I'm guessing it first gathers the information from \mlabel and then processes all the labels at the end of the document, but it's gathering the label information without expansion, which means that all the labels are using commands like \name, but by the time the labels are typeset \name etc has the value of the last row of ...
6
For these kinds of drawings I'd first inspect which is the most convenient way to locate nodes: you positioned manually the nodes, but in this case I think the matrix library and consequently to position the nodes in a matrix fashion is really convenient.
But let's start first with the styles:
\tikzset{multiplexor/.style={rectangle, draw, align=center, ...
7
Only a partial answer: getting the "1/3" and "2/3" anchors is tricky as things stand, but, if you don't mind hacking (and I would like to encourage it), it is fairly straightforward to add anchors to the rectangle shape.
Hopefully it is obvious what must be changed to rename the anchors to something more catchy.
\documentclass{standalone}
...
Top 50 recent answers are included