Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# -*- coding: utf-8 -*- 

2""" 

3@file 

4@brief Custom functions to post process latex output before compiling it. 

5""" 

6 

7 

8def find_custom_latex_processing(name): 

9 """ 

10 Determines the corresponding post processing function 

11 associated to name. 

12 """ 

13 raise ValueError( # pragma: no cover 

14 "Unable to find any post processing function associated " 

15 "to '{0}'".format(name))