Éditions de la Table ronde

Éditions de la Table ronde is a French publishing house founded in 1944 by Roland Laudenbach. Since 1996 it has been an imprint of éditions Gallimard.

History

The company was founded by Roland Laudenbach in 1944 and named by Jean Cocteau. Its first published title was Antigone by Jean Anouilh. After World War II it came to publish several authors who had been blacklisted by the Conseil national des écrivains due to accusations of collaboration or pacifism, such as Henry de Montherlant, Jean Giono and Paul Morand. Its right-wing and anti-Gaullist reputation intensified during the Algerian War. It also published authors such as Claude Mauriac and Henri Troyat, and became associated with the movement les Hussards, and its leading members Antoine Blondin, Michel Déon, Jacques Laurent and Roger Nimier. Other published authors included Marcel Aymé, Henry Muller, Bernard Frank, Roger Stéphane, Jean Freustié, Daniel Boulanger and Alain Bosquet.[1]

A second generation of Table ronde authors included Alphonse Boudard, Gabriel Matzneff, Frédéric Musso and Éric Neuhoff. Laudenbach retired in 1990 and was replaced by Denis Tillinac. He published authors such as Jean-Paul Kauffmann, Frédéric H. Fajardie, Yves Charnet, Jean-Claude Pirotte, Frédérick Tristan, Xavier Patier, William Cliff and Michel Monnereau. Tillinac was succeeded by Alice Déon in 2007.[2] Éditions Gallimard acquired the company in 1958 and it has been an imprint of Gallimard since 1996.

gollark: Should I make the random code thinger random instead?
gollark: My code is `O(lots)`.
gollark: Even gets around the evil Global Interpreter Lock for maximum performance.
gollark: Enterprise-level, fully deterministic execution of random code. Totally secure!
gollark: ```pythonimport itertoolsimport multiprocessing as mchars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sif __name__ == "__main__": def start(func): proc = m.Process(target=func) proc.start() io_queue = m.Queue(maxsize=128) def printer(): while True: print(io_queue.get()) code_queue = m.Queue(maxsize=128) def generator(): for x in generate(): code_queue.put(x) def executor(): while True: code = code_queue.get() result = None try: result = repr(exec(code)) except Exception as e: result = repr(e) if result != None: io_queue.put(code + ": " + result) start(generator) for _ in range(4): start(executor) printer()```

References

  1. Gros, Guillaume (2012). "Roland Laudenbach et La Table Ronde, Jacques Perret et Aspects de la France". In Leymarie, Michel; Dard, Olivier (eds.). Maurrassisme et littérature (in French). Villeneuve-d'Ascq: Presses universitaires du Septentrion. p. 226–229. ISBN 978-2-7574-0401-0.
  2. Favier, Annie (2007-12-13). "Alice Déon remplace Denis Tillinac à La Table Ronde". Livres Hebdo (in French). Retrieved 2015-04-06.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.