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