Search found 4 matches

by DanielOMoneyRain
Tue Dec 30, 2014 5:26 pm
Forum: Text Formatting
Topic: `x' instead of ‘x’
Replies: 5
Views: 7301

`x' instead of ‘x’

Hey Stefan,

Thank you for your reply!

Changing the code you sent just a little worked it out!
Specificly I changed ${}^{\backprime}$ to $\grave{}$ and now it works! Thanks! :D

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{textcomp}
\usepackage[T1]{fontenc ...
by DanielOMoneyRain
Mon Dec 29, 2014 11:09 pm
Forum: Text Formatting
Topic: `x' instead of ‘x’
Replies: 5
Views: 7301

Re: `x' instead of ‘x’

The x's are exactly equivalent. But what is not equivalent are the symbols ` ' and ‘ ’
Latex will turn this sign: `
Into this:‘
and this sign:'
into this:’

The reason why I need it not to tranform the signs is because the statistical software I'm writing a note on can tell the difference.

I hope ...
by DanielOMoneyRain
Mon Dec 29, 2014 4:55 pm
Forum: Text Formatting
Topic: `x' instead of ‘x’
Replies: 5
Views: 7301

`x' instead of ‘x’

Here is a MWE

Code: Select all

\documentclass[paper=a4, fontsize=12pt]{scrartcl}
\usepackage[danish]{babel} 
\usepackage{amsmath,amsfonts,amsthm,mathrsfs} 
\newenvironment{stata}{\fontfamily{lmtt}\selectfont}{\par}

\begin{document}
`x'   \\

\begin{stata}
	`x'
\end{stata}
\end{document}
by DanielOMoneyRain
Mon Dec 29, 2014 4:49 pm
Forum: Text Formatting
Topic: `x' instead of ‘x’
Replies: 5
Views: 7301

`x' instead of ‘x’

Hi,

I have a problem when writing `x'. TeXShop will turn this into ‘x’
Any ideas how to solve this problem?

These are the packages I use:
\documentclass[paper=a4, fontsize=12pt]{scrartcl}
\usepackage[danish]{babel}
\usepackage{amsmath,amsfonts,amsthm,mathrsfs}
\usepackage{tikz,pgfplots ...