2
votes
2answers
66 views

enumitem conflict with french babel

The following crashes with the error: ! LaTeX Error: Something's wrong--perhaps a missing \item. \documentclass[]{article} \usepackage[francais]{babel} \usepackage{enumitem} \begin{document} ...
3
votes
2answers
38 views

Babel spanish option and fancyvrb incompatibility

The following MWE compiles without problems \documentclass{article} \usepackage[english]{babel} \usepackage{amsmath} \usepackage{fancyvrb} \begin{document} \SaveVerb{x>y}|x > y| ...
2
votes
1answer
63 views

soul package does not work with user-defined language shorthands

Using \caps from the soul package with user-defined language shorthands generates an error. However, it works fine with language shorthands defined by babel itself, e.g. by using ...
0
votes
1answer
218 views

Clash between TIKZ and French Babel [duplicate]

Possible Duplicate: tikz declare function and babel french option I'm working on a document requiring both tikz and [french]Babel. There is a clash between [french]Babel, and TIKZ: No ...
5
votes
1answer
90 views

Conflicts with Datatool and babel (french)

I am having trouble compiling a latex document using an external CSV file with datatool and using the french language from the babel package. The content of my latex file is: ...
5
votes
1answer
133 views

Error caused by interaction between minted, footnotes, babel and "(double quote)

I'd like to put some inline code using minted but when I try to typesent the empty string "" I get an "undefined control sequence" error. Sample code: \documentclass[a4paper,10pt]{article} ...
1
vote
1answer
186 views

Incompatibility between \nobreakdash and babel

I use the \nobreakdash command to disallow a linebreak after the dash in short expressions like -s, -ar etc. I use ({\nobreakdash}-s, {\nobreakdash}-ar) but it seems not work as can be seen on the ...
1
vote
1answer
102 views

Babel + Hebrew + aeguill incompatiblility

(Question split off from here.) If you try to use the aeguill package (which adds some guillemets to the ae fonts) with Babel and Hebrew: \documentclass{standalone} ...
7
votes
2answers
147 views

Conflict between nag and babel spanish

The following code gives me loads of Font csname csname T1/cmtt/m/sc/10endcsname not found errors. \RequirePackage[l2tabu,orthodox]{nag} \documentclass{article} \usepackage[utf8]{inputenc} ...
7
votes
1answer
204 views

Babel + Hebrew + lipsum incompatibility

With: \documentclass{article} \usepackage[hebrew,english]{babel} \usepackage{lipsum} \begin{document} \lipsum \end{document} You get: ! Missing \endcsname inserted. <to be read again> ...
7
votes
2answers
142 views

enumitem conflicts with galician

The following code: \documentclass{report} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage[galician]{babel} \usepackage[shortlabels]{enumitem} \begin{document} \chapter{Preguntas ...
5
votes
1answer
218 views

AUCTeX's csquotes integration does not work together with babel

I use the AUCTeX feature to expand " into csquotes macros. To enable it I have put the following in my .emacs: ;; " expands into csquotes macros (setq LaTeX-csquotes-close-quote "}" ...
2
votes
2answers
369 views

algorithmicx conflicts with babel with Hebrew

When trying to create any document with box algorithmicx and algorithmicx: \documentclass{article} \usepackage[hebrew,english]{babel} \usepackage{algorithmicx} \begin{document} Hello, world. ...
10
votes
1answer
362 views

“ with tipa and babel's ngerman / \shorthandoff{”} in a macro

TL;DR see below at "core problem" Problem I'm trying to solve a conflict between the packages tipa (Fonts and macros for IPA phonetics characters) and babel with the ngerman option. The problem ...
3
votes
1answer
203 views

Loading babel with the 'hungarian' (magyar) option breaks 'pygments' code highlighting

Given the following TeX file everything works as expected: the (Hungarian) text Árvíztűrő Tükörfúrógép typesetted as expected and the code snippet also formatted brilliantly. \documentclass{article} ...
22
votes
1answer
2k views

Test if a package (or package option) is loaded

[french]{babel} (aka frenchb) is incompatible with some other packages, such as tikz, since it tries to insert \thinspace before semi-colons. In order to make these two play nice, you have to call ...