Exemplo n.º 1
0
		/// <summary>
		/// Clears the configuration settings.
		/// </summary>
		public override void Clear()
		{
			Config = new LatexDocumenterConfig();
		}
Exemplo n.º 2
0
		/// <summary>
		/// Constructs a new LaTeX documenter.
		/// </summary>
		/// <remarks>
		/// The documenter name is set to "LaTeX".
		/// </remarks>
		public LatexDocumenter()
			: base("LaTeX")
		{
			Config = new LatexDocumenterConfig();
		}
Exemplo n.º 3
0
		/// <summary>
		/// Constructs a new LaTeX documenter.
		/// </summary>
		/// <remarks>
		/// The documenter name is set to "LaTeX".
		/// </remarks>
		public LatexDocumenter( LatexDocumenterConfig config ) : base( config )
		{
		}